/* ==========================================================================
           1. DESIGN SYSTEM & COLOR PALETTE
           ========================================================================== */
        :root {
            --bg-cream: #FAF7F2;          /* Soft Light Cream */
            --bg-card: #FFFFFF;           /* Crisp White */
            --text-main: #1A202C;         /* Deep Charcoal */
            --text-muted: #64748B;        /* Slate Grey */

            /* Accent Colors */
            --primary-teal: #0D9488;      /* Deep Modern Teal */
            --primary-teal-hover: #0F766E;
            --accent-coral: #FF6B5B;      /* Warm Energetic Coral */
            --accent-coral-soft: #FFF0ED;

            --border-color: #E8E2D9;
            --shadow-soft: 0 10px 30px -5px rgba(26, 32, 44, 0.05);
            --shadow-hover: 0 20px 40px -10px rgba(13, 148, 136, 0.15);
            --radius-lg: 20px;
            --radius-md: 12px;

            /* Consistent vertical rhythm used by every section */
            --section-pad-y: 70px;
            /* Shared content width — bumped up from 1300px for a roomier grid */
            --content-max: 1600px;
            --font-display: 'Space Grotesk', 'Plus Jakarta Sans', sans-serif;
        }

        h1, h2, h3, .section-title, .logo, .hero-tag, .footer-cta h2, .about-stats .stat h3, .rating-summary strong {
            font-family: var(--font-display);
        }

        /* Signature detail: a small teal→coral folded corner on every card,
           the one recurring device that ties categories, products, services
           and reviews back to the same system. */
        .category-card, .product-card, .service-card, .review-card {
            position: relative;
            overflow: hidden;
        }

        .category-card::before, .product-card::before, .service-card::before, .review-card::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, var(--primary-teal), var(--accent-coral));
            clip-path: polygon(100% 0, 0 0, 100% 100%);
            opacity: 0.85;
            transition: width 0.3s, height 0.3s;
        }

        .category-card:hover::before, .product-card:hover::before, .service-card:hover::before {
            width: 56px;
            height: 56px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Plus Jakarta Sans', sans-serif;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            background-color: var(--bg-cream);
            color: var(--text-main);
            line-height: 1.6;
            overflow-x: hidden;
        }

        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }

        img { max-width: 100%; display: block; }

        /* Shared section wrapper so every block lines up on the same grid */
        .wrap {
            max-width: var(--content-max);
            margin: 0 auto;
            padding-left: 5%;
            padding-right: 5%;
        }

        section {
            padding: var(--section-pad-y) 0;
        }

        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            gap: 24px;
            margin-bottom: 40px;
        }

        .section-title {
            font-size: 2.2rem;
            font-weight: 800;
            letter-spacing: -1px;
        }

        .section-header .eyebrow {
            color: var(--text-muted);
        }

        /* ==========================================================================
           2. UNIQUE DUAL-TIER HEADER
           ========================================================================== */
        header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(250, 247, 242, 0.95);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border-color);
        }

        /* Top Announcement Bar */
        .top-bar {
            background: var(--text-main);
            color: var(--bg-cream);
            padding: 8px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.85rem;
        }

        .top-bar span strong {
            color: var(--accent-coral);
        }

        /* Main Navigation Tier */
        .main-nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 16px 5%;
            max-width: var(--content-max);
            margin: 0 auto;
        }

        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
        }

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

        .nav-links {
            display: flex;
            gap: 28px;
            font-weight: 600;
            font-size: 0.95rem;
        }

        .nav-links a {
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: var(--primary-teal);
        }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .btn-icon {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            display: grid;
            place-items: center;
            cursor: pointer;
            transition: all 0.3s;
        }

        .btn-icon:hover {
            border-color: var(--primary-teal);
            color: var(--primary-teal);
        }

        .btn-primary {
            background: var(--primary-teal);
            color: white;
            padding: 10px 22px;
            border-radius: var(--radius-md);
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 4px 14px rgba(13, 148, 136, 0.3);
        }

        .btn-primary:hover {
            background: var(--primary-teal-hover);
            transform: translateY(-2px);
        }

        /* ==========================================================================
           3. HERO SECTION — full-screen background image, centered text
           ========================================================================== */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 120px 5%;
            background:
                linear-gradient(180deg, rgba(15, 23, 32, 0.55) 0%, rgba(15, 23, 32, 0.78) 100%),
                url('https://images.unsplash.com/photo-1550009158-9ebf69173e03?auto=format&fit=crop&w=1920&q=90') center/cover no-repeat fixed;
            color: white;
        }

        .hero-content {
            max-width: 760px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .hero-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, 0.12);
            border: 1px solid rgba(255, 255, 255, 0.25);
            backdrop-filter: blur(6px);
            color: white;
            padding: 6px 18px;
            border-radius: 30px;
            font-weight: 700;
            font-size: 0.85rem;
            margin-bottom: 28px;
        }

        .hero-tag i {
            color: var(--accent-coral);
        }

        .hero-title {
            font-size: 4rem;
            line-height: 1.1;
            font-weight: 800;
            letter-spacing: -1.5px;
            margin-bottom: 24px;
        }

        .hero-title span {
            color: #5EEAD4;
        }

        .hero-desc {
            font-size: 1.15rem;
            color: rgba(255, 255, 255, 0.85);
            margin: 0 auto 36px;
            max-width: 520px;
        }

        .hero-cta {
            display: flex;
            gap: 16px;
            align-items: center;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-secondary {
            background: transparent;
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.4);
            padding: 12px 24px;
            border-radius: var(--radius-md);
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }

        .btn-secondary:hover {
            border-color: white;
            background: rgba(255, 255, 255, 0.1);
        }

        .hero-badge {
            margin-top: 44px;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(6px);
            padding: 14px 22px;
            border-radius: var(--radius-md);
        }

        .hero-badge i {
            color: var(--accent-coral);
            font-size: 1.4rem;
        }

        .hero-badge div strong {
            display: block;
            font-size: 0.9rem;
        }

        .hero-badge div span {
            font-size: 0.75rem;
            color: rgba(255, 255, 255, 0.7);
        }

        /* ==========================================================================
           4. FEATURED CATEGORIES
           ========================================================================== */
        .categories-bento {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .category-feature {
            position: relative;
            height: 300px;
            border-radius: var(--radius-lg);
            overflow: hidden;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: flex-end;
            padding: 36px;
            cursor: pointer;
        }

        .category-feature::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(0deg, rgba(15, 23, 32, 0.82) 0%, rgba(15, 23, 32, 0.1) 65%);
        }

        .category-feature-content {
            position: relative;
            z-index: 2;
            color: white;
        }

        .category-feature-content span {
            display: inline-block;
            background: rgba(255, 255, 255, 0.15);
            border: 1px solid rgba(255, 255, 255, 0.3);
            backdrop-filter: blur(6px);
            padding: 5px 14px;
            border-radius: 30px;
            font-size: 0.75rem;
            font-weight: 700;
            margin-bottom: 14px;
        }

        .category-feature-content h3 {
            font-size: 1.9rem;
            font-weight: 700;
            margin-bottom: 6px;
        }

        .category-feature-content p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.95rem;
        }

        .category-feature .feature-arrow {
            position: absolute;
            top: 28px;
            right: 28px;
            z-index: 2;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.15);
            border: 1px solid rgba(255, 255, 255, 0.3);
            backdrop-filter: blur(6px);
            color: white;
            display: grid;
            place-items: center;
            transition: all 0.3s;
        }

        .category-feature:hover .feature-arrow {
            background: var(--accent-coral);
            border-color: var(--accent-coral);
            transform: rotate(45deg);
        }

        .grid-categories {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 24px;
        }

        .category-card {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            padding: 32px 24px;
            transition: all 0.3s;
            cursor: pointer;
            text-align: center;
        }

        .category-card:hover {
            transform: translateY(-8px);
            border-color: var(--primary-teal);
            box-shadow: var(--shadow-hover);
        }

        .category-icon {
            width: 60px;
            height: 60px;
            background: var(--bg-cream);
            border-radius: 50%;
            display: grid;
            place-items: center;
            margin: 0 auto 20px;
            font-size: 1.5rem;
            color: var(--primary-teal);
            transition: all 0.3s;
        }

        .category-card:hover .category-icon {
            background: var(--primary-teal);
            color: white;
        }

        .category-card p {
            font-size: 0.85rem;
            color: var(--text-muted);
            margin-top: 8px;
        }

        /* ==========================================================================
           5. PRODUCT GRID
           ========================================================================== */
        .grid-products {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .product-card {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            padding: 20px;
            position: relative;
            transition: all 0.3s;
        }

        .product-card:hover {
            box-shadow: var(--shadow-hover);
        }

        .product-tag {
            position: absolute;
            top: 30px;
            left: 30px;
            background: var(--accent-coral);
            color: white;
            font-size: 0.75rem;
            font-weight: 700;
            padding: 4px 10px;
            border-radius: 6px;
            z-index: 2;
        }

        .product-tag.new {
            background: var(--primary-teal);
        }

        .product-img-wrap {
            position: relative;
            margin-bottom: 20px;
        }

        .product-img {
            width: 100%;
            height: 220px;
            object-fit: cover;
            border-radius: var(--radius-md);
            background: #F3EEE7;
        }

        .wishlist-btn {
            position: absolute;
            top: 14px;
            right: 14px;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.92);
            display: grid;
            place-items: center;
            color: var(--text-muted);
            border: none;
            cursor: pointer;
            transition: all 0.3s;
            z-index: 2;
        }

        .wishlist-btn:hover {
            color: var(--accent-coral);
            transform: scale(1.08);
        }

        .product-stars {
            color: #F59E0B;
            font-size: 0.75rem;
            margin-bottom: 6px;
        }

        .product-stars span {
            color: var(--text-muted);
            font-weight: 600;
            margin-left: 4px;
        }

        .product-category {
            font-size: 0.8rem;
            color: var(--primary-teal);
            font-weight: 700;
        }

        .product-title {
            font-size: 1.1rem;
            font-weight: 700;
            margin: 8px 0;
        }

        .product-price {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-top: 16px;
        }

        .price {
            font-size: 1.25rem;
            font-weight: 800;
            color: var(--text-main);
        }

        /* ==========================================================================
           6. SERVICES SECTION
           ========================================================================== */
        .grid-services {
            display: grid;
            grid-template-columns: 1.15fr 1fr 1fr;
            grid-template-rows: repeat(2, auto);
            gap: 24px;
        }

        .service-card {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            padding: 30px;
            transition: all 0.3s;
        }

        .service-card:hover {
            border-color: var(--primary-teal);
            transform: translateY(-5px);
        }

        .service-icon {
            font-size: 2rem;
            color: var(--accent-coral);
            margin-bottom: 16px;
        }

        .service-card h3 {
            margin-bottom: 8px;
        }

        .service-card p {
            font-size: 0.9rem;
            color: var(--text-muted);
        }

        .service-feature {
            grid-row: 1 / 3;
            background: var(--text-main);
            color: white;
            border-radius: var(--radius-lg);
            padding: 40px 32px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .service-feature::after {
            content: '';
            position: absolute;
            bottom: -60px;
            right: -60px;
            width: 220px;
            height: 220px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(13, 148, 136, 0.4), transparent 70%);
        }

        .service-feature .service-icon-wrap {
            width: 56px;
            height: 56px;
            border-radius: 16px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.15);
            display: grid;
            place-items: center;
            font-size: 1.4rem;
            color: #5EEAD4;
            margin-bottom: 20px;
            position: relative;
            z-index: 2;
        }

        .service-feature h3 {
            font-size: 1.4rem;
            margin-bottom: 10px;
            position: relative;
            z-index: 2;
        }

        .service-feature p {
            color: #94A3B8;
            font-size: 0.95rem;
            position: relative;
            z-index: 2;
        }

        .service-mini-cta {
            background: var(--accent-coral-soft);
            border: 1px dashed var(--accent-coral);
            border-radius: var(--radius-lg);
            padding: 28px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .service-mini-cta i {
            font-size: 1.6rem;
            color: var(--accent-coral);
            margin-bottom: 12px;
        }

        .service-mini-cta h3 {
            margin-bottom: 6px;
        }

        .service-mini-cta p {
            font-size: 0.9rem;
            color: var(--text-muted);
            margin-bottom: 16px;
        }

        .service-mini-cta a {
            font-weight: 700;
            color: var(--accent-coral);
            font-size: 0.9rem;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        /* ==========================================================================
           7. REVIEWS SECTION
           ========================================================================== */
        #reviews {
            background: var(--text-main);
            color: white;
            border-radius: 40px;
            margin: 0 5%;
            padding: var(--section-pad-y) 5%;
            width: 90%;
        }

        #reviews .wrap {
            padding-left: 0;
            padding-right: 0;
        }

        #reviews .eyebrow {
            color: #94A3B8;
        }

        .rating-summary {
            display: flex;
            align-items: center;
            gap: 28px;
            flex-wrap: wrap;
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: var(--radius-lg);
            padding: 24px 32px;
            margin-bottom: 40px;
        }

        .rating-summary strong {
            font-size: 2.2rem;
            font-weight: 700;
        }

        .rating-summary .stars {
            color: #F59E0B;
            margin: 4px 0;
        }

        .rating-summary span {
            color: #94A3B8;
            font-size: 0.85rem;
        }

        .rating-summary .divider {
            width: 1px;
            height: 40px;
            background: rgba(255, 255, 255, 0.15);
        }

        .grid-reviews {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 24px;
        }

        .review-card {
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: var(--radius-lg);
            padding: 30px;
            display: flex;
            flex-direction: column;
        }

        .review-card .quote-icon {
            color: var(--accent-coral);
            font-size: 1.6rem;
            margin-bottom: 10px;
            opacity: 0.9;
        }

        .stars {
            color: #F59E0B;
            margin-bottom: 12px;
        }

        .review-card p.quote {
            flex-grow: 1;
            color: #CBD5E1;
        }

        .reviewer-info {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.12);
        }

        .reviewer-info span {
            color: #94A3B8 !important;
        }

        .reviewer-avatar {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: var(--primary-teal);
            color: white;
            display: grid;
            place-items: center;
            font-weight: 700;
            flex-shrink: 0;
        }

        .reviewer-info h4 {
            font-size: 0.9rem;
            color: white;
        }

        .reviewer-info span {
            font-size: 0.75rem;
            color: var(--text-muted);
        }

        /* ==========================================================================
           8. FAQ SECTION — image side-by-side with accordion
           ========================================================================== */
        #faq {
            background: var(--bg-card);
        }

        .faq-grid {
            display: grid;
            grid-template-columns: 1fr 1.15fr;
            gap: 64px;
            align-items: center;
        }

        .faq-image {
            position: relative;
        }

        .faq-image img {
            width: 100%;
            height: 520px;
            object-fit: cover;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-soft);
        }

        .faq-image::before {
            content: '';
            position: absolute;
            top: -18px;
            left: -18px;
            width: 100%;
            height: 100%;
            border: 2px solid var(--primary-teal);
            border-radius: var(--radius-lg);
            z-index: -1;
        }

        .faq-content .section-title {
            margin-bottom: 8px;
        }

        .faq-content .eyebrow {
            margin-bottom: 32px;
            display: block;
        }

        .faq-item {
            border-bottom: 1px solid var(--border-color);
            padding: 20px 0;
        }

        .faq-item summary {
            cursor: pointer;
            font-weight: 700;
            font-size: 1.02rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 16px;
            list-style: none;
        }

        .faq-item summary::-webkit-details-marker {
            display: none;
        }

        .faq-item summary .faq-icon {
            flex-shrink: 0;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background: var(--bg-cream);
            color: var(--primary-teal);
            display: grid;
            place-items: center;
            font-size: 0.85rem;
            transition: all 0.3s;
        }

        .faq-item[open] summary .faq-icon {
            background: var(--primary-teal);
            color: white;
            transform: rotate(180deg);
        }

        .faq-item p {
            color: var(--text-muted);
            margin-top: 14px;
            font-size: 0.95rem;
            max-width: 92%;
        }

        /* ==========================================================================
           8b. ABOUT US SECTION — image + story, with stat strip
           ========================================================================== */
        #about {
            background: var(--bg-cream);
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 64px;
            align-items: center;
        }

        .about-image {
            position: relative;
        }

        .about-image img {
            width: 100%;
            height: 480px;
            object-fit: cover;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-soft);
        }

        .about-image::after {
            content: '';
            position: absolute;
            bottom: -18px;
            right: -18px;
            width: 100%;
            height: 100%;
            border: 2px solid var(--accent-coral);
            border-radius: var(--radius-lg);
            z-index: -1;
        }

        .about-content .hero-tag {
            background: var(--accent-coral-soft);
            color: var(--accent-coral);
            border: none;
            backdrop-filter: none;
        }

        .about-content .hero-tag i {
            color: var(--accent-coral);
        }

        .about-content .section-title {
            font-size: 2.4rem;
            margin: 20px 0 20px;
        }

        .about-content p {
            color: var(--text-muted);
            margin-bottom: 20px;
            max-width: 560px;
        }

        .about-stats {
            display: grid;
            grid-template-columns: repeat(3, auto);
            gap: 36px;
            margin-top: 36px;
            padding-top: 32px;
            border-top: 1px solid var(--border-color);
        }

        .about-stats .stat h3 {
            font-size: 2rem;
            font-weight: 800;
            color: var(--primary-teal);
            letter-spacing: -1px;
        }

        .about-stats .stat span {
            font-size: 0.85rem;
            color: var(--text-muted);
            font-weight: 600;
        }

        /* ==========================================================================
           9. FOOTER — pared back to a CTA + copyright bar
           ========================================================================== */
        footer {
            background: var(--text-main);
            color: var(--bg-cream);
            margin-top: 30px;
            padding: 100px 5% 36px;
            border-top-left-radius: 40px;
            border-top-right-radius: 40px;
            position: relative;
            overflow: hidden;
            text-align: center;
        }

        footer::before {
            content: '';
            position: absolute;
            top: -20%;
            left: 50%;
            transform: translateX(-50%);
            width: 700px;
            height: 500px;
            background: radial-gradient(circle, rgba(13, 148, 136, 0.35) 0%, rgba(15, 23, 42, 0) 70%);
            pointer-events: none;
        }

        .footer-cta {
            position: relative;
            max-width: 640px;
            margin: 0 auto 56px;
        }

        .footer-cta .footer-icon {
            width: 60px;
            height: 60px;
            margin: 0 auto 24px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.15);
            display: grid;
            place-items: center;
            font-size: 1.4rem;
            color: var(--accent-coral);
        }

        .footer-cta h2 {
            font-size: 2.6rem;
            font-weight: 800;
            letter-spacing: -1px;
            margin-bottom: 16px;
            color: white;
        }

        .footer-cta p {
            color: #94A3B8;
            margin-bottom: 32px;
            font-size: 1.05rem;
        }

        .footer-cta .hero-cta {
            justify-content: center;
        }

        .footer-cta .btn-primary {
            background: var(--accent-coral);
            box-shadow: 0 4px 18px rgba(255, 107, 91, 0.35);
            padding: 14px 30px;
            font-size: 1rem;
        }

        .footer-cta .btn-primary:hover {
            background: #E85445;
        }

        .footer-bottom {
            position: relative;
            max-width: var(--content-max);
            margin: 0 auto;
            padding-top: 30px;
            border-top: 1px solid #334155;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: #94A3B8;
            font-size: 0.9rem;
            gap: 16px;
            flex-wrap: wrap;
        }

        .footer-bottom .logo-img {
            width: 160px;
            filter: brightness(0) invert(1);
            opacity: 0.9;
        }

        .footer-bottom .socials {
            display: flex;
            gap: 16px;
        }

        .footer-bottom .socials a {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            border: 1px solid #334155;
            display: grid;
            place-items: center;
            transition: all 0.3s;
        }

        .footer-bottom .socials a:hover {
            color: white;
            border-color: var(--accent-coral);
            background: rgba(255, 107, 91, 0.15);
        }

        /* ==========================================================================
           10. RESPONSIVE DESIGN
           ========================================================================== */
        @media (max-width: 992px) {
            .hero-title {
                font-size: 3rem;
            }
            .faq-grid, .about-grid, .grid-services {
                grid-template-columns: 1fr;
            }
            .service-feature {
                grid-row: auto;
            }
            .faq-image img, .about-image img {
                height: 360px;
            }
            .about-image {
                order: -1;
            }
            .about-stats {
                grid-template-columns: repeat(3, 1fr);
                gap: 20px;
            }
            .nav-links {
                display: none;
            }
        }

        @media (max-width: 576px) {
            .hero-title {
                font-size: 2.3rem;
            }
            .hero {
                background-attachment: scroll;
            }
            .top-bar {
                display: none;
            }
            .section-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
            }
            .footer-cta h2 {
                font-size: 2rem;
            }
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
        }

/* ==========================================================================
   11. CATEGORY SHOP PAGES — hero banner, breadcrumb, filter toolbar
   ========================================================================== */
.shop-hero {
    position: relative;
    height: 320px;
    display: flex;
    align-items: flex-end;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.shop-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 32, 0.35) 0%, rgba(15, 23, 32, 0.88) 100%);
}

.shop-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 0 5% 36px;
    max-width: var(--content-max);
    margin: 0 auto;
    color: white;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 14px;
}

.breadcrumb a:hover {
    color: white;
}

.breadcrumb i {
    font-size: 0.65rem;
}

.shop-hero h1 {
    font-family: var(--font-display);
    font-size: 2.6rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.shop-hero p {
    color: rgba(255, 255, 255, 0.8);
    max-width: 520px;
}

.shop-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
}

.filter-chips {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-chip {
    padding: 8px 18px;
    border-radius: 30px;
    border: 1px solid var(--border-color);
    background: var(--bg-card);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.filter-chip:hover {
    border-color: var(--primary-teal);
    color: var(--primary-teal);
}

.filter-chip.active {
    background: var(--text-main);
    color: white;
    border-color: var(--text-main);
}

.sort-select {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
}

.sort-select select {
    padding: 8px 14px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    background: var(--bg-card);
    font-family: inherit;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-main);
    cursor: pointer;
}

.results-count {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.shop-section {
    padding: var(--section-pad-y) 0;
}

@media (max-width: 576px) {
    .shop-hero h1 {
        font-size: 2rem;
    }
    .shop-toolbar {
        flex-direction: column;
        align-items: flex-start;
    }
}