.mam-shop-hero-container {
    width: 100%;
    font-family: 'Poppins', sans-serif;
}

.mam-hero-banner {
    display: block;
    position: relative;
    width: 100%;
    min-height: 450px;
    background-size: cover;
    background-position: center;
    text-decoration: none;
    overflow: hidden;
    border-radius: 12px;
}

.mam-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Default gradient, overridden by Elementor controls */
    background: linear-gradient(90deg, rgba(26, 95, 74, 0.9) 0%, rgba(26, 95, 74, 0.4) 50%, rgba(0,0,0,0) 100%);
    z-index: 1;
}

.mam-hero-content {
    position: relative;
    z-index: 2;
    padding: 60px 40px;
    max-width: 600px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    min-height: 450px;
}

.mam-hero-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 15px 0;
    color: #ffffff;
}

.mam-hero-subtitle {
    font-size: 18px;
    font-weight: 400;
    margin: 0 0 30px 0;
    opacity: 0.9;
}

.mam-btn {
    display: inline-block;
    background-color: #ffffff;
    /* Default color, overridden by Elementor controls */
    color: #1a5f4a;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.mam-hero-banner:hover .mam-btn {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    background-color: #f8f9fa;
}

/* Category Strip Pills */
.mam-category-strip {
    margin-top: 20px;
    padding: 10px 0;
    overflow: hidden;
}

.mam-category-scroll {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 5px 2px;
    scrollbar-width: none; /* Firefox */
}

.mam-category-scroll::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.mam-cat-pill {
    white-space: nowrap;
    padding: 10px 24px;
    background: #ffffff;
    color: #1C244B;
    text-decoration: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.03);
}

.mam-cat-pill:hover {
    background: #1a5f4a;
    color: #ffffff;
    border-color: #1a5f4a;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.08);
}

/* Responsive */
@media (max-width: 768px) {
    .mam-hero-banner {
        min-height: 350px;
        border-radius: 0;
    }
    .mam-hero-content {
        padding: 40px 20px;
        min-height: 350px;
        background: rgba(26, 95, 74, 0.7); /* Stronger overlay for mobile readability */
    }
    .mam-hero-title {
        font-size: 28px;
    }
    .mam-hero-subtitle {
        font-size: 16px;
    }
    .mam-category-strip {
        padding: 10px 15px;
    }
    
    /* Allow wrapping on mobile for chips */
    .mam-category-scroll {
        flex-wrap: wrap;
        overflow-x: visible;
        gap: 8px;
    }
    
    .mam-cat-pill {
        padding: 8px 16px;
        font-size: 13px;
    }
}
