
/* ========================================
   CRITICAL: HTML & BODY BASE SETUP
   Must be at the very top
   ======================================== */
* {
    box-sizing: border-box;
}

html {
    width: 100%;
    scroll-behavior: smooth;
    /* Remove overflow-x: hidden */
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    width: 100%;
    /* Remove overflow-x: hidden */
}
/* ========================================
   STICKY HEADER
   ======================================== */
.site-header {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    z-index: 9999;  /* ✅ Higher z-index */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 100%;
    padding: 10px 20px;
    transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}



/* ========================================
   HEADER COMPONENTS
   ======================================== */
.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 40px;
    padding: 12px 16px;
    box-sizing: border-box;
}

/* Logo */
.logo-link {
    flex: 1;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-img {
    height: 32px;
    width: auto;
    display: block;
}

/* Hamburger Menu (Mobile Only) */
.menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    align-items: flex-start;
    flex-shrink: 0;
    position: relative;
    z-index: 2001;
}

.hamburger-line {
    height: 3px;
    width: 26px;
    background-color: #000;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    display: block;
    border-radius: 2px;
}

/* Hamburger to Cross Animation */
.menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Cart Icon & Badge */
.header-icons {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

/* Search Bar (Common Styles) */
.search-bar {
    display: flex;
    align-items: center;
    background: #F8F8F8;
    border: 1px solid #E0E0E0;
    border-radius: 24px;
    padding: 10px 16px;
    width: 100%;
}

.search-icon {
    color: #F2173A;
    margin-right: 10px;
    font-size: 1rem;
    flex-shrink: 0;
}

.search-bar input {
    border: none;
    background: transparent;
    outline: none;
    width: 100%;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: #000;
    font-weight: 400;
}

.search-bar input::placeholder {
    color: #999;
    font-weight: 400;
}

/* Mobile Search Below Header */
.search-bar-mobile {
    padding: 0;
    margin-top: 12px;
}

/* Desktop Search (Left of Cart) */
.search-bar-desktop {
    display: none;
    width: 320px;
}

/* Desktop Navigation Menu */
.main-nav {
    display: none;
}

.main-nav ul {
    list-style: none;
    gap: 24px;
    margin: 0;
    padding: 0;
    display: flex;
}

.nav-link {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: #000;
    text-decoration: none;
    transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #F2173A;
}

/* ========================================
   MOBILE MENU DRAWER
   ======================================== */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 85%;
    max-width: 320px;
    height: 100%;
    background: #FFFFFF;
    z-index: 2000;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.15);
}

.mobile-menu.active {
    transform: translateX(0);
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.menu-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}

.menu-logo {
    height: 28px;
    width: auto;
}

.close-btn {
    background: none;
    border: none;
    width: 30px;
    height: 30px;
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
    padding: 0;
}

.close-line {
    position: absolute;
    height: 2px;
    width: 20px;
    background: #000;
    left: 5px;
    transition: all 0.3s ease;
}

.close-line:nth-child(1) {
    transform: rotate(45deg);
    top: 14px;
}

.close-line:nth-child(2) {
    transform: rotate(-45deg);
    top: 14px;
}

.close-btn:hover .close-line {
    background: #F2173A;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
}

.mobile-nav-link {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 1.1rem;
    color: #000;
    text-decoration: none;
    padding: 16px 0;
    border-bottom: 1px solid #f0f0f0;
    display: block;
    transition: color 0.2s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: #F2173A;
}

/* ========================================
   HERO SLIDER
   ======================================== */
.hero-slider {
    position: relative;
    width: 100%;
    margin: 8px 0;
    padding: 0 16px;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 480px;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* ensures image fully covers */
    object-position: center; /* perfectly centered */
    display: block;
}

/* Dots */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 10px 0;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #F2173A;
    width: 24px;
    border-radius: 4px;
}

/* ========================================
   RESPONSIVE HEIGHT FIX
   ======================================== */
@media (max-width: 1024px) {
    .slider-container {
        height: 420px;
    }
}

@media (max-width: 768px) {
    .slider-container {
        height: 60vh; /* responsive height — 60% of screen */
    }
}

@media (max-width: 576px) {
    .slider-container {
        height: 55vh; /* slightly smaller for compact screens */
    }
}

@media (max-width: 400px) {
    .slider-container {
        height: 50vh; /* smallest devices */
    }
}


/* ========================================
   CATEGORY CAROUSEL
   ======================================== */
.category-carousel {
    padding: 20px 16px 12px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.category-carousel::-webkit-scrollbar {
    display: none;
}

.carousel-container {
    display: flex;
    gap: 24px;
    padding-bottom: 12px;
}

.category-item-link {
    text-decoration: none !important;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 72px;
}

/* Inner structure */
.category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Icon circle */
.category-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #FFF;
}

.category-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Category name */
.category-item span {
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    color: #000;
    font-weight: 500;
    margin-top: 8px;
}

/* Hover state (optional subtle effect) */
.category-item-link:hover .category-icon {
    transform: scale(1.05);
    transition: transform 0.2s ease;
}



/* ========================================
   SHOP BY COLLECTION SECTION
   ======================================== */
.shop-by-collection {
    margin: 50px 0;
    padding: 0 20px;
}

.shop-by-collection .section-header {
    text-align: center;
    margin-bottom: 35px;
}

.shop-by-collection .section-header h2 {
    font-size: 2rem;
    font-weight: 400;
    color: #000;
    position: relative;
    display: inline-block;
    padding: 0 20px;
}

/* Collections Grid */
.collections-grid {
    display: flex;
    overflow-x: auto;
    padding: 10px 100px 25px 100px;
    gap: 25px;
    scrollbar-width: thin;
    scrollbar-color: #ccc #f1f1f1;
    scroll-snap-type: x mandatory;
}

.collections-grid::-webkit-scrollbar {
    height: 8px;
}

.collections-grid::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.collections-grid::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}

.collections-grid::-webkit-scrollbar-thumb:hover {
    background: #aaa;
}

.collection-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.collection-card {
    flex: 0 0 auto;
    width: 280px;
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    cursor: pointer;
    scroll-snap-align: start;
}

.collection-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.collection-image-wrapper {
    width: 100%;
    height: 380px;
    background: #F8F8F8;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
}

.collection-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.collection-card:hover .collection-image-wrapper img {
    transform: scale(1.05);
}

.collection-name {
    display: block;
    padding: 15px 10px;
    font-size: 1rem;
    font-weight: 500;
    color: #000;
    line-height: 1.4;
}

/* ========================================
   RESPONSIVE - TABLET (768px - 1024px)
   ======================================== */
@media (min-width: 768px) and (max-width: 1024px) {
    .collection-card {
        width: 250px;
    }
    .collection-image-wrapper {
        height: 340px;
    }
}

/* ========================================
   RESPONSIVE - DESKTOP (768px and up)
   ======================================== */
@media (min-width: 768px) {
    .collections-grid {
        padding: 10px 100px 25px 180px; /* Moved cards to the right */
    }

    .collection-card {
        width: 300px; /* Slightly larger cards */
        border-radius: 30px;
    }

    .collection-image-wrapper {
        height: 400px;
        border-top-left-radius: 30px;
        border-top-right-radius: 30px;
    }

    .header-top {
        padding: 12px 24px;
        gap: 24px;
    }

    .menu-btn {
        display: none;
    }

    .logo-link {
        text-align: left;
        flex: unset;
        justify-content: flex-start;
    }

    .logo-img {
        height: 36px;
    }

     .main-nav {
        display: flex;           /* ← Changed from 'block' */
        justify-content: center; /* ← ADD THIS LINE */
        flex: 1;
    }

    .main-nav ul {
        display: flex;
    }

    .search-bar-mobile {
        display: none;
    }

    .search-bar-desktop {
        display: block;
        width: 320px;
    }

    .hero-slider {
        padding: 0 24px;
        margin: 12px 0;
    }

    .slider-container {
        height: 550px;
        border-radius: 20px;
    }

    .slider-dots {
        padding: 14px 0;
    }

    .category-carousel {
        padding: 24px 24px 16px;
    }

    .carousel-container {
        gap: 32px;
        justify-content: center;
    }

    .category-item {
        min-width: 80px;
    }

    .category-icon {
        width: 72px;
        height: 72px;
    }

    .category-item span {
        font-size: 0.85rem;
    }
}

/* ========================================
   RESPONSIVE - LARGE DESKTOP (992px+)
   ======================================== */
@media screen and (min-width: 992px) {
    .collections-grid {
        padding: 10px 150px 25px 200px; /* Moved cards further to the right on large desktops */
    }

    .collection-card {
        width: 320px;
    }

    .collection-image-wrapper {
        height: 420px;
    }

    .carousel-container .category-icon {
        width: 100px !important;
        height: 100px !important;
    }

    .carousel-container .category-item span {
        font-size: 0.85rem;
    }

    .carousel-container {
        gap: 28px;
    }
}

@media (min-width: 1024px) {
    .header-top {
        padding: 12px 48px;
    }

    .slider-container {
        height: 650px;
        border-radius: 24px;
    }

    .hero-slider {
        padding: 0 48px;
        margin: 12px 0;
    }

    .category-carousel {
        padding: 28px 48px 20px;
    }
}

/* ========================================
   RESPONSIVE - MOBILE (768px and below)
   ======================================== */
@media (max-width: 768px) {
    .shop-by-collection {
        margin: 30px 0;
        padding: 0 15px;
    }

    .shop-by-collection .section-header {
        padding-top: 5px; /* reduced top padding */
    }

    .shop-by-collection .section-header h2 {
        font-size: 1.8rem;
        font-weight: 400;
    }

    .collections-grid {
        gap: 20px;
        padding: 10px 35px 25px 65px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .collections-grid::-webkit-scrollbar {
        display: none;
    }

    .collection-card {
        width: 175px;
        border-radius: 30px; /* increased corner radius */
    }

    .collection-image-wrapper {
        height: 260px;
        border-top-left-radius: 30px;
        border-top-right-radius: 30px;
    }
}

/* ========================================
   RESPONSIVE - SMALL MOBILE (max-width: 480px)
   ======================================== */
@media (max-width: 480px) {
    .shop-by-collection .section-header {
        padding-top: 5px;
    }

    .shop-by-collection .section-header h2 {
        font-size: 1.6rem;
        font-weight: 400;
    }

    .collections-grid {
        padding: 10px 30px 25px 70px;
    }

    .collection-card {
        width: 165px;
        border-radius: 32px; /* even smoother corners */
    }

    .collection-image-wrapper {
        height: 245px;
        border-top-left-radius: 32px;
        border-top-right-radius: 32px;
    }
}

        /* Hero Slider Responsive Images */
        .slide img {
            width: 100%;
            height: auto;
            display: block;
        }

        .slide .desktop-image {
            display: block;
        }

        .slide .mobile-image {
            display: none;
        }

        @media (max-width: 768px) {
            .slide .desktop-image {
                display: none;
            }
            .slide .mobile-image {
                display: block;
            }
        }
        
/* ===================================
   TESTIMONIALS SECTION STYLES
   Designed for Kaanipa Jewels
   Fixed Card Size + Responsive Layout
   Primary Color: #F2173A (Red)
   Background: #F7F8FA
   =================================== */

/* Main Section Container */
.testimonials-section {
    padding: 80px 20px;
    background: #F7F8FA; /* updated background */
    position: relative;
    overflow: hidden;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Section Header */
.section-header-center {
    text-align: center;
    margin-bottom: 60px;
}

.section-header-center h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 12px;
    font-family: 'Poppins', sans-serif;
}

.section-header-center p {
    font-size: 1.1rem;
    color: #6B7280;
    font-family: 'Poppins', sans-serif;
}

/* Carousel Wrapper */
.testimonials-carousel-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto 40px;
    height: 420px; /* fixed card height */
}

.testimonials-carousel {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

/* Individual Slide */
.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    height: 100%;
}

.testimonial-slide.active {
    position: relative;
    opacity: 1;
    transform: scale(1);
    pointer-events: all;
    z-index: 2;
}

/* Testimonial Card (Fixed Size) */
.testimonial-card-front {
    background: #FFFFFF;
    border-radius: 24px;
    padding: 50px 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #F3F4F6;
    transition: all 0.3s ease;
    width: 100%;
    height: 100%; /* fixed card height */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-card-front:hover {
    box-shadow: 0 20px 60px rgba(242, 23, 58, 0.12);
}

/* Quote Icon */
.quote-icon {
    position: absolute;
    top: -20px;
    left: 40px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #F2173A 0%, #FF4D6D 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    box-shadow: 0 8px 20px rgba(242, 23, 58, 0.3);
}

/* Rating */
.testimonial-rating {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-bottom: 24px;
}

.testimonial-rating .fa-star {
    font-size: 20px;
}

.testimonial-rating .fa-star.filled {
    color: #FFC107;
}

.testimonial-rating .fa-star.empty {
    color: #E5E7EB;
}

/* Review Text */
.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4B5563;
    text-align: center;
    margin-bottom: 32px;
    font-family: 'Poppins', sans-serif;
    font-style: italic;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Author Section */
.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.author-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #F2173A;
}

.author-info {
    text-align: left;
}

.author-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1A1D1F;
    margin-bottom: 4px;
    font-family: 'Poppins', sans-serif;
}

.author-location {
    font-size: 0.9rem;
    color: #6B7280;
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Poppins', sans-serif;
}

.author-location i {
    color: #F2173A;
    font-size: 0.85rem;
}

/* Navigation Arrows */
.testimonial-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: #FFFFFF;
    border: 2px solid #E5E7EB;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    color: #6B7280;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.testimonial-nav:hover {
    background: #F2173A;
    border-color: #F2173A;
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.testimonial-prev {
    left: -70px;
}

.testimonial-next {
    right: -70px;
}

/* Dots */
.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #E5E7EB;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.testimonial-dot:hover {
    background: #F2173A;
    transform: scale(1.2);
}

.testimonial-dot.active {
    background: #F2173A;
    width: 32px;
    border-radius: 6px;
}

/* ===================================
   RESPONSIVE STYLES
   =================================== */

@media (max-width: 1024px) {
    .testimonial-prev { left: 10px; }
    .testimonial-next { right: 10px; }
}

@media (max-width: 768px) {
    .testimonials-section { padding: 60px 16px; }

    .section-header-center h2 { font-size: 1.8rem; }
    .section-header-center p { font-size: 0.95rem; }

    /* keep card fixed */
    .testimonials-carousel-wrapper { height: 420px; }

    .testimonial-card-front { padding: 40px 24px; }

    .testimonial-text { font-size: 1rem; }
    .author-photo { width: 50px; height: 50px; }
}

@media (max-width: 480px) {
    .testimonials-section { padding: 50px 12px; }

    .section-header-center h2 { font-size: 1.5rem; }
    .section-header-center p { font-size: 0.9rem; }

    /* keep fixed size */
    .testimonials-carousel-wrapper { height: 420px; }

    .testimonial-card-front { padding: 35px 20px; }
    .testimonial-text { font-size: 0.95rem; }

    .testimonial-author { flex-direction: column; text-align: center; }
    .author-info { text-align: center; }
    .author-location { justify-content: center; }

    .testimonial-prev, .testimonial-next { display: none; }
}

      
/* --- Follow Our Journey Section --- */
.follow-our-journey {
    background: #F7F8FA;
    padding: 60px 20px;
    text-align: center;
    margin: 40px 0;
}

/* Section Header */
.follow-our-journey .section-header {
    margin-bottom: 30px;
}

.follow-our-journey .section-header h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #1A1D1F;
    margin-bottom: 10px;
}

.follow-our-journey .section-header p {
    font-size: 1rem;
    color: #6B7280;
    margin: 0;
}

/* --- Image Grid --- */
.follow-our-journey .image-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto 30px;
    flex-wrap: nowrap;
    overflow: visible; /* fixed: prevents image cropping */
    padding: 10px 30px; /* added side padding to avoid edge cut */
    box-sizing: border-box;
}

/* Image Items */
.follow-our-journey .image-item {
    width: 230px;
    height: 230px;
    border-radius: 30%;
    overflow: hidden;
    flex-shrink: 0;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.follow-our-journey .image-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

.follow-our-journey .image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- Follow Button --- */
.follow-our-journey .follow-button {
    display: inline-block;
    padding: 14px 30px;
    background: #F2173A;
    color: #fff;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    border-radius: 30px;
    box-shadow: 0 4px 12px rgba(242, 23, 58, 0.3);
    transition: all 0.3s ease;
}

.follow-our-journey .follow-button:hover {
    background: #D11535;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(242, 23, 58, 0.4);
}

/* --- Mobile View --- */
@media (max-width: 768px) {
    .follow-our-journey .image-grid {
        overflow-x: auto;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        gap: 14px;
        padding: 10px 15px;
        justify-content: flex-start;
    }

    .follow-our-journey .image-grid::-webkit-scrollbar {
        display: none;
    }

    .follow-our-journey .image-item {
        width: 150px;
        height: 150px;
    }

    .follow-our-journey .section-header h2 {
        font-size: 1.5rem;
    }

    .follow-our-journey .section-header p {
        font-size: 0.9rem;
    }

    .follow-our-journey .follow-button {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
}

/* --- Small Mobile --- */
@media (max-width: 480px) {
    .follow-our-journey {
        padding: 40px 15px;
    }

    .follow-our-journey .image-grid {
        gap: 12px;
        padding: 10px 18px;
    }

    .follow-our-journey .image-item {
        width: 130px;
        height: 130px;
    }

    .follow-our-journey .section-header h2 {
        font-size: 1.4rem;
    }

    .follow-our-journey .follow-button {
        padding: 10px 22px;
        font-size: 0.85rem;
    }
}


/* ===================================
   FEATURED COLLECTION SECTION
   =================================== */

.featured-collection-section {
    padding: 15px 20px 60px;
    background: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.featured-collection-container {
    max-width: 1320px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.featured-collection-header {
    text-align: center;
    margin-top: 0;
    padding-top: 5px;
}

.featured-collection-title {
    font-size: 2.4rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.featured-collection-description {
    font-size: 1.05rem;
    color: #6B7280;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 22px;
    line-height: 1.6;
}

/* Image Container (Desktop) */
.featured-collection-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    height: 580px;
    width: 100%;
    max-width: 1260px;
    margin: 0 auto;
}

.featured-collection-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
    border-radius: inherit;
}

.featured-collection-image:hover {
    transform: scale(1.02);
}

/* Desktop vs Mobile Images */
.featured-collection-image-container .desktop-image {
    display: block;
}
.featured-collection-image-container .mobile-image {
    display: none;
}

/* =========================
   Tablet & Mobile
   ========================= */
@media (max-width: 768px) {
    .featured-collection-section {
        padding: 20px 24px 50px; /* equal padding on sides */
    }

    .featured-collection-container {
        gap: 15px;
    }

    .featured-collection-title {
        font-size: 2rem;
        margin-top: 5px;
    }

    .featured-collection-description {
        font-size: 1rem;
    }

    .featured-collection-image-container {
        height: 500px;
        border-radius: 44px;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        padding: 0; /* no inner white space */
    }

    .featured-collection-image-container .desktop-image {
        display: none;
    }

    .featured-collection-image-container .mobile-image {
        display: block;
    }

    .featured-collection-image {
        object-fit: cover;
        border-radius: inherit;
    }
}

/* =========================
   Small Mobile
   ========================= */
@media (max-width: 480px) {
    .featured-collection-section {
        padding: 16px 20px 40px; /* equal side spacing */
    }

    .featured-collection-title {
        font-size: 1.75rem;
        margin-top: 8px;
    }

    .featured-collection-description {
        font-size: 0.95rem;
    }

    .featured-collection-image-container {
        height: 460px;
        border-radius: 50px;
        margin: 0 auto;
        width: 100%;
    }
}

/* =========================
   Extra Small Devices
   ========================= */
@media (max-width: 360px) {
    .featured-collection-title {
        font-size: 1.55rem;
        margin-top: 10px;
    }

    .featured-collection-image-container {
        height: 430px;
        border-radius: 56px;
        margin: 0 auto;
    }
}


/* ===================================
   PREMIUM CUSTOMIZATION CARD SECTION
   Optimized for Desktop & Mobile
   Font: Poppins
   Primary Color: #F2173A (Red)
   WhatsApp Color: #25D366 (Green)
   =================================== */

.premium-customization-section {
    padding: 60px 20px;
    background: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.premium-card-container {
    max-width: 1200px;
    margin: 0 auto;
}

.premium-card {
    background: linear-gradient(135deg, #FFFFFF 0%, #FFFBFC 100%);
    border-radius: 45px;
    padding: 40px 60px 60px 60px;
    box-shadow: 0 20px 60px rgba(242, 23, 58, 0.12);
    border: 2px solid #FFE5EA;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.premium-card:hover {
    box-shadow: 0 30px 80px rgba(242, 23, 58, 0.18);
    transform: translateY(-8px);
    border-color: #FFD4DD;
}

/* Pill Badge */
.premium-pill-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(242, 23, 58, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1.5px solid rgba(242, 23, 58, 0.3);
    color: #F2173A;
    padding: 8px 24px;
    border-radius: 100px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(242, 23, 58, 0.2);
    animation: pulse-glow 2.5s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(242, 23, 58, 0.2);
        border-color: rgba(242, 23, 58, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 25px rgba(242, 23, 58, 0.35);
        border-color: rgba(242, 23, 58, 0.5);
    }
}

/* Card Content */
.premium-card-content {
    text-align: center;
    position: relative;
    z-index: 2;
    margin-bottom: 30px;
}

/* Premium Icon */
.premium-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #FFE5EA 0%, #FFF0F3 100%);
    border-radius: 50%;
    margin-bottom: 20px;
    box-shadow: 0 8px 25px rgba(242, 23, 58, 0.15);
    animation: rotate-icon 4s linear infinite;
}

@keyframes rotate-icon {
    0%, 100% {
        transform: rotate(0deg) scale(1);
    }
    25% {
        transform: rotate(-10deg) scale(1.05);
    }
    75% {
        transform: rotate(10deg) scale(1.05);
    }
}

.premium-gem-icon {
    font-size: 2.5rem;
    color: #F2173A;
    animation: sparkle-pulse 2s ease-in-out infinite;
}

@keyframes sparkle-pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

.premium-card-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #1A1D1F;
    margin-bottom: 16px;
    line-height: 1.2;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #1A1D1F 0%, #4B5563 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.premium-card-description {
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    font-weight: 400;
    color: #4B5563;
    line-height: 1.8;
    margin-bottom: 25px;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

/* Premium Features */
.premium-features {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.premium-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #1A1D1F;
    background: #FFFFFF;
    padding: 10px 22px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    animation: float-item 3s ease-in-out infinite;
}

.premium-feature-item:nth-child(1) {
    animation-delay: 0s;
}

.premium-feature-item:nth-child(2) {
    animation-delay: 0.5s;
}

.premium-feature-item:nth-child(3) {
    animation-delay: 1s;
}

@keyframes float-item {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

.premium-feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(242, 23, 58, 0.15);
}

.premium-feature-item i {
    color: #25D366;
    font-size: 1.15rem;
    animation: rotate-check 2s ease-in-out infinite;
}

@keyframes rotate-check {
    0%, 100% {
        transform: rotate(0deg) scale(1);
    }
    25% {
        transform: rotate(-10deg) scale(1.1);
    }
    75% {
        transform: rotate(10deg) scale(1.1);
    }
}

/* WhatsApp Button Wrapper - Centered at Bottom */
.premium-btn-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 3;
    margin-top: 15px;
}

/* WhatsApp Button - GREEN with Loop Animation */
.premium-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 40px;
    background: linear-gradient(135deg, #25D366 0%, #20BA5A 100%);
    color: #FFFFFF;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    animation: button-pulse-loop 3s ease-in-out infinite;
}

/* Continuous Loop Animation */
@keyframes button-pulse-loop {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    }
    25% {
        transform: scale(1.05);
        box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
    }
    50% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    }
    75% {
        transform: scale(1.05);
        box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
    }
}

/* Continuous Shine Effect */
.premium-whatsapp-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shine-loop 2.5s ease-in-out infinite;
}

@keyframes shine-loop {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.premium-whatsapp-btn:hover {
    background: linear-gradient(135deg, #20BA5A 0%, #1FA952 100%);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
    animation: none;
}

.premium-whatsapp-btn:active {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.premium-whatsapp-btn i {
    font-size: 1.4rem;
    color: #FFFFFF;
    animation: whatsapp-bounce-loop 2s ease-in-out infinite;
}

@keyframes whatsapp-bounce-loop {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-5px) rotate(-10deg);
    }
    75% {
        transform: translateY(-5px) rotate(10deg);
    }
}

/* Decorative Elements */
.premium-card-decoration {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(242, 23, 58, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    top: -150px;
    right: -150px;
    pointer-events: none;
    z-index: 1;
    animation: float-decoration 6s ease-in-out infinite;
}

@keyframes float-decoration {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(-20px, 20px) scale(1.1);
    }
}

.premium-card::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(37, 211, 102, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -100px;
    left: -100px;
    pointer-events: none;
    z-index: 1;
    animation: float-decoration-reverse 7s ease-in-out infinite;
}

@keyframes float-decoration-reverse {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(20px, -20px) scale(1.1);
    }
}

/* Sparkles */
.premium-sparkle {
    position: absolute;
    font-size: 1.5rem;
    animation: sparkle-float 3s ease-in-out infinite;
    pointer-events: none;
    z-index: 2;
    opacity: 0.7;
}

.sparkle-1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.sparkle-2 {
    top: 25%;
    right: 15%;
    animation-delay: 1s;
}

.sparkle-3 {
    bottom: 20%;
    left: 15%;
    animation-delay: 2s;
}

@keyframes sparkle-float {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
        opacity: 0.4;
    }
    50% {
        transform: translateY(-15px) rotate(180deg) scale(1.2);
        opacity: 0.9;
    }
}

/* Additional Animated Icons */
.premium-card::after {
    content: '💎';
    position: absolute;
    top: 10%;
    right: 8%;
    font-size: 1.8rem;
    opacity: 0.3;
    animation: diamond-spin 4s linear infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes diamond-spin {
    0%, 100% {
        transform: rotate(0deg) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: rotate(180deg) scale(1.3);
        opacity: 0.6;
    }
}

/* Heart Icons */
.premium-card-decoration::before {
    content: '❤️';
    position: absolute;
    bottom: 30%;
    right: 10%;
    font-size: 1.3rem;
    opacity: 0.4;
    animation: heart-beat 2s ease-in-out infinite;
    pointer-events: none;
}

@keyframes heart-beat {
    0%, 100% {
        transform: scale(1);
        opacity: 0.4;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.7;
    }
}

/* Star Icons */
.premium-card-decoration::after {
    content: '⭐';
    position: absolute;
    top: 40%;
    left: 5%;
    font-size: 1.4rem;
    opacity: 0.35;
    animation: star-twinkle 2.5s ease-in-out infinite;
    pointer-events: none;
}

@keyframes star-twinkle {
    0%, 100% {
        transform: rotate(0deg) scale(1);
        opacity: 0.35;
    }
    25% {
        transform: rotate(-15deg) scale(1.2);
        opacity: 0.7;
    }
    75% {
        transform: rotate(15deg) scale(1.2);
        opacity: 0.7;
    }
}

/* ===================================
   TABLET VIEW (768px - 1024px)
   =================================== */
@media (min-width: 768px) and (max-width: 1024px) {
    .premium-card {
        padding: 45px 50px 75px 50px;
    }

    .premium-card-title {
        font-size: 2.4rem;
    }

    .premium-card-description {
        font-size: 1.08rem;
    }

    .premium-whatsapp-btn {
        padding: 16px 40px;
        font-size: 1.08rem;
    }

    .premium-features {
        gap: 20px;
    }

    .premium-feature-item {
        font-size: 0.95rem;
        padding: 10px 20px;
    }
}

/* ===================================
   MOBILE VIEW (max-width: 767px)
   =================================== */
@media (max-width: 767px) {
    .premium-customization-section {
        padding: 25px 20px;
    }

    .premium-card {
        padding: 20px 24px 35px 24px;
        border-radius: 35px;
    }

    .premium-pill-badge {
        padding: 6px 20px;
        font-size: 0.68rem;
        letter-spacing: 1.8px;
        margin-bottom: 14px;
        border-radius: 100px;
        border: 1.2px solid rgba(242, 23, 58, 0.3);
    }

    .premium-icon-wrapper {
        width: 50px;
        height: 50px;
        margin-bottom: 14px;
    }

    .premium-gem-icon {
        font-size: 1.6rem;
    }

    .premium-card-title {
        font-size: 1.55rem;
        font-weight: 800;
        margin-bottom: 10px;
        letter-spacing: -0.3px;
    }

    .premium-card-description {
        font-size: 0.85rem;
        line-height: 1.6;
        margin-bottom: 16px;
    }

    .premium-card-content {
        margin-bottom: 20px;
    }

    .premium-features {
        flex-direction: column;
        gap: 8px;
        align-items: center;
        margin-top: 16px;
    }

    .premium-feature-item {
        font-size: 0.82rem;
        padding: 7px 16px;
    }

    .premium-feature-item i {
        font-size: 0.95rem;
    }

    .premium-btn-wrapper {
        margin-top: 12px;
    }

    .premium-whatsapp-btn {
        width: auto;
        padding: 12px 30px;
        font-size: 0.9rem;
        letter-spacing: 0.8px;
    }

    .premium-whatsapp-btn i {
        font-size: 1.2rem;
    }

    .premium-card-decoration {
        width: 180px;
        height: 180px;
        top: -75px;
        right: -75px;
    }

    .premium-card::before {
        width: 140px;
        height: 140px;
        bottom: -55px;
        left: -55px;
    }

    .premium-sparkle {
        font-size: 0.95rem;
    }
}

/* ===================================
   SMALL MOBILE VIEW (max-width: 480px)
   =================================== */
@media (max-width: 480px) {
    .premium-customization-section {
        padding: 20px 18px;
    }

    .premium-card {
        padding: 18px 22px 32px 22px;
        border-radius: 32px;
    }

    .premium-pill-badge {
        padding: 5px 18px;
        font-size: 0.64rem;
        letter-spacing: 1.6px;
        margin-bottom: 12px;
        border-radius: 100px;
        border: 1px solid rgba(242, 23, 58, 0.3);
    }

    .premium-icon-wrapper {
        width: 45px;
        height: 45px;
        margin-bottom: 12px;
    }

    .premium-gem-icon {
        font-size: 1.4rem;
    }

    .premium-card-title {
        font-size: 1.4rem;
        font-weight: 800;
        margin-bottom: 8px;
    }

    .premium-card-description {
        font-size: 0.8rem;
        line-height: 1.55;
        margin-bottom: 14px;
    }

    .premium-card-content {
        margin-bottom: 18px;
    }

    .premium-features {
        gap: 7px;
        margin-top: 14px;
    }

    .premium-feature-item {
        font-size: 0.76rem;
        padding: 6px 14px;
    }

    .premium-feature-item i {
        font-size: 0.9rem;
    }

    .premium-btn-wrapper {
        margin-top: 10px;
    }

    .premium-whatsapp-btn {
        width: auto;
        padding: 11px 26px;
        font-size: 0.86rem;
        letter-spacing: 0.6px;
    }

    .premium-whatsapp-btn i {
        font-size: 1.1rem;
    }

    .premium-card-decoration {
        width: 160px;
        height: 160px;
        top: -65px;
        right: -65px;
    }

    .premium-card::before {
        width: 120px;
        height: 120px;
        bottom: -50px;
        left: -50px;
    }

    .premium-sparkle {
        font-size: 0.85rem;
    }
}

/* ===================================
   EXTRA SMALL MOBILE (max-width: 360px)
   =================================== */
@media (max-width: 360px) {
    .premium-customization-section {
        padding: 18px 16px;
    }

    .premium-card {
        padding: 16px 20px 30px 20px;
        border-radius: 30px;
    }

    .premium-pill-badge {
        padding: 4px 16px;
        font-size: 0.6rem;
        letter-spacing: 1.4px;
        border-radius: 100px;
        border: 1px solid rgba(242, 23, 58, 0.3);
    }

    .premium-icon-wrapper {
        width: 42px;
        height: 42px;
        margin-bottom: 10px;
    }

    .premium-gem-icon {
        font-size: 1.3rem;
    }

    .premium-card-title {
        font-size: 1.3rem;
        margin-bottom: 7px;
    }

    .premium-card-description {
        font-size: 0.76rem;
        margin-bottom: 12px;
    }

    .premium-card-content {
        margin-bottom: 16px;
    }

    .premium-features {
        gap: 6px;
        margin-top: 12px;
    }

    .premium-whatsapp-btn {
        width: auto;
        padding: 10px 24px;
        font-size: 0.82rem;
    }

    .premium-whatsapp-btn i {
        font-size: 1.05rem;
    }

    .premium-feature-item {
        font-size: 0.72rem;
        padding: 5px 12px;
    }

    .premium-feature-item i {
        font-size: 0.85rem;
    }
}



/* ================================
   FAQ SECTION - Kaanipa Jewels
   Modern Rounded Aesthetic
   Primary Color: #F2173A
================================ */

.faq-section {
    padding: 80px 20px;
    background: #FFFFFF;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-header h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #1A1D1F;
    margin-bottom: 16px;
}

.faq-header p {
    font-size: 1.1rem;
    color: #6B7280;
    max-width: 700px;
    margin: 0 auto;
}

/* FAQ Items */
.faq-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Individual FAQ Item */
.faq-item {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 28px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.faq-item.active {
    border-color: #F2173A;
    box-shadow: 0 8px 24px rgba(242, 23, 58, 0.08);
}

/* FAQ Question */
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 28px;
    cursor: pointer;
    transition: background 0.3s ease;
    border-radius: 28px;
}

.faq-question:hover {
    background: #F9FAFB;
}

.faq-item.active .faq-question {
    background: #FFF5F7;
}

.faq-question-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1A1D1F;
    flex: 1;
    padding-right: 20px;
}

/* Icon */
.faq-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F3F4F6;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.faq-item.active .faq-icon {
    background: #F2173A;
    transform: rotate(180deg);
}

.faq-icon i {
    color: #6B7280;
    font-size: 14px;
    transition: color 0.3s ease;
}

.faq-item.active .faq-icon i {
    color: #FFFFFF;
}

/* Answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
}

.faq-answer-content {
    padding: 0 28px 28px 28px;
    color: #4B5563;
    border-top: 1px solid #F3F4F6;
    padding-top: 24px;
    line-height: 1.7;
}

/* Still Have Questions CTA */
.faq-cta {
    text-align: center;
    margin-top: 60px;
    padding: 50px 40px;
    background: linear-gradient(135deg, #FFF5F7 0%, #F0F9FF 100%);
    border-radius: 32px;
    border: 1px solid #FFE5EA;
    box-shadow: 0 8px 20px rgba(242, 23, 58, 0.05);
}

.faq-cta h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1A1D1F;
    margin-bottom: 12px;
}

.faq-cta p {
    color: #6B7280;
    margin-bottom: 24px;
    font-size: 1rem;
}

.faq-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 40px;
    background: #F2173A;
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(242, 23, 58, 0.3);
    white-space: nowrap;
}

.faq-cta-btn:hover {
    background: #D11535;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq-section {
        padding: 60px 16px;
    }

    .faq-header h1 {
        font-size: 2rem;
    }

    .faq-header p {
        font-size: 0.95rem;
    }

    .faq-item {
        border-radius: 24px;
    }

    .faq-question {
        padding: 20px 22px;
    }

    .faq-question-text {
        font-size: 1rem;
    }

    .faq-icon {
        width: 32px;
        height: 32px;
    }

    .faq-answer-content {
        padding: 0 22px 22px 22px;
        font-size: 0.95rem;
    }

    /* CTA section on mobile */
    .faq-cta {
        padding: 40px 30px;
        border-radius: 28px;
    }

    .faq-cta h3 {
        font-size: 1.5rem;
    }

    .faq-cta p {
        font-size: 0.95rem;
    }

    /* Updated Contact Us Button for Mobile */
    .faq-cta-btn {
        display: block;
        width: 100%;
        text-align: center;
        padding: 16px 28px; /* extra left-right padding */
        line-height: 1.4;
        white-space: normal; /* allows wrapping */
        border-radius: 50px;
        box-sizing: border-box;
        word-break: break-word;
    }
}

@media (max-width: 480px) {
    .faq-header h1 {
        font-size: 1.6rem;
    }

    .faq-cta {
        padding: 35px 24px;
        border-radius: 24px;
    }

    .faq-cta-btn {
        padding: 18px 32px;
        font-size: 0.95rem;
        width: 100%;
    }
}
@media (max-width: 480px) {
    .faq-header h1 {
        font-size: 1.6rem;
    }

    .faq-cta {
        padding: 35px 24px;
        border-radius: 24px;
    }

    .faq-cta-btn {
        width: 60%; /* reduced width */
        display: block;
        margin: 0 auto; /* center horizontally */
        padding: 16px 30px;
        font-size: 0.95rem;
        text-align: center;
        white-space: normal; /* allow wrapping */
        word-break: break-word;
        border-radius: 50px;
    }
}
@media (max-width: 768px) {
    .featured-collection-image-container {
        height: 500px !important;
        border-radius: 44px;
        overflow: hidden;
        position: relative;
        display: flex;
        align-items: center;  /* vertically center image */
        justify-content: center; /* horizontally center image */
        background: #fff; /* match section background */
    }

    .featured-collection-image-container .mobile-image {
        width: 100%;
        height: 100%;
        object-fit: cover !important;  /* fill container neatly */
        object-position: center top;   /* focus more toward top to avoid white gap */
        display: block;
    }
}
/* =========================
   SMART FIX: Featured Collection Desktop Image
   - centered
   - no visible white bars
   - minimal cropping
   ========================= */
@media (min-width: 769px) {
    .featured-collection-image-container {
        height: 580px !important;
        border-radius: 40px !important;
        background: #fff !important;
        overflow: hidden !important;
        position: relative !important;
    }

    .featured-collection-image-container .desktop-image {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;          /* fills container width */
        object-position: center center !important; /* perfectly centered */
        display: block !important;
        transition: transform 0.4s ease;
    }

    .featured-collection-image-container .desktop-image:hover {
        transform: scale(1.015); /* gentle zoom effect */
    }
}
/* ========================================
   PRODUCTS GRID - GUARANTEED 2 COLUMNS ON MOBILE
   ======================================== */

/* Desktop/Tablet - flexible grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

/* Tablet View (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 18px;
    }
}

/* Mobile View (max-width: 768px) - FIXED 2 COLUMNS */
@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr) !important; /* Force 2 columns */
        gap: 12px;
    }
    
    .product-card {
        border-radius: 20px;
        width: 100%; /* Fill column width */
    }
    
    .product-image {
        height: 200px;
    }
}

/* Small Mobile (max-width: 480px) - STILL 2 COLUMNS */
@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr) !important; /* Maintain 2 columns */
        gap: 10px;
    }
    
    .product-card {
        border-radius: 18px;
    }
    
    .product-image {
        height: 180px;
    }
    
    .product-info {
        padding: 10px;
    }
    
    .product-info h3 {
        font-size: 0.8rem;
        height: 2.4em;
    }
}

/* Extra Small Mobile (max-width: 360px) - STILL 2 COLUMNS */
@media (max-width: 360px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 8px;
    }
    
    .product-image {
        height: 160px;
    }
}

/* --- Optimized Social Buttons (Auto Width by Text) --- */
.follow-our-journey .social-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 28px;
}

.follow-our-journey .social-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 40px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
    letter-spacing: 0.2px;
    white-space: nowrap;
    min-width: max-content; /* ensures width follows text */
}

/* Icons */
.follow-our-journey .social-button i {
    font-size: 1.1rem;
}

/* Instagram Button */
.follow-our-journey .social-button.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: #fff;
}

.follow-our-journey .social-button.instagram:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(220, 39, 67, 0.4);
}

/* Facebook Button */
.follow-our-journey .social-button.facebook {
    background: #1877F2;
    color: #fff;
}

.follow-our-journey .social-button.facebook:hover {
    background: #145DBF;
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(24, 119, 242, 0.4);
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
    .follow-our-journey .social-buttons {
        gap: 12px;
        margin-top: 22px;
    }

    .follow-our-journey .social-button {
        padding: 10px 24px;
        font-size: 0.9rem;
        border-radius: 36px;
    }

    .follow-our-journey .social-button i {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .follow-our-journey .social-buttons {
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .follow-our-journey .social-button {
        padding: 9px 20px;
        font-size: 0.88rem;
        border-radius: 30px;
        min-width: max-content;
    }
}


/* ===== MOBILE BOTTOM NAVIGATION ===== */
.mobile-bottom-nav {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border-radius: 28px;
  padding: 8px 12px;
  box-shadow: 0 8px 20px rgba(6, 10, 15, 0.08);
  border: 1px solid rgba(6,10,15,0.06);
  z-index: 9999;
  width: calc(100% - 24px);
  max-width: 720px;
  font-family: 'Poppins', sans-serif;
}

.mobile-bottom-nav .nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #6b7280;
  text-decoration: none;
  width: 56px;
  padding: 4px 6px;
  font-size: 11px;
  transition: color 0.2s ease, transform 0.2s ease;
}

.mobile-bottom-nav .nav-item svg {
  color: inherit;
  margin-bottom: 4px;
}

.mobile-bottom-nav .nav-item:hover,
.mobile-bottom-nav .nav-item.active {
  color: #F2173A;
}

.nav-item-center {
  position: relative;
  top: -18px;
  width: auto;
  min-width: 72px;
}

.center-btn {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #F2173A;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 8px 22px rgba(242, 23, 58, 0.22);
  transition: transform 0.2s ease;
}

.center-btn:hover {
  transform: scale(1.05);
}

@media (min-width: 769px) {
  .mobile-bottom-nav { display: none; }
}

@supports(padding: env(safe-area-inset-bottom)) {
  .mobile-bottom-nav {
    padding-bottom: calc(8px + env(safe-area-inset-bottom));
  }
}
/* Wrapper for all three buttons */
.social-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;      /* Center on the row */
  margin-top: 20px;
}

/* Base style for all social buttons */
.social-button {
  display: inline-flex;         /* Shrinks/grows to fit content */
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  width: auto;                  /* Important: no fixed width */
  flex: 0 0 auto;               /* Don't stretch in flex layout */
  white-space: nowrap;          /* Keep text on a single line */
}

/* Icon spacing */
.social-button i {
  margin-right: 8px;
  font-size: 16px;
}

/* Instagram button */
.social-button.instagram {
  background: #E1306C;
  color: #FFFFFF;
}

/* Facebook button */
.social-button.facebook {
  background: #1877F2;
  color: #FFFFFF;
}

/* YouTube button – proper red + white */
.social-button.youtube {
  background-color: #FF0000;    /* Official YouTube red */
  color: #FFFFFF;
  transition: background-color 0.25s ease, transform 0.15s ease;
}

.social-button.youtube:hover {
  background-color: #CC0000;    /* Darker red on hover */
  transform: translateY(-1px);
}

/* Mobile tweaks */
@media (max-width: 600px) {
  .social-buttons {
    justify-content: center;
  }

  .social-button {
    font-size: 13px;
    padding: 9px 14px;          /* Slightly smaller on mobile */
  }
}
