/* ========================================
   Maayan's Gold — Premium Natural Cosmetics
   ======================================== */

/* ========================================
   🎨 מעיין — כל ההגדרות שאפשר לשנות נמצאות כאן!

   כדי לשנות צבע — פשוט תשני את הערך של # ותשמרי
   כדי לשנות פונט — תשני את השם בין הגרשיים

   🔗 לבחירת צבעים: https://coolors.co
   🔗 לבחירת פונטים: https://fonts.google.com
   ======================================== */

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {

    /* ---- פונטים / FONTS ---- */
    /* פונט לכותרות (הפונט המעוצב) */
    --font-heading: 'Playfair Display', serif;
    /* פונט לטקסט רגיל */
    --font-body: 'Assistant', sans-serif;

    /* ---- צבעים ראשיים / MAIN COLORS ---- */
    /* זהב — צבע הכפתורים והלוגו */
    --gold: #CDA06E;
    /* זהב כהה — כפתורים בhover */
    --gold-dark: #B98754;
    /* זהב בהיר */
    --gold-light: #E4C9A8;

    /* ---- צבעי רקע / BACKGROUND COLORS ---- */
    /* חום כהה — הירו, header בדפים פנימיים */
    --brown-dark: #6E7553;
    /* חום — טקסט של תפריט */
    --brown: #98A078;
    /* חום בינוני */
    --brown-medium: #C9CEAB;
    /* קרם — רקע של כרטיסיות */
    --cream: #E5DEC5;
    /* קרם בהיר — רקע ראשי של האתר */
    --cream-light: #F6F2E8;
    /* קרם חם — רקע תמונות */
    --cream-warm: #EDE4CF;

    /* ---- צבעי טקסט / TEXT COLORS ---- */
    /* טקסט כהה */
    --text-dark: #444A32;
    /* טקסט רגיל */
    --text: #5C6247;
    /* טקסט מעומעם (קטגוריות, תיאורים) */
    --text-muted: #8D9272;
    /* לבן */
    --white: #FFFFFF;

    /* ---- צבעים נוספים / OTHER COLORS ---- */
    /* רקע footer */
    --footer-bg: #5E6647;
    /* רקע hero (gradient) — שנו את 3 הצבעים למטה */
    --hero-bg-1: #BFC6A0;
    --hero-bg-2: #D0D4B3;
    --hero-bg-3: #E3DDC5;
    /* צבע כפתור WhatsApp */
    --whatsapp-green: #25D366;
    /* צבע שגיאה / מחיקה */
    --danger: #c0392b;

    /* ---- גבולות / BORDERS ---- */
    --border: #DDD9C7;
    --border-light: #ECE8DA;

    /* ---- צללים / SHADOWS ---- */
    --shadow-sm: 0 2px 8px rgba(94, 102, 71, 0.06);
    --shadow-md: 0 8px 30px rgba(94, 102, 71, 0.08);
    --shadow-lg: 0 20px 60px rgba(94, 102, 71, 0.10);

    /* ---- פינות מעוגלות / BORDER RADIUS ---- */
    --radius: 16px;
    --radius-sm: 10px;

    /* ---- גדלי פונט / FONT SIZES ---- */
    /* כותרת ראשית (hero) */
    --size-hero: 52px;
    /* כותרת סקשן */
    --size-heading: 36px;
    /* טקסט רגיל */
    --size-body: 17px;
    /* טקסט קטן */
    --size-small: 13px;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-size: var(--size-body);
    font-weight: 400;
    color: var(--text);
    background-color: var(--cream-light);
    line-height: 1.65;
    direction: rtl;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

ul { list-style: none; }

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========================================
   Announcement Bar
   ======================================== */

.announcement-bar {
    background: #726081;
    color: #F8F4FC;
    text-align: center;
    padding: 10px 0;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    overflow: hidden;
}

.announcement-inner span {
    display: inline-block;
    white-space: nowrap;
}

/* ========================================
   Header
   ======================================== */

.header {
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 0;
    background: rgba(246, 242, 232, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    transition: all 0.3s;
}

.header-solid {
    position: sticky;
    top: 0;
    background: #6C5A7A;
    border-bottom: none;
}

.header-solid .logo-text { color: var(--gold); }
.header-solid .logo-sub { color: #F8F4FC; }
.header-solid .nav-list a { color: #F8F4FC; }
.header-solid .nav-list a:hover,
.header-solid .nav-list a.active { color: var(--gold); }
.header-solid .cart-icon a { color: #F8F4FC; }
.header-solid .mobile-menu-btn span { background: #F8F4FC; }

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo a {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 52px;
    width: auto;
    display: block;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--brown-dark);
    letter-spacing: 0.5px;
}

.logo-sub {
    font-size: 11px;
    color: var(--brown-medium);
    font-weight: 400;
    letter-spacing: 0.5px;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    display: block;
    margin: 0 auto 8px;
}

.nav-list {
    display: flex;
    gap: 32px;
}

.nav-list a {
    font-size: 15px;
    font-weight: 600;
    color: var(--brown);
    position: relative;
    padding: 8px 0;
    letter-spacing: 0.3px;
}

.nav-list a:hover,
.nav-list a.active {
    color: var(--gold-dark);
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    right: 0;
    width: 0;
    height: 1.5px;
    background: var(--gold);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-list a:hover::after,
.nav-list a.active::after {
    width: 100%;
}

.cart-icon a {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--brown);
    position: relative;
}

.cart-icon a:hover { color: var(--gold-dark); }

.cart-count {
    background: var(--gold);
    color: var(--white);
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 800;
    position: absolute;
    top: -6px;
    left: -6px;
}

.cart-total { display: none; }

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 28px;
    height: 20px;
    position: relative;
    flex-direction: column;
    justify-content: space-between;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--cream);
    border-radius: 2px;
    transition: all 0.3s;
}

/* ========================================
   Hero Section
   ======================================== */

.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    background: linear-gradient(160deg, #D9D1E7 0%, #E9E2F1 45%, #F5EFF9 100%);
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.hero-bg-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.35);
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: radial-gradient(circle at 20% 50%, var(--gold) 1px, transparent 1px),
                       radial-gradient(circle at 80% 20%, var(--gold) 1px, transparent 1px),
                       radial-gradient(circle at 60% 80%, var(--gold) 0.5px, transparent 0.5px);
    background-size: 60px 60px, 80px 80px, 40px 40px;
}

.hero-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(182, 156, 212, 0.22) 0%, transparent 70%);
    top: 50%;
    right: 30%;
    transform: translate(50%, -50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 80px 0;
    width: 100%;
}

.hero-eyebrow {
    font-family: var(--font-heading);
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 16px;
    opacity: 0;
    animation: fadeUp 0.8s 0.2s forwards;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 52px;
    font-weight: 700;
    color: #5A476B;
    line-height: 1.2;
    margin-bottom: 16px;
    opacity: 0;
    animation: fadeUp 0.8s 0.4s forwards;
}

.hero h1 em {
    color: var(--gold);
    font-style: italic;
}

.hero-subtitle {
    font-size: 20px;
    color: #7C6B8C;
    opacity: 0;
    margin-bottom: 28px;
    animation: fadeUp 0.8s 0.6s forwards;
}

.hero-badges {
    display: flex;
    gap: 20px;
    margin-bottom: 36px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.8s 0.8s forwards;
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #7A6A88;
    opacity: 0.95;
}

.hero-badge svg {
    color: var(--gold);
    flex-shrink: 0;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    font-size: 17px;
    border-radius: var(--radius-sm);
    opacity: 0;
    animation: fadeUp 0.8s 1s forwards;
}

.hero-images {
    position: relative;
    height: 450px;
    opacity: 0;
    animation: fadeUp 1s 0.6s forwards;
}

.hero-img {
    position: absolute;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-img:hover {
    transform: translateY(-8px) scale(1.02);
    z-index: 3;
}

.hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-img-1 {
    width: 220px;
    height: 300px;
    top: 10%;
    right: 5%;
    z-index: 2;
    transform: rotate(-3deg);
}

.hero-img-2 {
    width: 200px;
    height: 260px;
    top: 25%;
    right: 45%;
    z-index: 1;
    transform: rotate(2deg);
}

.hero-img-3 {
    width: 180px;
    height: 240px;
    bottom: 5%;
    right: 20%;
    z-index: 3;
    transform: rotate(-1deg);
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ========================================
   Trust Strip
   ======================================== */

.trust-strip {
    background: var(--white);
    border-bottom: 1px solid var(--border-light);
    padding: 24px 0;
}

.trust-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
    justify-content: center;
}

.trust-item svg {
    color: var(--gold);
    flex-shrink: 0;
}

.trust-item strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--brown-dark);
}

.trust-item span {
    font-size: 12px;
    color: var(--text-muted);
}

/* ========================================
   Section Headers
   ======================================== */

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-tag {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-dark);
    display: block;
    margin-bottom: 10px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    color: var(--brown-dark);
    margin-bottom: 12px;
}

.section-desc {
    font-size: 17px;
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto;
}

.section-cta {
    text-align: center;
    margin-top: 40px;
}

/* ========================================
   Buttons
   ======================================== */

.btn {
    display: inline-block;
    padding: 14px 36px;
    border: none;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    letter-spacing: 0.3px;
}

.btn-primary {
    background: var(--gold);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(185, 135, 84, 0.28);
}

.btn-outline {
    background: transparent;
    color: var(--brown-dark);
    border: 1.5px solid var(--brown-dark);
}

.btn-outline:hover {
    background: var(--brown-dark);
    color: var(--cream);
    transform: translateY(-2px);
}

/* ========================================
   Products Grid
   ======================================== */

.featured {
    padding: 80px 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-light);
    position: relative;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.product-image {
    background: var(--cream-warm);
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

.product-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: var(--gold);
    color: var(--white);
    font-size: 11px;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: 20px;
    z-index: 2;
    letter-spacing: 0.5px;
}

.badge-new {
    background: var(--brown-dark);
}

.product-overlay {
    position: absolute;
    inset: 0;
    background: rgba(68, 74, 50, 0.28);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.quick-view {
    background: var(--white);
    color: var(--brown-dark);
    padding: 10px 24px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 700;
    transform: translateY(10px);
    transition: transform 0.3s;
}

.product-card:hover .quick-view {
    transform: translateY(0);
}

.product-info {
    padding: 20px;
}

.product-category {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.product-info h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--brown-dark);
    margin: 8px 0;
    line-height: 1.4;
}

.product-price {
    font-size: 16px;
    font-weight: 800;
    color: var(--gold-dark);
}

.product-shipping {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 4px;
}

/* ========================================
   Testimonials
   ======================================== */

.testimonials {
    padding: 80px 0;
    background: var(--cream-warm);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px;
    border: 1px solid var(--border-light);
    transition: all 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.testimonial-stars {
    color: var(--gold);
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.testimonial-card p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    font-size: 15px;
    color: var(--brown-dark);
}

.testimonial-author span {
    font-size: 13px;
    color: var(--text-muted);
}

/* ========================================
   Story / About Section
   ======================================== */

.about-section {
    padding: 80px 0;
    background: var(--white);
}

.story-section {
    max-width: 960px;
    margin: 0 auto;
}

.story-header {
    text-align: center;
    margin-bottom: 48px;
}

.story-content {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 48px;
    align-items: center;
}

.story-text p {
    font-size: 17px;
    line-height: 1.9;
    color: var(--text);
    margin-bottom: 16px;
}

.story-cta-text {
    background: var(--cream);
    border-radius: var(--radius-sm);
    padding: 20px 24px;
    border-right: 3px solid var(--gold);
    margin: 20px 0;
}

.story-images {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.story-img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    transition: transform 0.4s;
}

.story-img:hover {
    transform: scale(1.02);
}

/* ========================================
   Newsletter
   ======================================== */

.newsletter {
    padding: 60px 0;
    background: var(--brown-dark);
    color: var(--cream);
}

.newsletter-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.newsletter-text h3 {
    font-family: var(--font-heading);
    font-size: 26px;
    color: var(--cream);
    margin-bottom: 6px;
}

.newsletter-text p {
    font-size: 15px;
    color: var(--cream);
    opacity: 0.7;
}

.newsletter-form {
    flex: 1;
    max-width: 460px;
}

.nl-fields {
    display: flex;
    gap: 10px;
}

.nl-fields input {
    flex: 1;
    padding: 14px 20px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,0.08);
    color: var(--cream);
    font-family: var(--font-body);
    font-size: 15px;
    transition: border-color 0.3s;
}

.nl-fields input::placeholder { color: rgba(255,255,255,0.4); }
.nl-fields input:focus { outline: none; border-color: var(--gold); }

.nl-fields .btn {
    white-space: nowrap;
    padding: 14px 28px;
}

.nl-success {
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: var(--gold-light);
    padding: 14px;
}

/* ========================================
   Footer
   ======================================== */

.footer {
    background: linear-gradient(160deg, #7A6888 0%, #9886A8 55%, #CDBFD9 100%);
    color: var(--cream);
    padding-top: 60px;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--gold);
    display: block;
    margin-bottom: 12px;
}

.footer-col p {
    font-size: 14px;
    opacity: 0.6;
    line-height: 1.7;
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 18px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul a {
    font-size: 14px;
    opacity: 0.6;
    transition: all 0.3s;
}

.footer-col ul a:hover {
    opacity: 1;
    color: var(--gold);
    padding-right: 6px;
}

.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.social-icons a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    color: var(--cream);
}

.social-icons a:hover {
    background: var(--gold);
    color: var(--footer-bg);
    transform: translateY(-2px);
}

.footer-bottom {
    padding: 20px 0;
    text-align: center;
    font-size: 12px;
    opacity: 0.4;
}

/* ========================================
   Floating WhatsApp
   ======================================== */

.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: auto;
    left: 24px;
    width: 56px;
    height: 56px;
    background: var(--whatsapp-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s;
    animation: pulse-wa 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}

@keyframes pulse-wa {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6); }
}

/* ========================================
   Back to Top
   ======================================== */

.back-to-top {
    position: fixed;
    bottom: 24px;
    left: auto;
    right: 24px;
    width: 44px;
    height: 44px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s;
    box-shadow: var(--shadow-sm);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--brown-dark);
    color: var(--cream);
    border-color: var(--brown-dark);
    transform: translateY(-2px);
}

.back-to-top svg { color: inherit; }

/* ========================================
   Scroll Reveal Animations
   ======================================== */

.reveal-section .section-header,
.reveal-section .section-cta,
.reveal-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-section.revealed .section-header,
.reveal-section.revealed .section-cta,
.revealed .reveal-item {
    opacity: 1;
    transform: translateY(0);
}

.reveal-item:nth-child(1) { transition-delay: 0s; }
.reveal-item:nth-child(2) { transition-delay: 0.1s; }
.reveal-item:nth-child(3) { transition-delay: 0.2s; }
.reveal-item:nth-child(4) { transition-delay: 0.3s; }

/* ========================================
   Breadcrumb
   ======================================== */

.breadcrumb {
    padding: 16px 0;
    font-size: 13px;
    color: var(--text-muted);
    background: var(--cream);
    border-bottom: 1px solid var(--border-light);
}

.breadcrumb a { color: var(--gold-dark); }
.breadcrumb a:hover { text-decoration: underline; }

/* ========================================
   Shop Page
   ======================================== */

.shop-categories { padding: 40px 0; }

.section-subtitle {
    text-align: center;
    font-size: 17px;
    color: var(--text-muted);
    margin-top: -25px;
    margin-bottom: 35px;
}

.categories-grid-large {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.categories-grid-large .category-img {
    aspect-ratio: 1;
    max-height: 180px;
}

.category-card-large {
    display: block;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border-light);
    transition: all 0.3s;
}

.category-card-large:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold);
}

.category-img {
    aspect-ratio: 1;
    overflow: hidden;
}

.category-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-card-large:hover .category-img img {
    transform: scale(1.08);
}

.category-label {
    padding: 14px 12px;
    text-align: center;
    font-size: 15px;
    font-weight: 700;
    color: var(--brown-dark);
    background: var(--white);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-section {
    padding: 50px 0;
    border-top: 1px solid var(--border-light);
}

.product-section:nth-child(even) { background: var(--white); }

.category-title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--brown-dark);
    margin-bottom: 28px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--gold);
    display: inline-block;
}

/* ========================================
   Product Detail Page
   ======================================== */

.product-detail { padding: 40px 0; }

.product-detail-inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: start;
}

.product-image-main {
    position: relative;
    background: var(--cream-warm);
    border-radius: var(--radius);
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-gallery-nav {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 10px;
    align-items: center;
    margin-top: 14px;
}

.product-gallery-strip {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 4px;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    direction: ltr;
}

.gallery-scroll-btn {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--white);
    color: var(--brown-dark);
    cursor: pointer;
    font-size: 24px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.product-thumb {
    width: 88px;
    min-width: 88px;
    aspect-ratio: 1;
    border: 1.5px solid var(--border);
    border-radius: 14px;
    padding: 0;
    overflow: hidden;
    background: var(--cream-warm);
    cursor: pointer;
    transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.product-thumb:hover {
    transform: translateY(-2px);
    border-color: var(--gold);
}

.product-thumb.active {
    border-color: var(--gold);
    box-shadow: 0 10px 24px rgba(182, 145, 92, 0.18);
}

.product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-category-label {
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
}

.product-detail-info h1 {
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 700;
    color: var(--brown-dark);
    margin: 10px 0 16px;
}

.product-detail-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 25px;
}

.price-range {
    font-size: 26px;
    font-weight: 800;
    color: var(--text-dark);
}

.free-shipping {
    font-size: 14px;
    color: var(--text-muted);
}

.product-options { margin-bottom: 25px; }

.size-options { display: flex; gap: 10px; }

.size-btn {
    font-family: var(--font-body);
    font-size: 14px;
    padding: 10px 22px;
    border: 1.5px solid var(--border);
    border-radius: 25px;
    background: var(--white);
    cursor: pointer;
    transition: all 0.2s;
    color: var(--text);
    font-weight: 600;
}

.size-btn:hover,
.size-btn.active {
    border-color: var(--gold);
    background: var(--gold);
    color: var(--white);
}

.add-to-cart {
    display: flex;
    gap: 12px;
    margin-bottom: 25px;
    align-items: stretch;
}

.quantity-selector {
    display: flex;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.qty-btn {
    width: 44px;
    background: var(--white);
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: var(--text);
    transition: background 0.2s;
}

.qty-btn:hover { background: var(--cream); }

.qty-input {
    width: 50px;
    text-align: center;
    border: none;
    border-right: 1px solid var(--border);
    border-left: 1px solid var(--border);
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--text);
}

.qty-input:focus { outline: none; }

.btn-add-cart {
    flex: 1;
    padding: 14px 30px;
    font-size: 17px;
    border-radius: var(--radius-sm);
}

.product-meta {
    display: flex;
    gap: 25px;
    padding: 16px 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.product-meta a { color: var(--gold-dark); }

.safe-checkout {
    background: var(--cream-light);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    padding: 20px;
    text-align: center;
}

.safe-checkout p {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 12px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.payment-icons { display: flex; justify-content: center; gap: 8px; }

.payment-badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 800;
    color: var(--white);
}

.payment-badge.visa { background: #1a1f71; }
.payment-badge.mc { background: #eb001b; }
.payment-badge.amex { background: #006fcf; }
.payment-badge.discover { background: #ff6000; }

/* ========================================
   Product Tabs
   ======================================== */

.product-tabs-section { padding: 0 0 60px; }

.tabs {
    display: flex;
    border-bottom: 1.5px solid var(--border);
    margin-bottom: 25px;
}

.tab-btn {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 700;
    padding: 14px 28px;
    border: none;
    background: none;
    cursor: pointer;
    color: var(--text-muted);
    position: relative;
    transition: color 0.3s;
}

.tab-btn.active { color: var(--brown-dark); }

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -1.5px;
    right: 0;
    left: 0;
    height: 2px;
    background: var(--gold);
}

.tab-content { display: none; }
.tab-content.active { display: block; }

.info-table { width: 100%; border-collapse: collapse; }
.info-table tr { border-bottom: 1px solid var(--border-light); }
.info-table td { padding: 14px 20px; font-size: 14px; }
.info-table .label { font-weight: 700; color: var(--brown-dark); width: 120px; background: var(--cream); }

.no-reviews { color: var(--text-muted); margin-bottom: 20px; }
.review-form { max-width: 600px; }
.review-form h3 { font-size: 20px; color: var(--brown-dark); margin-bottom: 15px; }

.star-rating { margin-bottom: 15px; }
.star-rating span { display: block; margin-bottom: 5px; font-size: 13px; color: var(--text-muted); }
.stars { display: flex; gap: 4px; direction: ltr; }
.star { background: none; border: none; font-size: 24px; color: var(--border); cursor: pointer; transition: color 0.2s; }
.star:hover, .star.active { color: var(--gold); }

.review-form textarea,
.review-form input {
    width: 100%;
    font-family: var(--font-body);
    font-size: 15px;
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    background: var(--white);
    color: var(--text);
    transition: border-color 0.3s;
}

.review-form textarea:focus,
.review-form input:focus { outline: none; border-color: var(--gold); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.related-products { padding: 40px 0 60px; background: var(--cream); }
.related-products .products-grid { grid-template-columns: repeat(3, 1fr); }

/* ========================================
   About Page
   ======================================== */

.about-hero {
    background: linear-gradient(160deg, var(--brown-dark) 0%, var(--footer-bg) 100%);
    text-align: center;
    padding: 100px 20px 70px;
}

.about-hero h1 {
    font-family: var(--font-heading);
    font-size: 44px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 10px;
}

.about-tagline { font-size: 20px; color: #F8F4FC; opacity: 0.92; }

.about-page { padding: 60px 0; }

.about-block { max-width: 800px; margin: 0 auto 40px; text-align: center; }
.about-block-icon { font-size: 36px; margin-bottom: 10px; }
.about-block h2 { font-family: var(--font-heading); font-size: 28px; font-weight: 700; color: var(--brown-dark); margin-bottom: 15px; }
.about-block p { font-size: 17px; line-height: 1.9; color: var(--text); margin-bottom: 12px; }

.about-block.highlight {
    background: var(--cream);
    border-radius: var(--radius);
    padding: 40px 35px;
    border: 1px solid var(--border-light);
}

.about-block.cta-block {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px 35px;
    border: 1px solid var(--border-light);
}

.about-heart { font-size: 19px; font-weight: 600; color: var(--brown-dark); margin-bottom: 20px; }

.about-images-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 40px 0; }
.about-img-item { border-radius: var(--radius); overflow: hidden; aspect-ratio: 1; }
.about-img-item img { width: 100%; height: 100%; object-fit: cover; }

.about-checklist { display: flex; flex-direction: column; gap: 12px; text-align: right; max-width: 400px; margin: 0 auto; }
.check-item { display: flex; align-items: center; gap: 12px; font-size: 17px; font-weight: 600; color: var(--brown-dark); }
.check-icon { color: var(--gold-dark); font-size: 20px; flex-shrink: 0; }

/* ========================================
   Contact Page
   ======================================== */

.contact-page { padding: 40px 0 60px; }
.contact-subtitle { text-align: center; font-size: 17px; color: var(--text-muted); margin-top: -25px; margin-bottom: 40px; }

.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: start; }

.contact-form-wrap { background: var(--white); border-radius: var(--radius); padding: 36px; border: 1px solid var(--border-light); }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 14px; font-weight: 700; color: var(--brown-dark); margin-bottom: 6px; }

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    font-family: var(--font-body);
    font-size: 15px;
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--cream-light);
    color: var(--text);
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--gold); background: var(--white); }

.btn-full { width: 100%; padding: 14px; }

.form-success { margin-top: 15px; padding: 15px; background: #eaf7ec; border: 1px solid #a3d9a5; border-radius: var(--radius-sm); color: #2d7738; font-weight: 600; text-align: center; }

.contact-info-wrap { display: flex; flex-direction: column; gap: 20px; }
.contact-info-card { background: var(--white); border-radius: var(--radius); padding: 30px; border: 1px solid var(--border-light); }
.contact-info-item { display: flex; align-items: center; gap: 15px; padding: 14px 0; border-bottom: 1px solid var(--border-light); }
.contact-info-item:last-child { border-bottom: none; }
.contact-icon { font-size: 28px; flex-shrink: 0; }
.contact-info-item h3 { font-size: 14px; font-weight: 700; color: var(--brown-dark); margin-bottom: 3px; }
.contact-info-item p { font-size: 14px; color: var(--text-muted); }

.contact-social-card { background: var(--white); border-radius: var(--radius); padding: 25px; border: 1px solid var(--border-light); text-align: center; }
.contact-social-card h3 { font-size: 17px; font-weight: 700; color: var(--brown-dark); margin-bottom: 15px; }
.contact-social-links { display: flex; justify-content: center; gap: 12px; }
.social-link { display: flex; align-items: center; gap: 8px; padding: 10px 18px; border-radius: 25px; background: var(--cream); font-size: 13px; font-weight: 700; color: var(--brown-dark); transition: all 0.3s; }
.social-link:hover { background: var(--gold); color: var(--white); }
.social-icon-lg { width: 28px; height: 28px; border-radius: 50%; background: var(--brown-dark); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; }

/* ========================================
   Cart Drawer
   ======================================== */

.cart-drawer { display: none; position: fixed; inset: 0; z-index: 1000; }
.cart-drawer.open { display: block; }
.cart-drawer-overlay { position: absolute; inset: 0; background: rgba(0, 0, 0, 0.45); animation: fadeIn 0.2s; }
.cart-drawer-panel { position: absolute; top: 0; right: 0; width: 400px; max-width: 92vw; height: 100%; background: var(--white); display: flex; flex-direction: column; box-shadow: -4px 0 30px rgba(0, 0, 0, 0.12); animation: slideIn 0.3s; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideIn { from { transform: translateX(100%); } to { transform: translateX(0); } }

.cart-drawer-header { display: flex; justify-content: space-between; align-items: center; padding: 22px 28px; border-bottom: 1px solid var(--border-light); }
.cart-drawer-header h3 { font-family: var(--font-heading); font-size: 20px; font-weight: 700; color: var(--brown-dark); }
.cart-drawer-close { background: none; border: none; font-size: 28px; color: var(--text-muted); cursor: pointer; line-height: 1; }
.cart-drawer-close:hover { color: var(--brown-dark); }

.cart-drawer-items { flex: 1; overflow-y: auto; padding: 16px 28px; }
.cart-empty-msg { text-align: center; color: var(--text-muted); font-size: 16px; padding: 40px 0; }

.cart-drawer-item { display: flex; justify-content: space-between; align-items: center; padding: 16px 0; border-bottom: 1px solid var(--border-light); }
.cart-item-name { font-size: 15px; font-weight: 700; color: var(--brown-dark); margin-bottom: 3px; }
.cart-item-size { font-size: 12px; color: var(--text-muted); margin-bottom: 3px; }
.cart-item-qty-price { font-size: 13px; color: var(--text-muted); }
.cart-item-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.cart-item-total { font-size: 16px; font-weight: 800; color: var(--gold-dark); }
.cart-item-remove { background: none; border: none; font-size: 20px; color: var(--danger); cursor: pointer; opacity: 0.5; transition: opacity 0.2s; }
.cart-item-remove:hover { opacity: 1; }

.cart-drawer-footer { padding: 22px 28px; border-top: 1px solid var(--border-light); background: var(--cream-light); }
.cart-drawer-total { display: flex; justify-content: space-between; align-items: center; font-size: 17px; font-weight: 700; color: var(--brown-dark); margin-bottom: 16px; }
.cart-drawer-total-price { font-size: 22px; font-weight: 800; color: var(--gold-dark); }
.cart-checkout-btn { margin-bottom: 10px; }
.cart-clear-btn { display: block; width: 100%; padding: 8px; background: none; border: 1px solid var(--border); border-radius: var(--radius-sm); font-family: var(--font-body); font-size: 13px; color: var(--text-muted); cursor: pointer; transition: all 0.2s; }
.cart-clear-btn:hover { border-color: var(--danger); color: var(--danger); }

/* ========================================
   Responsive
   ======================================== */

@media (max-width: 1024px) {
    .products-grid { grid-template-columns: repeat(3, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-content { gap: 40px; }
    .hero h1 { font-size: 42px; }
    .footer-inner { grid-template-columns: 1.5fr 1fr 1fr; }
    .footer-inner .footer-col:last-child { display: none; }
    .categories-grid-large { gap: 10px; }
    .categories-grid-large .category-img { max-height: 140px; }
    .category-label { font-size: 13px; padding: 10px 8px; }
}

@media (max-width: 768px) {
    .mobile-menu-btn { display: flex; }
    .announcement-bar { font-size: 11px; padding: 6px 0; }

    .nav-list {
        display: none;
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        background: var(--white);
        flex-direction: column;
        padding: 16px 24px;
        gap: 10px;
        box-shadow: var(--shadow-lg);
        border-top: 1px solid var(--border-light);
    }

    .header-solid .nav-list { background: #6C5A7A; }
    .nav-list.open { display: flex; }

    /* ---- Hero on mobile ---- */
    .hero {
        min-height: auto;
        padding: 0;
        overflow: hidden;
        background-size: cover;
        background-position: center;
    }
    .hero-content {
        grid-template-columns: 1fr !important;
        padding: 40px 0 36px;
        text-align: center;
        gap: 0;
    }
    .hero-text { text-align: center; }
    .hero-images { display: none !important; }
    .hero h1 { font-size: 26px; line-height: 1.3; margin-bottom: 6px; }
    .hero-subtitle { font-size: 14px; margin-bottom: 12px; }
    .hero-badges { gap: 6px; justify-content: center; flex-direction: row; flex-wrap: wrap; align-items: center; margin-bottom: 14px; }
    .hero-badge { font-size: 11px; padding: 4px 10px; gap: 4px; }
    .hero-badge svg { width: 12px; height: 12px; }
    .hero-eyebrow { font-size: 10px; letter-spacing: 2px; margin-bottom: 8px; }
    .btn-hero { padding: 11px 28px; font-size: 14px; }

    /* Kill all hero animations on mobile */
    .hero-eyebrow, .hero h1, .hero-subtitle, .hero-badges, .btn-hero, .hero-images {
        opacity: 1 !important;
        animation: none !important;
        transform: none !important;
    }

    .hero-glow { display: none; }
    .hero-bg-pattern { display: none; }

    /* ---- Trust strip — compact 2x2 grid ---- */
    .trust-strip { padding: 12px 0; }
    .trust-inner { flex-wrap: wrap; gap: 6px 10px; justify-content: center; }
    .trust-item { flex: 0 0 calc(50% - 6px); gap: 6px; justify-content: flex-start; }
    .trust-item svg { width: 18px; height: 18px; }
    .trust-item strong { font-size: 11px; }
    .trust-item span { font-size: 10px; }

    /* ---- Featured products — compact grid ---- */
    .featured { padding: 36px 0; }
    .section-header { margin-bottom: 18px; }
    .section-tag { font-size: 10px; margin-bottom: 4px; }
    .section-title { font-size: 22px; margin-bottom: 4px; }
    .section-header p { font-size: 13px; }
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .product-card { border-radius: 10px; }
    .product-info { padding: 10px; }
    .product-info .product-category { font-size: 10px; margin-bottom: 2px; }
    .product-info h3 { font-size: 13px; margin-bottom: 4px; }
    .product-info .product-price { font-size: 14px; }
    .product-badge { top: 8px; right: 8px; font-size: 9px; padding: 3px 8px; }
    .quick-view { font-size: 11px; padding: 6px 14px; }
    .section-cta { margin-top: 18px; }
    .section-cta .btn-outline { font-size: 13px; padding: 10px 24px; }

    /* ---- Testimonials — compact ---- */
    .testimonials { padding: 36px 0; }
    .testimonials-grid { grid-template-columns: 1fr; gap: 10px; }
    .testimonial-card { padding: 16px; border-radius: 10px; }
    .testimonial-stars { font-size: 14px; letter-spacing: 1px; margin-bottom: 8px; }
    .testimonial-card p { font-size: 13px; line-height: 1.6; margin-bottom: 10px; }
    .testimonial-author strong { font-size: 13px; }
    .testimonial-author span { font-size: 11px; }

    /* ---- Story / About section — compact ---- */
    .about-section { padding: 36px 0; }
    .story-content { grid-template-columns: 1fr; gap: 20px; }
    .story-text p { font-size: 14px; line-height: 1.6; margin-bottom: 10px; }
    .story-images { flex-direction: row; }

    /* ---- Newsletter — compact ---- */
    .newsletter { padding: 30px 0; }
    .newsletter-inner { flex-direction: column; text-align: center; gap: 14px; }
    .newsletter-text h3 { font-size: 18px; }
    .newsletter-text p { font-size: 13px; }
    .newsletter-form { max-width: 100%; }
    .nl-fields { flex-direction: column; }

    /* ---- Footer — compact ---- */
    .footer { padding-top: 30px; }
    .footer-inner { grid-template-columns: 1fr; gap: 20px; text-align: center; }
    .footer-inner .footer-col:last-child { display: block; }
    .social-icons { justify-content: center; }
    .footer-col h4 { font-size: 15px; margin-bottom: 8px; }
    .footer-col li { margin-bottom: 4px; }
    .footer-col a, .footer-col p { font-size: 13px; }

    /* ---- Inner pages ---- */
    .product-detail-inner { grid-template-columns: 1fr; gap: 24px; }
    .product-gallery-nav { grid-template-columns: 1fr; }
    .gallery-scroll-btn { display: none; }
    .add-to-cart { flex-direction: column; }
    .product-meta { flex-direction: column; gap: 8px; }
    .form-row { grid-template-columns: 1fr; }
    .related-products .products-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .contact-grid { grid-template-columns: 1fr; }
    .about-hero h1 { font-size: 28px; }
    .about-images-row { grid-template-columns: repeat(2, 1fr); }
    .contact-social-links { flex-direction: column; align-items: center; }
    .categories-grid-large { grid-template-columns: repeat(5, 1fr); gap: 6px; }
    .categories-grid-large .category-img { max-height: 100px; }
    .category-label { font-size: 10px; padding: 6px 4px; }
    .breadcrumb { padding: 10px 0; font-size: 12px; }

    /* WhatsApp & accessibility buttons */
    .whatsapp-float {
        bottom: 20px !important;
        right: 20px !important;
        left: auto !important;
        width: 48px !important;
        height: 48px !important;
        z-index: 9999 !important;
    }
    .a11y-toggle {
        bottom: 76px !important;
        right: 20px !important;
        left: auto !important;
        z-index: 9999 !important;
    }
    .back-to-top {
        bottom: 132px !important;
        right: 20px !important;
        left: auto !important;
    }
}

@media (max-width: 480px) {
    .container { padding: 0 14px; }
    .hero h1 { font-size: 22px; }
    .hero-content { padding: 32px 0 28px; }
    .hero-subtitle { font-size: 13px; }
    .btn-hero { padding: 10px 24px; font-size: 13px; }

    .section-title { font-size: 20px; }
    .section-header { margin-bottom: 14px; }
    .featured { padding: 28px 0; }
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .product-info { padding: 8px; }
    .product-info h3 { font-size: 12px; }
    .product-info .product-price { font-size: 13px; }

    .testimonials { padding: 28px 0; }
    .testimonial-card { padding: 14px; }
    .testimonial-card p { font-size: 12px; }

    .about-section { padding: 28px 0; }
    .story-text p { font-size: 13px; }
    .story-images { flex-direction: column; }

    .related-products .products-grid { grid-template-columns: repeat(2, 1fr); }
    .categories-grid-large { grid-template-columns: repeat(3, 1fr); }
    .categories-grid-large .category-img { max-height: 90px; }
    .about-images-row { grid-template-columns: 1fr; }

    .trust-strip { padding: 10px 0; }
    .trust-item svg { width: 16px; height: 16px; }
    .trust-item strong { font-size: 10px; }
    .trust-item span { font-size: 9px; }

    .newsletter { padding: 24px 0; }
    .newsletter-text h3 { font-size: 17px; }
    .footer { padding-top: 24px; }
    .announcement-bar { font-size: 10px; padding: 5px 0; }
    .header-inner { height: 52px; }
    .logo-text { font-size: 17px; }
    .logo-img { height: 40px; }
    .footer-logo-img { height: 50px; }

    /* Scroll reveal — disable on mobile, show everything */
    .reveal-section .section-header,
    .reveal-section .section-cta,
    .reveal-item {
        opacity: 1 !important;
        transform: none !important;
    }
}
