/* ==========================================================================
   Plum & Peach — main.css
   Ported from the Plum & Peach homepage design.
   Palette: peach/coral primary + plum accent + navy + cream.
   ========================================================================== */

:root {
    /* Peach / orange — primary brand colour (from the logo) */
    --coral: #FC814A;
    --coral-dark: #E8692E;
    /* Plum — secondary / action colour (from the logo) */
    --plum: #5E124D;
    --plum-dark: #420D36;
    /* Neutrals — warm off-whites to harmonise with the orange */
    --cream: #FFF6F0;
    --cream-dark: #FFEEE4;
    --navy: #1E3A5F;
    --charcoal: #2D2D2D;
    --grey: #6B6B6B;
    --light-grey: #F5F5F5;
    --white: #FFFFFF;
    --shadow: 0 4px 20px rgba(0,0,0,0.06);
    --shadow-hover: 0 8px 30px rgba(0,0,0,0.12);
    --radius: 16px;
    --radius-sm: 12px;
    --radius-lg: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Inter', sans-serif;
    color: var(--charcoal);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }

.pp-container,
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Skip link (accessibility) */
.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    background: var(--charcoal);
    color: #fff;
    padding: 10px 16px;
    z-index: 3000;
    border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ===== Announcement Bar ===== */
.announcement-bar {
    background: var(--coral);
    color: var(--white);
    padding: 10px 0;
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.announcement-bar .marquee {
    display: inline-flex;
    gap: 40px;
    animation: marquee 20s linear infinite;
    white-space: nowrap;
}
.announcement-bar:hover .marquee { animation-play-state: paused; }
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.announcement-bar span { display: inline-flex; align-items: center; gap: 8px; }

/* ===== Header ===== */
.header {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
}
.header.scrolled { box-shadow: var(--shadow); }
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}
.logo {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--coral);
    letter-spacing: -0.5px;
}
.logo span { color: var(--plum); }
.logo img { max-height: 48px; width: auto; }
.logo-img { display: inline-flex; align-items: center; line-height: 0; }
.logo-img img { max-height: 52px; width: auto; display: block; }

.nav-desktop { display: flex; gap: 32px; align-items: center; }
.nav-desktop a,
.nav-desktop li > a {
    font-size: 14px;
    font-weight: 500;
    color: var(--charcoal);
    transition: var(--transition);
    position: relative;
}
.nav-desktop a:hover { color: var(--coral); }
.nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--coral);
    transition: var(--transition);
}
.nav-desktop a:hover::after { width: 100%; }

/* WP menu lists reset inside the nav */
.nav-desktop ul { list-style: none; display: flex; gap: 32px; align-items: center; margin: 0; padding: 0; }
.nav-desktop .sub-menu { display: none; }

.header-actions { display: flex; align-items: center; gap: 20px; }
.icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: var(--transition);
    position: relative;
    color: inherit;
    display: inline-flex;
}
.icon-btn:hover { background: var(--cream); }
.icon-btn svg {
    width: 22px; height: 22px;
    stroke: var(--charcoal);
    fill: none;
    stroke-width: 2;
}
.cart-count {
    position: absolute;
    top: 2px; right: 2px;
    background: var(--coral);
    color: white;
    font-size: 10px;
    font-weight: 700;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mobile-menu-btn { display: none; background: none; border: none; cursor: pointer; }

/* ===== Hero ===== */
.hero {
    background: linear-gradient(135deg, var(--cream) 0%, #FFE4D4 50%, var(--cream-dark) 100%);
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(252,129,74,0.18) 0%, transparent 70%);
    border-radius: 50%;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -50px; left: -50px;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(142,69,133,0.12) 0%, transparent 70%);
    border-radius: 50%;
}
.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hero-content h1 { font-size: 56px; margin-bottom: 20px; color: var(--charcoal); }
.hero-content h1 em { color: var(--coral); font-style: normal; }
.hero-content p {
    font-size: 18px;
    color: var(--grey);
    margin-bottom: 32px;
    max-width: 480px;
    line-height: 1.7;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius-lg);
    font-size: 15px;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    line-height: 1.2;
}
.btn-primary {
    background: var(--plum);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(94,18,77,0.35);
}
.btn-primary:hover {
    background: var(--plum-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(94,18,77,0.45);
    color: var(--white);
}
.btn-secondary {
    background: var(--white);
    color: var(--charcoal);
    border: 2px solid var(--charcoal);
}
.btn-secondary:hover {
    background: var(--charcoal);
    color: var(--white);
    transform: translateY(-2px);
}
.btn-plum {
    background: var(--plum);
    color: #fff;
    box-shadow: 0 4px 15px rgba(94,18,77,0.35);
}
.btn-plum:hover { background: var(--plum-dark); color: #fff; transform: translateY(-2px); }

.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; }
.hero-image {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1;
    background: linear-gradient(135deg, #FFE4D4, #FFF0E6);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: var(--shadow-hover);
    overflow: hidden;
}
.hero-image img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-lg); }
.floating-badge {
    position: absolute;
    background: var(--white);
    padding: 12px 20px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: float 3s ease-in-out infinite;
}
.floating-badge.b1 { top: 20px; right: -20px; animation-delay: 0s; }
.floating-badge.b2 { bottom: 40px; left: -30px; animation-delay: 1.5s; }
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ===== Trust Bar ===== */
.trust-bar { background: var(--light-grey); padding: 24px 0; border-bottom: 1px solid rgba(0,0,0,0.05); }
.trust-items { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.trust-item {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    font-size: 14px; font-weight: 500; color: var(--charcoal);
}
.trust-icon {
    width: 28px; height: 28px;
    background: var(--coral);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 14px;
}

/* ===== Quiz / Feature CTA ===== */
.quiz-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #F3E8F0 0%, #FFEEE4 100%);
    position: relative;
    overflow: hidden;
}
.quiz-inner { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center; }
.quiz-content h2 { font-size: 42px; margin-bottom: 16px; }
.quiz-content p { font-size: 18px; color: var(--grey); margin-bottom: 32px; max-width: 440px; }
.quiz-visual { display: flex; justify-content: center; align-items: center; }
.mascot-card {
    width: 320px; height: 320px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-hover);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
}
.mascot-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 8px;
    background: linear-gradient(90deg, var(--coral), var(--plum));
}
.mascot-emoji { font-size: 120px; line-height: 1; margin-bottom: 16px; animation: bounce 2s ease-in-out infinite; }
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.mascot-card p { font-family: 'Playfair Display', serif; font-size: 20px; color: var(--plum); font-weight: 600; text-align: center; padding: 0 16px; }

/* ===== Section Header ===== */
.section-header { text-align: center; margin-bottom: 48px; }
.section-header h2 { font-size: 36px; margin-bottom: 8px; }
.section-header p { color: var(--grey); font-size: 16px; }

/* ===== Products ===== */
.products-section { padding: 100px 0; background: var(--white); }
.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.product-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.06);
    position: relative;
}
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); border-color: transparent; }
.product-image {
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--cream), #FFF0E6);
    position: relative;
    overflow: hidden;
}
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.product-card:hover .product-image img { transform: scale(1.05); }
.product-badge {
    position: absolute; top: 12px; left: 12px;
    background: var(--coral); color: white;
    font-size: 11px; font-weight: 700;
    padding: 4px 10px; border-radius: 20px;
    text-transform: uppercase; letter-spacing: 0.5px;
    z-index: 2;
}
.product-badge.new { background: var(--navy); }
.product-badge.viral { background: var(--plum); }
.product-badge.sale { background: var(--coral-dark); }
.quick-actions {
    position: absolute; bottom: -50px; left: 0; right: 0;
    display: flex; gap: 8px; padding: 12px; justify-content: center;
    transition: var(--transition); z-index: 2;
}
.product-card:hover .quick-actions { bottom: 12px; }
.quick-btn {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--white); border: none;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: var(--transition); text-decoration: none; color: var(--charcoal);
}
.quick-btn:hover { background: var(--coral); color: white; transform: scale(1.1); }
.product-info { padding: 16px; }
.product-brand { font-size: 12px; font-weight: 600; color: var(--grey); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px; }
.product-name { font-size: 15px; font-weight: 500; margin-bottom: 8px; line-height: 1.4; }
.product-name a { color: inherit; }
.product-name a:hover { color: var(--coral); }
.product-meta { display: flex; align-items: center; justify-content: space-between; }
.product-price { font-size: 16px; font-weight: 700; color: var(--charcoal); }
.product-price del { color: var(--grey); font-weight: 400; font-size: 14px; margin-right: 6px; }
.product-price ins { text-decoration: none; }
.product-rating { display: flex; align-items: center; gap: 4px; font-size: 13px; color: var(--grey); }
.stars { color: #FFB800; }

/* ===== Categories ===== */
.categories-section { padding: 100px 0; background: var(--cream); }
.categories-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; }
.category-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px 16px;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    display: block;
    color: inherit;
}
.category-card:hover { transform: translateY(-4px); border-color: var(--coral); box-shadow: var(--shadow); }
.category-icon {
    width: 64px; height: 64px;
    background: linear-gradient(135deg, var(--cream), #FFE4D4);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px; font-size: 28px;
    overflow: hidden;
}
.category-icon img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.category-name { font-size: 14px; font-weight: 600; }

/* ===== Brand Spotlight ===== */
.spotlight-section { padding: 100px 0; background: linear-gradient(135deg, #E8F4FF 0%, #F0F8FF 100%); }
.spotlight-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.spotlight-content h2 { font-size: 42px; margin-bottom: 16px; }
.spotlight-content .brand-name { font-size: 14px; font-weight: 700; color: var(--plum); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 8px; }
.spotlight-content p { font-size: 18px; color: var(--grey); margin-bottom: 32px; line-height: 1.7; }
.spotlight-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-hover);
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, #E8F4FF, #D4E8FF);
    display: flex; align-items: center; justify-content: center;
}
.spotlight-image img { width: 100%; height: 100%; object-fit: cover; }

/* ===== Reviews ===== */
.reviews-section { padding: 100px 0; background: var(--white); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card { background: var(--cream); border-radius: var(--radius); padding: 32px; transition: var(--transition); }
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.review-stars { color: #FFB800; font-size: 18px; margin-bottom: 16px; }
.review-text { font-size: 15px; line-height: 1.7; margin-bottom: 20px; color: var(--charcoal); }
.review-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
    width: 40px; height: 40px; border-radius: 50%;
    background: linear-gradient(135deg, var(--coral), var(--plum));
    display: flex; align-items: center; justify-content: center;
    color: white; font-weight: 600; font-size: 14px;
}
.author-info h4 { font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 600; }
.author-info span { font-size: 13px; color: var(--grey); }

/* ===== Loyalty ===== */
.loyalty-section { padding: 100px 0; background: linear-gradient(135deg, var(--cream) 0%, #FFE4D4 100%); text-align: center; }
.loyalty-section h2 { font-size: 42px; margin-bottom: 16px; }
.loyalty-section > .container > p { font-size: 18px; color: var(--grey); margin-bottom: 48px; }
.loyalty-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; max-width: 800px; margin: 0 auto 40px; }
.loyalty-step { background: var(--white); border-radius: var(--radius); padding: 40px 24px; box-shadow: var(--shadow); transition: var(--transition); }
.loyalty-step:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.step-icon {
    width: 72px; height: 72px;
    background: linear-gradient(135deg, var(--coral), var(--plum));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px; font-size: 32px;
}
.step-title { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.step-desc { font-size: 14px; color: var(--grey); }

/* ===== Newsletter ===== */
.newsletter-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--coral) 0%, var(--plum) 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.newsletter-section::before {
    content: '';
    position: absolute; top: -100px; left: -100px;
    width: 300px; height: 300px;
    background: rgba(255,255,255,0.1); border-radius: 50%;
}
.newsletter-section::after {
    content: '';
    position: absolute; bottom: -80px; right: -80px;
    width: 250px; height: 250px;
    background: rgba(255,255,255,0.08); border-radius: 50%;
}
.newsletter-section h2 { font-size: 42px; margin-bottom: 12px; position: relative; z-index: 1; }
.newsletter-section p { font-size: 18px; margin-bottom: 32px; opacity: 0.95; position: relative; z-index: 1; }
.newsletter-form { display: flex; gap: 12px; max-width: 500px; margin: 0 auto; position: relative; z-index: 1; }
.newsletter-form input {
    flex: 1; padding: 16px 24px; border-radius: var(--radius-lg);
    border: none; font-size: 15px; outline: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.newsletter-form input::placeholder { color: var(--grey); }
.newsletter-form .btn { background: var(--navy); color: white; box-shadow: 0 4px 15px rgba(0,0,0,0.2); }
.newsletter-form .btn:hover { background: #152a45; transform: translateY(-2px); }
.newsletter-note { margin-top: 16px; font-size: 14px; opacity: 0.9; }

/* ===== Footer ===== */
.footer { background: var(--navy); color: var(--white); padding: 80px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand .logo { color: var(--coral); margin-bottom: 16px; display: inline-block; }
.footer-brand .logo span { color: #fff; }
.footer-brand p { font-size: 14px; opacity: 0.8; line-height: 1.7; margin-bottom: 20px; }
.social-links { display: flex; gap: 12px; }
.social-links a {
    width: 40px; height: 40px; border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center;
    transition: var(--transition);
}
.social-links a:hover { background: var(--coral); transform: translateY(-2px); }
.footer-column h4 { font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px; }
.footer-column ul { list-style: none; }
.footer-column li { margin-bottom: 12px; }
.footer-column a { font-size: 14px; opacity: 0.8; transition: var(--transition); }
.footer-column a:hover { opacity: 1; color: var(--coral); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 16px;
}
.footer-bottom p { font-size: 13px; opacity: 0.7; }
.payment-icons { display: flex; gap: 12px; }
.payment-icon {
    width: 40px; height: 26px; background: rgba(255,255,255,0.1);
    border-radius: 4px; display: flex; align-items: center; justify-content: center;
    font-size: 10px; opacity: 0.8;
}

/* ===== Mobile Menu ===== */
.mobile-menu {
    display: none; position: fixed; inset: 0;
    background: var(--white); z-index: 2000;
    padding: 80px 24px 24px;
    flex-direction: column; gap: 24px;
    overflow-y: auto;
}
.mobile-menu.active { display: flex; }
.mobile-menu a {
    font-size: 24px; font-weight: 600; padding: 12px 0;
    border-bottom: 1px solid var(--light-grey);
}
.mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 0; margin: 0; padding: 0; }
.mobile-menu-close {
    position: absolute; top: 24px; right: 24px;
    background: none; border: none; font-size: 32px; cursor: pointer;
}

/* ===== Generic page / post / WP content ===== */
.page-wrap { padding: 60px 0 80px; }
.page-header-block { text-align: center; margin-bottom: 40px; }
.page-header-block h1 { font-size: 42px; }
.entry-content { max-width: 760px; margin: 0 auto; font-size: 17px; line-height: 1.8; }
.entry-content h2 { font-size: 30px; margin: 36px 0 16px; }
.entry-content h3 { font-size: 23px; margin: 28px 0 12px; }
.entry-content p { margin-bottom: 20px; }
.entry-content ul, .entry-content ol { margin: 0 0 20px 24px; }
.entry-content li { margin-bottom: 8px; }
.entry-content img { border-radius: var(--radius); margin: 24px 0; }
.entry-content a { color: var(--plum); text-decoration: underline; }
.entry-content blockquote {
    border-left: 4px solid var(--coral);
    padding: 8px 0 8px 24px; margin: 24px 0;
    font-style: italic; color: var(--grey);
}

.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.post-card { background: var(--white); border-radius: var(--radius); overflow: hidden; border: 1px solid rgba(0,0,0,0.06); transition: var(--transition); }
.post-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.post-card .thumb { aspect-ratio: 16/10; overflow: hidden; background: var(--cream-dark); }
.post-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.post-card .post-body { padding: 20px; }
.post-card h3 { font-size: 19px; margin-bottom: 8px; }
.post-card .post-meta { font-size: 13px; color: var(--grey); margin-bottom: 10px; }
.post-card .excerpt { font-size: 14px; color: var(--grey); line-height: 1.6; }

.pp-pagination { display: flex; justify-content: center; gap: 8px; margin-top: 48px; flex-wrap: wrap; }
.pp-pagination .page-numbers {
    padding: 8px 14px; border-radius: 10px; background: var(--cream);
    color: var(--charcoal); font-weight: 600; font-size: 14px;
}
.pp-pagination .page-numbers.current { background: var(--coral); color: #fff; }
.pp-pagination a.page-numbers:hover { background: var(--coral-dark); color: #fff; }

/* 404 */
.error-404 { text-align: center; padding: 100px 0; }
.error-404 .big { font-size: 96px; color: var(--coral); font-family: 'Playfair Display', serif; }

/* ===== Scroll animations ===== */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; text-align: center; }
    .hero-content p { margin: 0 auto 32px; }
    .hero-buttons { justify-content: center; }
    .hero-visual { order: -1; }
    .quiz-inner, .spotlight-inner { grid-template-columns: 1fr; text-align: center; }
    .quiz-content p, .spotlight-content p { margin: 0 auto 32px; }
    .quiz-visual, .spotlight-image { order: -1; }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .categories-grid { grid-template-columns: repeat(3, 1fr); }
    .reviews-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .post-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav-desktop { display: none; }
    .mobile-menu-btn { display: block; }
    .hero-content h1 { font-size: 36px; }
    .trust-items { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .trust-item { font-size: 12px; }
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .categories-grid { grid-template-columns: repeat(2, 1fr); }
    .loyalty-steps { grid-template-columns: 1fr; }
    .newsletter-form { flex-direction: column; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .post-grid { grid-template-columns: 1fr; }
    .quiz-content h2, .spotlight-content h2, .loyalty-section h2, .newsletter-section h2 { font-size: 28px; }
}
