/* ═══════════════════════════════════════════════════════════════════
   ZAVORA — RESPONSIVE STYLES v1.2.4
   Premium mobile-first design upgrade.
   Desktop untouched. All working fixes preserved.
   ═══════════════════════════════════════════════════════════════════ */

/* Global overflow guard */
html, body { max-width: 100%; overflow-x: hidden; }
*, *::before, *::after { box-sizing: border-box; }

/* ═══════════════════════════════════════════════════════════════════
   TABLET ≤ 1024px
   ═══════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .container    { padding: 0 24px; }
    .header-inner { padding: 0 24px; }
    .nav-menu     { gap: 18px; }

    .product-grid   { grid-template-columns: repeat(2, 1fr); }
    .why-grid       { grid-template-columns: repeat(2, 1fr); }
    .featured-inner { gap: 40px; }
    .story-inner    { gap: 40px; }
    .footer-inner   { grid-template-columns: 1fr 1fr; gap: 30px; }

    .slide-content          { padding: 60px 40px; }
    .slide-split-text       { padding: 40px 30px 40px 20px; }
    .slide-product-float--1 { width: 260px; height: 260px; }

    .story-preview-inner { gap: 40px; }
    .ritual-steps        { grid-template-columns: 1fr 1fr; }
    .values-grid         { grid-template-columns: repeat(2, 1fr); }
    .contact-inner       { grid-template-columns: 1fr; }
    .about-grid          { gap: 40px; }

    .woocommerce ul.products.product-grid--3,
    .woocommerce-page ul.products.product-grid--3 {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* ═══════════════════════════════════════════════════════════════════
   MOBILE ≤ 768px  —  PREMIUM DESIGN UPGRADE
   ═══════════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {

    :root {
        --header-height: 64px;
        --mobile-px: 20px;
        --gold: #C9A45C;
        --gold-light: #DFB97A;
        --burgundy: #6D1F2F;
        --burgundy-deep: #1A0F0D;
        --cream: #FFF3E6;
        --cream-soft: #F8E3D4;
    }

    /* ══════════════════════════════════════════════════════════════
       1. HEADER — clean, premium, minimal
       ══════════════════════════════════════════════════════════════ */
    .header-inner            { padding: 0 var(--mobile-px); gap: 0; }
    .header-nav-desktop      { display: none !important; }
    .header-actions--desktop { display: none !important; }
    .header-actions--mobile  {
        display: flex !important;
        align-items: center;
        gap: 14px;
        flex-shrink: 0;
        margin-left: auto;
    }
    .hamburger { display: flex !important; }
    /* Overlay/backdrop: display:none until .is-open — see header.php critical CSS */

    /* Cart icon on mobile */
    .cart-icon {
        color: var(--cream-soft) !important;
        opacity: 0.9;
    }

    /* ══════════════════════════════════════════════════════════════
       2. HERO SLIDER — cinematic, premium, luxury feel
       ══════════════════════════════════════════════════════════════ */
    .zavora-hero-slider {
        height: auto !important;
        min-height: 0 !important;
        max-height: none !important;
        margin-top: var(--header-height);
        overflow: hidden;
        /* Gold accent line at bottom of slider */
        border-bottom: 1px solid rgba(201,164,92,0.3);
    }

    .slider-track { position: relative; width: 100%; height: auto; }

    .slider-slide {
        position: absolute;
        width: 100%; top: 0; left: 0;
        overflow: hidden;
    }
    .slider-slide.active  { position: relative !important; }
    .slider-slide:not(.active) {
        position: absolute !important;
        top: 0; left: 0; width: 100%;
    }

    /* ── Premium mobile product image ──────────────────────────── */
    .slide-mobile-img {
        display: flex !important;
        justify-content: center;
        align-items: center;
        width: 100%;
        padding-top: 36px;
        margin-bottom: 24px;
        flex-shrink: 0;
        position: relative;
    }
    /* Soft glow behind product image */
    .slide-mobile-img::before {
        content: '';
        position: absolute;
        top: 50%; left: 50%;
        transform: translate(-50%, -40%);
        width: 200px; height: 200px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(201,164,92,0.18) 0%, transparent 70%);
        pointer-events: none;
    }
    .slide-mobile-img img {
        width: 175px;
        height: 175px;
        object-fit: contain;
        border-radius: 50%;
        border: 2px solid rgba(201,164,92,0.6);
        background: rgba(255,243,230,0.07);
        box-shadow:
            0 0 0 8px rgba(201,164,92,0.06),
            0 12px 40px rgba(0,0,0,0.35);
        display: block;
        position: relative;
        z-index: 1;
    }

    /* ── Slide 1 & 4 text content ──────────────────────────────── */
    .slide-content {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 0 var(--mobile-px) 28px;
        width: 100%;
        box-sizing: border-box;
        position: relative;
        z-index: 10;
        height: auto !important;
        min-height: 0 !important;
    }
    .slide-content--center {
        align-items: center;
        text-align: center;
        padding-bottom: 20px;
    }

    /* Premium eyebrow label */
    .slide-eyebrow {
        font-size: 0.68rem !important;
        letter-spacing: 0.28em !important;
        margin-bottom: 10px !important;
        /* Gold accent line before eyebrow */
        display: flex !important;
        align-items: center !important;
        gap: 10px !important;
    }
    .slide-eyebrow::before {
        content: '';
        display: block;
        width: 28px; height: 1px;
        background: var(--gold);
        flex-shrink: 0;
    }
    .slide-content--center .slide-eyebrow {
        justify-content: center;
    }
    .slide-content--center .slide-eyebrow::before { display: none; }

    /* Hero headline — bigger, more dramatic */
    .slide-headline {
        font-size: clamp(2.2rem, 8.5vw, 3rem) !important;
        line-height: 1.08 !important;
        margin-bottom: 14px !important;
        letter-spacing: -0.01em;
    }
    .slide-sub {
        font-size: 0.9rem !important;
        line-height: 1.65 !important;
        max-width: 100% !important;
        margin-bottom: 24px !important;
        opacity: 0.82;
    }

    /* Premium buttons on mobile */
    .slide-actions {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }
    .slide-actions .btn {
        width: 100% !important;
        justify-content: center !important;
        padding: 15px 24px !important;
        font-size: 0.8rem !important;
        letter-spacing: 0.14em !important;
        border-radius: 999px !important;
    }
    /* Gold accent bar below buttons */
    .slide-actions::after {
        content: '';
        display: block;
        width: 40px; height: 1px;
        background: linear-gradient(90deg, transparent, var(--gold), transparent);
        margin: 8px auto 0;
    }
    .slide-content .slide-actions::after { margin-left: 0; }

    /* ── Slide 2: Six Scents — premium scent grid ────────────────── */
    .slide-collection-grid {
        position: relative !important;
        bottom: auto !important; left: auto !important; right: auto !important;
        width: 100% !important;
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        align-items: flex-start !important;
        gap: 10px !important;
        padding: 16px var(--mobile-px) 12px !important;
        margin-top: 10px !important;
        z-index: 10 !important;
    }
    .mini-product-card {
        width: 52px !important;
        text-align: center !important;
        flex-shrink: 0 !important;
    }
    .mini-product-card img {
        width: 48px !important;
        height: 48px !important;
        object-fit: cover !important;
        border-radius: 50% !important;
        border: 2px solid rgba(201,164,92,0.7) !important;
        display: block !important;
        margin: 0 auto 4px !important;
        box-shadow: 0 4px 12px rgba(0,0,0,0.2) !important;
    }
    .mini-product-card p {
        display: block !important;
        font-size: 0.5rem !important;
        color: rgba(58,26,31,0.65) !important;
        line-height: 1.2 !important;
        font-family: 'Raleway', sans-serif !important;
        letter-spacing: 0.03em !important;
    }

    /* ── Slide 3: mobile stack ─────────────────────────────────── */
    .slide-split--desktop { display: none !important; }
    .slide-mobile-stack {
        display: flex !important;
        flex-direction: column;
        width: 100%;
        overflow: hidden;
        position: relative;
        z-index: 10;
    }
    .slide-mobile-stack .slide-mobile-img { padding-top: 36px; margin-bottom: 20px; }
    .slide-mobile-text {
        padding: 0 var(--mobile-px) 28px;
        display: flex;
        flex-direction: column;
    }
    .slide-mobile-text .slide-headline { font-size: clamp(2rem, 7.5vw, 2.8rem); }
    .slide-mobile-text .slide-sub      { font-size: 0.9rem; margin-bottom: 22px; opacity: 0.82; }
    .slide-mobile-text .slide-actions  { flex-direction: column; gap: 10px; }
    .slide-mobile-text .slide-actions .btn { width: 100%; justify-content: center; }

    /* Hide desktop floats */
    .slide-decor { display: none !important; }

    /* ── Slider controls — elegant minimal ────────────────────── */
    .slider-controls {
        position: relative !important;
        bottom: auto !important; left: auto !important;
        transform: none !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 14px !important;
        padding: 14px 0 18px !important;
        background: transparent !important;
        z-index: 20 !important;
    }
    .slider-arrow {
        width: 36px !important; height: 36px !important;
        border-radius: 50% !important;
        background: rgba(201,164,92,0.12) !important;
        border: 1px solid rgba(201,164,92,0.4) !important;
        color: var(--gold) !important;
    }
    .slider-dot {
        width: 6px !important; height: 6px !important;
    }
    .slider-dot.active {
        width: 20px !important;
        background: var(--gold) !important;
    }
    .slider-progress { position: relative !important; height: 1px !important; margin: 0 !important; }

    /* ══════════════════════════════════════════════════════════════
       3. BRAND PILLARS — centered, premium, gold icons
       ══════════════════════════════════════════════════════════════ */
    .zavora-brand-strip {
        padding: 40px 0;
        background: var(--cream) !important;
    }
    .brand-strip-inner {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 0;
    }
    .brand-pillar-divider { display: none; }
    .brand-pillar {
        width: 100%;
        max-width: 100%;
        padding: 20px var(--mobile-px);
        text-align: center;
        margin: 0;
        border-bottom: 1px solid rgba(201,164,92,0.15);
    }
    .brand-pillar:last-child { border-bottom: none; }
    .pillar-icon  {
        margin: 0 auto 14px;
        width: 48px; height: 48px;
        background: rgba(201,164,92,0.08);
        border: 1px solid rgba(201,164,92,0.25);
        border-radius: 50%;
    }
    .pillar-title {
        text-align: center;
        font-size: 1.1rem !important;
        margin-bottom: 8px;
    }
    .pillar-text  {
        text-align: center;
        margin: 0 auto;
        max-width: 280px;
        font-size: 0.86rem !important;
        line-height: 1.7 !important;
    }

    /* ══════════════════════════════════════════════════════════════
       4. WHY ZAVORA — dark section, premium cards
       ══════════════════════════════════════════════════════════════ */
    .zavora-why { padding: 48px 0; }
    .zavora-why .section-header { padding: 0 var(--mobile-px); margin-bottom: 32px; }
    .why-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        padding: 0 var(--mobile-px);
    }
    .why-card {
        padding: 20px 14px;
        border-radius: 12px;
    }
    .why-icon {
        width: 44px; height: 44px;
        margin: 0 auto 14px;
    }
    .why-card h4 { font-size: 1rem !important; margin-bottom: 8px; }
    .why-card p  { font-size: 0.8rem !important; line-height: 1.6 !important; }

    /* ══════════════════════════════════════════════════════════════
       5. HOME COLLECTION PREVIEW — premium product cards
       ══════════════════════════════════════════════════════════════ */
    .zavora-home-preview {
        padding: 56px 0;
        background: var(--cream-soft) !important;
    }
    .zavora-home-preview .container { padding: 0 var(--mobile-px); }
    .zavora-home-preview .section-header { margin-bottom: 32px; }

    .product-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0;
    }

    /* Premium product card on mobile */
    .zavora-product-card {
        border-radius: 16px !important;
        overflow: hidden !important;
        box-shadow: 0 4px 24px rgba(26,15,13,0.1) !important;
        border: 1px solid rgba(201,164,92,0.2) !important;
        background: #fff !important;
    }
    .product-card-image {
        aspect-ratio: 1 / 1;
        background: var(--cream-soft) !important;
    }
    .product-card-image img {
        object-fit: contain !important;
        padding: 16px !important;
        transition: transform 0.4s ease !important;
    }
    .product-card-body { padding: 18px 20px 20px !important; }
    .product-card-mood {
        font-size: 0.65rem !important;
        letter-spacing: 0.16em !important;
        margin-bottom: 6px !important;
    }
    .product-card-title { font-size: 1.2rem !important; margin-bottom: 12px !important; }
    .product-card-footer {
        padding-top: 14px !important;
        border-top: 1px solid rgba(201,164,92,0.2) !important;
    }
    .product-card-price { font-size: 1.35rem !important; }

    /* Add to Cart button on mobile product cards */
    .btn--add-cart,
    .product-card-footer .button,
    .product-card-footer .add_to_cart_button {
        padding: 10px 18px !important;
        font-size: 0.72rem !important;
        border-radius: 999px !important;
    }
    .zavora-view-product-link {
        margin: 10px 20px 16px !important;
        padding: 9px !important;
        font-size: 0.7rem !important;
        border-radius: 999px !important;
    }

    /* Preview CTA */
    .preview-cta {
        margin: 28px var(--mobile-px) 0;
        text-align: center;
        padding-top: 24px;
        border-top: 1px solid rgba(201,164,92,0.2);
    }
    .preview-cta-text {
        font-size: 0.95rem !important;
        margin-bottom: 16px !important;
    }

    /* ══════════════════════════════════════════════════════════════
       6. FEATURED PRODUCT — dark section
       ══════════════════════════════════════════════════════════════ */
    .zavora-featured  { padding: 52px 0; }
    .featured-inner   {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 0 var(--mobile-px);
    }
    .featured-image-frame {
        text-align: center;
        margin-bottom: 28px;
    }
    .featured-image-frame img {
        max-width: 260px;
        margin: 0 auto;
        border-radius: 50% !important;
    }
    .featured-title   { font-size: clamp(2rem, 7vw, 2.8rem) !important; }
    .featured-desc    { font-size: 0.9rem !important; }
    .featured-actions { flex-direction: column; gap: 10px; }
    .featured-actions .btn { width: 100%; justify-content: center; }

    /* ══════════════════════════════════════════════════════════════
       7. STORY PREVIEW — cream section
       ══════════════════════════════════════════════════════════════ */
    .zavora-story         { padding: 52px 0; }
    .story-inner          { grid-template-columns: 1fr; gap: 28px; }
    .story-visual         { display: none; }
    .zavora-story-preview { padding: 52px 0; }
    .story-preview-inner  { grid-template-columns: 1fr; }
    .story-preview-image  { display: none; }
    .story-preview-heading { font-size: clamp(1.8rem, 6vw, 2.4rem) !important; }
    .story-preview-body   { font-size: 0.92rem !important; line-height: 1.85 !important; }

    /* ══════════════════════════════════════════════════════════════
       8. GALLERY STRIP
       ══════════════════════════════════════════════════════════════ */
    .gallery-strip {
        grid-template-columns: repeat(3, 1fr);
        height: 140px;
    }

    /* ══════════════════════════════════════════════════════════════
       9. CTA BAND — strong call to action
       ══════════════════════════════════════════════════════════════ */
    .zavora-cta-band { padding: 52px 0; }
    .cta-band-inner  { padding: 0 var(--mobile-px); }
    .cta-band-heading { font-size: clamp(1.8rem, 6vw, 2.4rem) !important; margin-bottom: 12px; }
    .cta-band-sub     { font-size: 0.9rem !important; margin-bottom: 28px; }
    .cta-band-actions { flex-direction: column; align-items: center; gap: 12px; }
    .cta-band-actions .btn {
        width: 100%; max-width: 300px;
        justify-content: center;
        padding: 16px !important;
    }

    /* ══════════════════════════════════════════════════════════════
       10. FOOTER — premium mobile layout
       ══════════════════════════════════════════════════════════════ */
    .zavora-footer .footer-top { padding: 44px 0 36px; }
    .footer-inner        {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 0 var(--mobile-px);
    }
    .footer-brand        { text-align: center; }
    .footer-social       { justify-content: center; }
    .footer-tagline      { font-size: 0.95rem !important; }
    .footer-col-title    { font-size: 0.65rem !important; letter-spacing: 0.2em !important; }
    .footer-links a      { font-size: 0.88rem !important; }
    .footer-bottom-inner {
        flex-direction: column;
        gap: 6px;
        text-align: center;
        padding: 0 var(--mobile-px);
    }
    .zavora-logo-img--footer {
        width: 80px;
        margin: 0 auto 14px;
    }

    /* ══════════════════════════════════════════════════════════════
       11. ABOUT PAGE — premium, images visible
       ══════════════════════════════════════════════════════════════ */
    .about-hero   { min-height: 240px; padding-bottom: 0; }
    .about-hero-title { font-size: clamp(2rem, 7vw, 2.8rem) !important; }
    .about-hero-sub   { font-size: 0.88rem !important; }

    .about-section { padding: 52px 0; }
    .about-grid   { grid-template-columns: 1fr; gap: 28px; }
    .about-grid--reverse { direction: ltr; }
    .about-image  { display: block !important; }
    .about-image-frame img {
        border-radius: 16px !important;
        box-shadow: 0 8px 32px rgba(26,15,13,0.2) !important;
    }
    .about-heading { font-size: clamp(1.8rem, 6vw, 2.4rem) !important; }
    .about-text p, .about-text-light { font-size: 0.9rem !important; line-height: 1.85 !important; }

    .ritual-steps {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 0 var(--mobile-px);
    }
    .ritual-step { padding: 24px 20px; border-radius: 12px; }
    .ritual-number { font-size: 2rem !important; }

    .values-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        padding: 0 var(--mobile-px);
    }
    .value-card { padding: 20px 14px; border-radius: 12px; }

    /* ══════════════════════════════════════════════════════════════
       12. CONTACT PAGE
       ══════════════════════════════════════════════════════════════ */
    .contact-hero   { min-height: 220px; }
    .contact-hero-title { font-size: clamp(2rem, 7vw, 2.8rem) !important; }
    .contact-inner  { grid-template-columns: 1fr; gap: 24px; padding: 0 var(--mobile-px); }
    .form-row--half { flex-direction: column; }
    .contact-body   { padding: 44px 0; }
    .contact-col-title { font-size: 1.5rem !important; }

    /* Form inputs — large tap targets */
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 14px 16px !important;
        font-size: 0.95rem !important;
        border-radius: 10px !important;
    }
    .contact-submit {
        width: 100% !important;
        padding: 16px !important;
        font-size: 0.82rem !important;
    }
    .contact-info-card {
        padding: 20px 18px !important;
        border-radius: 12px !important;
    }

    /* ══════════════════════════════════════════════════════════════
       13. SHOP / COLLECTION PAGE — premium product grid
       ══════════════════════════════════════════════════════════════ */
    .shop-hero { min-height: 0; }
    .shop-hero-content { padding: 32px var(--mobile-px) 28px; }
    .shop-hero-title   { font-size: clamp(1.9rem, 6vw, 2.6rem) !important; }
    .shop-content      { padding: 24px var(--mobile-px) 60px !important; }
    .shop-toolbar      { flex-direction: column; gap: 10px; align-items: flex-start; margin-bottom: 24px; }

    .woocommerce ul.products.product-grid--3,
    .woocommerce-page ul.products.product-grid--3 {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    /* Premium WooCommerce product cards on mobile */
    .woocommerce ul.products li.product,
    .woocommerce-page ul.products li.product {
        border-radius: 16px !important;
        box-shadow: 0 4px 24px rgba(26,15,13,0.1) !important;
        border: 1px solid rgba(201,164,92,0.2) !important;
    }
    .woocommerce ul.products li.product a img {
        padding: 16px !important;
    }
    .woocommerce ul.products li.product .woocommerce-loop-product__title {
        font-size: 1.15rem !important;
        padding: 16px 18px 6px !important;
    }
    .woocommerce ul.products li.product .price {
        font-size: 1.25rem !important;
        padding: 4px 18px 14px !important;
    }
    .woocommerce ul.products li.product .button {
        width: calc(100% - 36px) !important;
        margin: 0 18px 10px !important;
        padding: 12px !important;
        font-size: 0.76rem !important;
        border-radius: 999px !important;
    }
    .zavora-view-product-link {
        width: calc(100% - 36px) !important;
        margin: 0 18px 16px !important;
        padding: 10px !important;
        font-size: 0.7rem !important;
        border-radius: 999px !important;
    }

    /* ══════════════════════════════════════════════════════════════
       14. WOOCOMMERCE CART & CHECKOUT — clean, tappable
       ══════════════════════════════════════════════════════════════ */
    .woocommerce ul.products               { grid-template-columns: 1fr !important; }
    .woocommerce div.product div.images,
    .woocommerce div.product div.summary   { width: 100% !important; float: none !important; }
    .woocommerce-account .woocommerce      { flex-direction: column !important; padding: 28px var(--mobile-px) !important; }
    .woocommerce-account .woocommerce-MyAccount-navigation { width: 100% !important; }

    /* Cart table — mobile friendly */
    .woocommerce-cart table.cart { font-size: 0.88rem !important; }
    .woocommerce table.shop_table th { padding: 12px 14px !important; font-size: 0.65rem !important; }
    .woocommerce table.shop_table td { padding: 14px 14px !important; }

    /* Quantity buttons — large tap targets (CRITICAL: no overlay blocking) */
    .woocommerce .quantity input.qty {
        min-height: 44px !important;
        min-width: 52px !important;
        font-size: 1rem !important;
        text-align: center !important;
        padding: 10px !important;
        position: relative !important;
        z-index: 1 !important;
    }
    .woocommerce .quantity .qty-plus,
    .woocommerce .quantity .qty-minus,
    .woocommerce .quantity button {
        min-height: 44px !important;
        min-width: 44px !important;
        position: relative !important;
        z-index: 1 !important;
        pointer-events: auto !important;
        cursor: pointer !important;
    }

    /* Cart totals and checkout button */
    .woocommerce .cart_totals { border-radius: 12px !important; }
    .woocommerce a.checkout-button,
    .woocommerce .checkout-button {
        padding: 16px !important;
        font-size: 0.84rem !important;
        border-radius: 999px !important;
    }

    /* Checkout form */
    .woocommerce form .form-row input.input-text,
    .woocommerce form .form-row select,
    .woocommerce form .form-row textarea {
        padding: 14px 16px !important;
        font-size: 0.95rem !important;
        border-radius: 10px !important;
        min-height: 48px !important;
    }
    .woocommerce #place_order {
        padding: 16px !important;
        font-size: 0.86rem !important;
        border-radius: 999px !important;
        min-height: 52px !important;
    }

    /* ══════════════════════════════════════════════════════════════
       15. GLOBAL BUTTON SAFETY — no invisible layers blocking taps
       ══════════════════════════════════════════════════════════════ */
    .woocommerce button,
    .woocommerce input[type="submit"],
    .woocommerce a.button,
    .woocommerce .button,
    .btn,
    button {
        position: relative !important;
        z-index: 1 !important;
        pointer-events: auto !important;
        cursor: pointer !important;
        -webkit-tap-highlight-color: rgba(201,164,92,0.15) !important;
    }
}

/* ═══════════════════════════════════════════════════════════════════
   SMALL MOBILE ≤ 480px
   ═══════════════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
    .slide-headline         { font-size: 2rem !important; }
    .slide-mobile-img img   { width: 155px; height: 155px; }
    .why-grid               { grid-template-columns: 1fr; }
    .gallery-strip          { grid-template-columns: repeat(2, 1fr); height: 130px; }
    .section-title          { font-size: 1.75rem; }
    .values-grid            { grid-template-columns: 1fr; }
    .about-hero-title       { font-size: 1.9rem; }
    .contact-hero-title     { font-size: 1.9rem; }
    .mini-product-card      { width: 46px !important; }
    .mini-product-card img  { width: 42px !important; height: 42px !important; }
}
