/*
Theme Name: SofaPack High-End Furniture
Theme URI: https://sofapack.com
Author: Antigravity
Description: Premium furniture e-commerce theme converted from HTML.
Version: 1.0
Text Domain: sofapack
*/
/* SofaPack - Main Stylesheet */
/* Design System Variables */
:root {
    /* Colors */
    --color-primary: #293b2b;
    --color-primary-light: #3a5a3e;
    --color-primary-dark: #1e2b1f;
    --color-secondary: #606d61;
    --color-accent: #c75050;
    --color-accent-dark: #a63f3f;
    --color-background: #ffffff;
    --color-background-alt: #f8f9f8;
    --color-text: #353635;
    --color-text-light: #6b6b6b;
    --color-text-muted: #999999;
    --color-border: #e5e5e5;
    --color-gold: #d4a853;

    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;

    /* Container */
    --container-max: 1400px;
    --container-padding: 1.5rem;

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 400ms ease;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* Reset & Base */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-background);
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: inherit;
    text-decoration: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

ul,
ol {
    list-style: none;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.2;
    color: var(--color-text);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
    font-size: 1.25rem;
}

/* Container */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ========================================
   ANNOUNCEMENT BAR
   ======================================== */
.announcement-bar {
    background-color: var(--color-primary);
    color: #ffffff;
    padding: 0.75rem 1rem;
    text-align: center;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.announcement-bar a {
    color: #ffffff;
    text-decoration: underline;
    margin-left: 0.5rem;
}

.announcement-bar a:hover {
    opacity: 0.9;
}

/* ========================================
   HEADER / NAVIGATION
   ======================================== */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: var(--color-background);
    border-bottom: 1px solid var(--color-border);
    padding: 1rem 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo img {
    height: 40px;
    width: auto;
}

.logo-text {
    font-family: var(--font-body);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: -0.02em;
}

.nav-main {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-main a {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--color-text);
    transition: color var(--transition-fast);
    position: relative;
}

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

.nav-main a.highlight {
    color: var(--color-accent);
}

.header-icons {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-icons button,
.header-icons a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color var(--transition-fast);
}

.header-icons button:hover,
.header-icons a:hover {
    background-color: var(--color-background-alt);
}

.header-icons svg {
    width: 22px;
    height: 22px;
    stroke: var(--color-text);
}

.cart-count {
    position: relative;
}

/* Cart badge - content set by JavaScript */
.cart-count::before {
    content: none !important;
}

.cart-count::after {
    content: attr(data-count);
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    background-color: var(--color-accent);
    color: #fff;
    font-size: 0.625rem;
    font-weight: 700;
    border-radius: 50%;
    display: none;
    /* Hidden by default, JS enables it */
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.cart-count[data-count]::after {
    display: flex;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--color-text);
    transition: var(--transition-fast);
}

/* ========================================
   MEGA MENU DROPDOWN
   ======================================== */
.nav-item {
    position: relative;
}

.nav-item>a {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--color-text);
    transition: color var(--transition-fast);
    padding: 0.5rem 0;
    position: relative;
}

.nav-item>a:hover {
    color: var(--color-primary);
}

.nav-item>a.highlight {
    color: var(--color-accent);
}

/* Underline that appears under menu item */
.nav-item>a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-text);
    transform: scaleX(0);
    transition: transform var(--transition-fast);
}

.nav-item:hover>a::after,
.nav-item>a.active::after {
    transform: scaleX(1);
}

/* Mega Menu Container */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 900px;
    background: #fff;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
    z-index: 1000;
}

.nav-item:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Mega Menu Grid */
.mega-menu-grid {
    display: grid;
    grid-template-columns: 160px 160px 1fr;
    gap: 2.5rem;
}

/* Mega Menu Column */
.mega-menu-column h4 {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-light);
    margin-bottom: 1rem;
    font-weight: 500;
}

.mega-menu-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-menu-column li {
    margin-bottom: 0.5rem;
}

.mega-menu-column a {
    font-size: 0.9375rem;
    color: var(--color-text);
    transition: color var(--transition-fast);
    display: block;
    padding: 0.25rem 0;
}

.mega-menu-column a:hover {
    color: var(--color-primary);
}

/* Mega Menu Featured Products */
.mega-menu-featured {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.mega-menu-product {
    text-align: center;
}

.mega-menu-product img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 0.75rem;
    transition: transform var(--transition-normal);
}

.mega-menu-product:hover img {
    transform: scale(1.03);
}

.mega-menu-product span {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-text);
}

/* Furniture Mega Menu - Image Grid Style */
.furniture-menu {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding: 0.5rem;
}

.furniture-menu-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.furniture-menu-item img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.furniture-menu-item:hover img {
    transform: scale(1.05);
}

.furniture-menu-item span {
    display: block;
    margin-top: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text);
    text-align: left;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    position: relative;
    height: 85vh;
    min-height: 600px;
    max-height: 900px;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 50%, transparent 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--spacing-2xl) 0;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 400;
    font-style: italic;
    color: #ffffff;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.hero-discount {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 400;
    font-style: italic;
    color: var(--color-accent);
}

.hero-cta {
    margin-top: var(--spacing-lg);
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 0;
    transition: all var(--transition-base);
    cursor: pointer;
}

.btn-primary {
    background-color: var(--color-primary);
    color: #ffffff;
    border: 2px solid var(--color-primary);
}

.btn-primary:hover {
    background-color: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn-secondary:hover {
    background-color: var(--color-primary);
    color: #ffffff;
}

.btn-white {
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--color-text);
    border: none;
}

.btn-white:hover {
    background-color: #ffffff;
}

/* ========================================
   SECTION STYLES
   ======================================== */
.section {
    padding: var(--spacing-3xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.section-title {
    margin-bottom: var(--spacing-sm);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
   PRODUCT GRID
   ======================================== */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
}

.product-card {
    position: relative;
    background: var(--color-background);
    transition: transform var(--transition-base);
}

.product-card:hover {
    transform: translateY(-4px);
}

.product-card-image {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    background-color: var(--color-background-alt);
    margin-bottom: var(--spacing-md);
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.product-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    padding: 0.375rem 0.75rem;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background-color: var(--color-accent);
    color: #ffffff;
}

.product-badge.new {
    background-color: var(--color-primary);
}

.product-card-info {
    padding: 0 0.25rem;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    margin-bottom: 0.5rem;
}

.product-rating .stars {
    display: flex;
    gap: 2px;
    color: var(--color-gold);
}

.product-rating .count {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

.product-title {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--color-text);
    transition: color var(--transition-fast);
}

.product-card:hover .product-title {
    color: var(--color-primary);
}

.product-price {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.product-price .current {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-accent);
}

.product-price .original {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    text-decoration: line-through;
}

.product-colors {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.color-swatch {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1px solid var(--color-border);
    cursor: pointer;
    transition: transform var(--transition-fast);
}

.color-swatch:hover {
    transform: scale(1.2);
}

/* ========================================
   FEATURES SECTION
   ======================================== */
.features {
    background-color: var(--color-background-alt);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
}

.feature-card {
    text-align: center;
    padding: var(--spacing-lg);
    background: var(--color-background);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition-base), transform var(--transition-base);
}

.feature-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--spacing-md);
    background-color: rgba(41, 59, 43, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--color-primary);
}

.feature-title {
    font-family: var(--font-body);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--color-text);
}

.feature-desc {
    font-size: 0.875rem;
    color: var(--color-text-light);
}

/* ========================================
   LIFESTYLE BANNER
   ======================================== */
.lifestyle-banner {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.lifestyle-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lifestyle-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4) 0%, transparent 50%);
}

.lifestyle-banner-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--spacing-2xl);
    color: #ffffff;
    text-align: center;
}

.lifestyle-banner h2 {
    color: #ffffff;
    margin-bottom: var(--spacing-sm);
}

/* ========================================
   REVIEWS SECTION
   ======================================== */
.reviews {
    background-color: var(--color-background-alt);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.review-card {
    background: var(--color-background);
    padding: var(--spacing-lg);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.review-stars {
    display: flex;
    gap: 2px;
    color: var(--color-gold);
    margin-bottom: var(--spacing-sm);
}

.review-text {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--color-text);
    margin-bottom: var(--spacing-md);
}

.review-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--color-secondary);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.125rem;
}

.review-author-info .name {
    font-weight: 600;
    font-size: 0.9375rem;
}

.review-author-info .verified {
    font-size: 0.75rem;
    color: var(--color-secondary);
}

/* ========================================
   NEWSLETTER
   ======================================== */
.newsletter {
    background-color: var(--color-primary);
    color: #ffffff;
    text-align: center;
}

.newsletter h2 {
    color: #ffffff;
}

.newsletter p {
    opacity: 0.9;
    margin-bottom: var(--spacing-lg);
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 0;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem 1.25rem;
    border: none;
    font-size: 1rem;
    outline: none;
}

.newsletter-form button {
    padding: 1rem 2rem;
    background-color: var(--color-text);
    color: #ffffff;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background-color var(--transition-fast);
}

.newsletter-form button:hover {
    background-color: #000;
}

/* ========================================
   FOOTER - Matches atunushome.com
   ======================================== */
.footer {
    background-color: var(--color-primary);
    color: #ffffff;
    padding: 3rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1.5fr;
    gap: 2rem;
}

.footer-col h4 {
    color: #b8b8b8;
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 400;
    margin-bottom: 1rem;
    text-transform: none;
    letter-spacing: 0;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.footer-col ul li {
    margin-bottom: 0;
}

.footer-col ul a {
    font-size: 1rem;
    color: #b8b8b8;
    opacity: 1;
    transition: color var(--transition-fast);
}

.footer-col ul a:hover {
    color: #ffffff;
}

/* Newsletter Column */
.footer-newsletter h4 {
    color: #ffffff;
    font-size: 0.9375rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.footer-newsletter-form {
    display: flex;
    margin-bottom: 1.5rem;
}

.footer-newsletter-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid #555;
    background-color: transparent;
    color: #ffffff;
    font-size: 0.875rem;
}

.footer-newsletter-form input::placeholder {
    color: #888;
}

.footer-newsletter-form button {
    padding: 0.75rem 1.25rem;
    background-color: #555;
    color: #ffffff;
    border: 1px solid #555;
    font-size: 0.75rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color var(--transition-fast);
    white-space: nowrap;
}

.footer-newsletter-form button:hover {
    background-color: #666;
}

/* Social Icons */
.footer-social-section {
    margin-bottom: 1.5rem;
}

.footer-social-section h5 {
    font-size: 0.8125rem;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity var(--transition-fast);
}

.footer-social a:hover {
    opacity: 0.7;
}

.footer-social svg {
    width: 20px;
    height: 20px;
    fill: #ffffff;
}

/* Payment Icons */
.footer-payments h5 {
    font-size: 0.8125rem;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.payment-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.payment-icon {
    width: 42px;
    height: 28px;
    background-color: #ffffff;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.625rem;
    font-weight: 700;
    color: #333;
}

.payment-icon.paypal {
    background: #003087;
    color: #ffffff;
}

.payment-icon.amex {
    background: #006fcf;
    color: #ffffff;
}

.payment-icon.visa {
    background: #1a1f71;
    color: #ffffff;
}

.payment-icon.mastercard {
    background: #eb001b;
    color: #ffffff;
}

.payment-icon.jcb {
    background: #0e4c96;
    color: #ffffff;
}

.payment-icon.gpay {
    background: #ffffff;
    color: #5f6368;
}

.payment-icon.applepay {
    background: #000000;
    color: #ffffff;
}

.payment-icon.venmo {
    background: #008cff;
    color: #ffffff;
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.75rem;
    color: #888;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-main {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        height: 70vh;
        min-height: 500px;
    }

    .lifestyle-banner {
        height: 400px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .newsletter-form {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 2rem;
    }
}

/* =====================================================
   DEALS PAGE STYLES
   ===================================================== */

/* Deals Hero Section */
.deals-hero {
    position: relative;
    height: 450px;
    overflow: hidden;
}

.deals-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.deals-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2));
}

.deals-hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
}

.deals-hero-label {
    font-size: 1.25rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.deals-hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 600;
    line-height: 1.2;
}

.deals-highlight {
    color: #c75050;
}

/* Tiered Savings Section */
.tiered-savings {
    background: linear-gradient(180deg, #f0f5f7 0%, #fff 100%);
    padding: 3rem 0;
}

.savings-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.savings-card {
    background: #fff;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    border-left: 4px solid #c75050;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.savings-amount {
    font-size: 3rem;
    font-weight: 700;
    color: #c75050;
    line-height: 1;
}

.savings-off {
    font-size: 1rem;
    font-weight: 600;
    color: #c75050;
    text-transform: uppercase;
}

.savings-threshold {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin-top: 0.5rem;
}

/* Deals CTA Section */
.deals-cta {
    background: var(--color-primary);
    padding: 4rem 0;
    text-align: center;
}

.deals-cta-content h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 0.75rem;
}

.deals-cta-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.deals-cta-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 0.75rem;
}

.deals-cta-form input {
    flex: 1;
    padding: 0.875rem 1.25rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
}

.deals-cta-form .btn {
    white-space: nowrap;
}

/* Load More Button */
.load-more {
    text-align: center;
    margin-top: 3rem;
}

/* Deals Page Responsive */
@media (max-width: 992px) {
    .savings-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .deals-hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .savings-grid {
        grid-template-columns: 1fr;
    }

    .deals-hero {
        height: 350px;
    }

    .deals-hero-title {
        font-size: 2rem;
    }

    .deals-cta-form {
        flex-direction: column;
    }
}

/* =====================================================
   SUPPORT / FAQ PAGE STYLES
   ===================================================== */

/* Support Hero */
.support-hero {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    padding: 5rem 0;
    text-align: center;
    color: #fff;
}

.support-hero h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 0.75rem;
}

.support-hero p {
    opacity: 0.9;
    margin-bottom: 2rem;
}

.support-search {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    background: #fff;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.support-search input {
    flex: 1;
    border: none;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    outline: none;
}

.support-search button {
    background: var(--color-primary);
    border: none;
    padding: 0 1.5rem;
    color: #fff;
    cursor: pointer;
    transition: background 0.3s ease;
}

.support-search button:hover {
    background: var(--color-primary-dark);
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
}

/* FAQ Tabs */
.faq-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 1rem;
    flex-wrap: wrap;
}

.faq-tab {
    padding: 0.75rem 1.5rem;
    border: none;
    background: none;
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-text-light);
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.faq-tab:hover {
    background: var(--color-background-alt);
    color: var(--color-text);
}

.faq-tab.active {
    background: var(--color-primary);
    color: #fff;
}

/* FAQ Categories */
.faq-category {
    display: none;
}

.faq-category.active {
    display: block;
}

/* FAQ Accordion */
.faq-accordion {
    max-width: 800px;
}

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

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
    border: none;
    background: none;
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-text);
    cursor: pointer;
    text-align: left;
}

.faq-question svg {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.open .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding-bottom: 1.25rem;
}

.faq-answer p {
    color: var(--color-text-light);
    line-height: 1.7;
}

/* Support Contact Section */
.support-contact {
    background: var(--color-background-alt);
    padding: 4rem 0;
    text-align: center;
}

.support-contact h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.support-contact>.container>p {
    color: var(--color-text-light);
    margin-bottom: 2.5rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.contact-card {
    background: #fff;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.contact-card svg {
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.contact-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.contact-card p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.contact-hours {
    display: block;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.btn-outline-sm {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    border-radius: 4px;
    font-size: 0.9rem;
    text-decoration: none;
    margin-top: 0.75rem;
    transition: all 0.3s ease;
}

.btn-outline-sm:hover {
    background: var(--color-primary);
    color: #fff;
}

/* Support Page Responsive */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .support-hero h1 {
        font-size: 2rem;
    }

    .faq-tabs {
        justify-content: center;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* =====================================================
   FINANCING PAGE STYLES
   ===================================================== */

/* Financing Hero */
.financing-hero {
    background: linear-gradient(135deg, #2d4a5e 0%, #1a3040 100%);
    padding: 5rem 0;
    text-align: center;
    color: #fff;
}

.financing-hero h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 0.75rem;
}

.financing-hero p {
    opacity: 0.9;
    font-size: 1.1rem;
}

/* Financing Options Grid */
.financing-options {
    padding: 4rem 0;
    background: var(--color-background-alt);
}

.financing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Financing Card */
.financing-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.financing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.financing-card-header {
    background: var(--color-primary);
    color: #fff;
    padding: 1.5rem;
    position: relative;
}

.financing-badge {
    position: absolute;
    top: 0;
    right: 1rem;
    background: var(--color-accent);
    color: #fff;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 0 0 4px 4px;
}

.financing-card-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.financing-provider {
    opacity: 0.8;
    font-size: 0.9rem;
}

.financing-card-body {
    padding: 1.5rem;
}

.financing-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
}

.financing-feature svg {
    color: var(--color-primary);
    flex-shrink: 0;
}

.financing-example {
    margin-top: 1.5rem;
    padding: 1rem;
    background: var(--color-background-alt);
    border-radius: 8px;
    text-align: center;
}

.example-title {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin-bottom: 0.25rem;
}

.example-payment {
    font-size: 1rem;
    color: var(--color-text);
}

.example-payment span {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
}

/* How It Works */
.financing-how {
    padding: 4rem 0;
}

.financing-how h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
}

.how-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.how-step {
    text-align: center;
}

.how-step-number {
    width: 48px;
    height: 48px;
    background: var(--color-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 auto 1rem;
}

.how-step h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.how-step p {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

/* Payment Calculator */
.payment-calculator {
    padding: 4rem 0;
    background: var(--color-background-alt);
}

.payment-calculator h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    text-align: center;
    margin-bottom: 0.5rem;
}

.calculator-subtitle {
    text-align: center;
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.calculator-card {
    max-width: 500px;
    margin: 0 auto;
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.calculator-input {
    margin-bottom: 1.5rem;
}

.calculator-input label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.input-wrapper {
    display: flex;
    align-items: center;
    border: 2px solid var(--color-border);
    border-radius: 8px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.input-wrapper:focus-within {
    border-color: var(--color-primary);
}

.currency {
    padding: 0.75rem 1rem;
    background: var(--color-background-alt);
    font-weight: 500;
}

.calculator-input input {
    flex: 1;
    border: none;
    padding: 0.75rem;
    font-size: 1.25rem;
    outline: none;
}

.calculator-terms {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.term-btn {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid var(--color-border);
    background: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

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

.term-btn.active {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}

.calculator-result {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    border-radius: 8px;
    color: #fff;
}

.result-label {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 0.25rem;
}

.result-amount {
    font-size: 2rem;
    font-weight: 700;
}

.result-amount .per-period {
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.9;
}

.result-note {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-top: 0.5rem;
}

/* Financing FAQ */
.financing-faq {
    padding: 4rem 0;
}

.financing-faq h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

.financing-faq .faq-accordion {
    max-width: 700px;
    margin: 0 auto;
}

/* Financing CTA */
.financing-cta {
    background: var(--color-primary);
    padding: 4rem 0;
    text-align: center;
    color: #fff;
}

.financing-cta h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.financing-cta p {
    opacity: 0.9;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Financing Page Responsive */
@media (max-width: 992px) {
    .financing-grid {
        grid-template-columns: 1fr;
    }

    .how-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .financing-hero h1 {
        font-size: 2rem;
    }

    .how-grid {
        grid-template-columns: 1fr;
    }

    .calculator-terms {
        flex-direction: column;
    }
}

/* =====================================================
   SHOWROOM PAGE STYLES
   ===================================================== */

/* Showroom Hero */
.showroom-hero {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.showroom-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.showroom-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.showroom-hero-content {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    color: #fff;
}

.showroom-hero-content h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
}

.showroom-hero-content p {
    font-size: 1.25rem;
    opacity: 0.9;
}

/* Location Search */
.location-search {
    background: var(--color-primary);
    padding: 2rem 0;
}

.search-form {
    display: flex;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.search-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
}

.search-form .btn {
    padding: 1rem 2rem;
}

/* Showroom Locations */
.showroom-locations {
    padding: 4rem 0;
}

.showroom-locations h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

/* Location Card */
.location-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    display: flex;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.location-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.location-image {
    width: 45%;
    position: relative;
}

.location-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.location-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--color-primary);
    color: #fff;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 4px;
}

.location-badge.new {
    background: var(--color-accent);
}

.location-info {
    flex: 1;
    padding: 1.5rem;
}

.location-info h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.location-address,
.location-hours,
.location-phone {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.location-address svg,
.location-hours svg,
.location-phone svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--color-primary);
}

.location-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.location-actions .btn {
    padding: 0.6rem 1.25rem;
    font-size: 0.9rem;
}

/* Showroom Experience */
.showroom-experience {
    padding: 4rem 0;
    background: var(--color-background-alt);
}

.showroom-experience h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.experience-card {
    text-align: center;
    background: #fff;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.experience-card svg {
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.experience-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.experience-card p {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

/* Showroom CTA */
.showroom-cta {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    padding: 4rem 0;
    text-align: center;
    color: #fff;
}

.showroom-cta h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.showroom-cta p {
    opacity: 0.9;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Showroom Page Responsive */
@media (max-width: 992px) {
    .locations-grid {
        grid-template-columns: 1fr;
    }

    .location-card {
        flex-direction: column;
    }

    .location-image {
        width: 100%;
        height: 200px;
    }

    .experience-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .showroom-hero-content h1 {
        font-size: 2.25rem;
    }

    .search-form {
        flex-direction: column;
    }

    .experience-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   SIDE CART DRAWER
   ======================================== */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.cart-overlay.open {
    opacity: 1;
    visibility: visible;
}

.side-cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 420px;
    max-width: 100%;
    height: 100vh;
    background: #fff;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 1000;
    display: flex;
    flex-direction: column;
}

.side-cart-drawer.open {
    transform: translateX(0);
}

.side-cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--color-border);
}

.side-cart-header h3 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 500;
    margin: 0;
}

.side-cart-header h3 svg {
    width: 24px;
    height: 24px;
}

.side-cart-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text);
    transition: color 0.2s;
}

.side-cart-close:hover {
    color: var(--color-accent);
}

.side-cart-close svg {
    width: 24px;
    height: 24px;
}

.side-cart-content {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
}

.side-cart-empty {
    text-align: center;
    padding: 3rem 1.5rem;
}

.side-cart-empty svg {
    width: 80px;
    height: 80px;
    color: var(--color-border);
    margin-bottom: 1.5rem;
}

.side-cart-empty h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.side-cart-empty p {
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
}

.side-cart-items {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.side-cart-item {
    display: flex;
    gap: 1rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--color-border);
}

.side-cart-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.side-cart-item-image {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    background: var(--color-background-alt);
}

.side-cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.side-cart-item-details {
    flex: 1;
    min-width: 0;
}

.side-cart-item-details h4 {
    font-size: 0.9375rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.side-cart-item-details .variant {
    font-size: 0.8125rem;
    color: var(--color-text-light);
    margin-bottom: 0.5rem;
}

.side-cart-item-price {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.side-cart-item-price .original {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    text-decoration: line-through;
}

.side-cart-item-price .current {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-accent);
}

.side-cart-quantity {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.side-cart-quantity .qty-btn {
    width: 28px;
    height: 28px;
    border: 1px solid var(--color-border);
    background: #fff;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.side-cart-quantity .qty-btn:hover {
    border-color: var(--color-primary);
    background: var(--color-background-alt);
}

.side-cart-quantity .qty-value {
    min-width: 24px;
    text-align: center;
    font-weight: 500;
}

.side-cart-quantity .remove-btn {
    margin-left: auto;
    background: none;
    border: none;
    color: var(--color-text-light);
    text-decoration: underline;
    cursor: pointer;
    font-size: 0.8125rem;
    transition: color 0.2s;
}

.side-cart-quantity .remove-btn:hover {
    color: var(--color-accent);
}

.side-cart-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--color-border);
    background: var(--color-background-alt);
}

.side-cart-totals {
    margin-bottom: 1rem;
}

.side-cart-total-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 0.9375rem;
}

.side-cart-total-row.final {
    font-size: 1.125rem;
    font-weight: 700;
    padding-top: 0.75rem;
    border-top: 1px solid var(--color-border);
    margin-top: 0.5rem;
}

.side-cart-total-row .label {
    color: var(--color-text-light);
}

.side-cart-total-row.final .label {
    color: var(--color-text);
}

.side-cart-total-row .savings {
    color: var(--color-secondary);
}

.side-cart-buttons {
    display: flex;
    gap: 0.75rem;
}

.side-cart-buttons .btn {
    flex: 1;
    padding: 1rem;
    font-size: 0.9375rem;
    text-align: center;
    text-decoration: none;
}

.side-cart-buttons .btn-outline {
    background: #fff;
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
}

.side-cart-buttons .btn-outline:hover {
    background: var(--color-background-alt);
}

.side-cart-buttons .btn-primary {
    background: var(--color-primary);
    color: #fff;
    border: none;
}

.side-cart-buttons .btn-primary:hover {
    background: var(--color-primary-dark);
}

/* Side Cart Responsive */
@media (max-width: 480px) {
    .side-cart-drawer {
        width: 100%;
    }

    .side-cart-buttons {
        flex-direction: column;
    }
}
/* Mobile Header Fixes - Force single row */
@media (max-width: 480px) {
    .header-actions {
        display: flex !important;
        flex-wrap: nowrap !important;
        gap: 0.5rem !important;
        align-items: center !important;
    }
    
    .header-actions a, 
    .header-actions button {
        width: 32px !important;
        height: 32px !important;
        flex-shrink: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .header-actions svg {
        width: 20px !important;
        height: 20px !important;
    }

    .header-icons .mobile-menu-toggle {
        display: flex !important;
        margin-left: 0.25rem !important;
    }
}

/* Mobile Header Icons Fix - Force single row */
@media (max-width: 480px) {
    .header-icons {
        display: flex !important;
        flex-wrap: nowrap !important;
        gap: 0.5rem !important;
        align-items: center !important;
    }
    
    .header-icons a, 
    .header-icons button {
        width: 36px !important;
        height: 36px !important;
        flex-shrink: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .header-icons svg {
        width: 20px !important;
        height: 20px !important;
    }

    .header-icons .mobile-menu-toggle {
        display: flex !important;
        margin-left: 0.25rem !important;
    }
}

/* --- Homepage Enhancements --- */
:root {
    --font-serif: 'Playfair Display', serif;
}

h1, h2, h3, .section-title, .promo-title {
    font-family: var(--font-serif);
}

/* Announcement Bar */
.announcement-bar {
    background: #1a1a1a;
    color: #fff;
    text-align: center;
    padding: 0.6rem;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    font-weight: 500;
}
.announcement-bar a {
    color: #fff;
    text-decoration: underline;
    margin-left: 10px;
    font-weight: 600;
}

/* Trust Banner */
.trust-banner {
    padding: 2.5rem 0;
    background: #fff;
    border-bottom: 1px solid #eaeaea;
}
.trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}
@media (min-width: 768px) {
    .trust-grid { grid-template-columns: repeat(4, 1fr); }
}
.trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: #4a4a4a;
    font-size: 0.9rem;
    font-weight: 500;
}
.trust-item svg { color: #333; }

/* Category Section */
.category-section { padding: 4rem 0; background: #fff; }
.category-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}
@media (min-width: 992px) {
    .category-grid { grid-template-columns: repeat(4, 1fr); }
}
.category-card {
    display: block;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}
.category-card:hover { transform: translateY(-8px); }
.category-image {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 50%; /* Circular */
    margin-bottom: 1.25rem;
    background: #f5f5f5;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.category-card:hover .category-image img { transform: scale(1.08); }
.category-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    font-family: var(--font-body); /* Keep serif for headings but maybe sans for this? No, using body font */
    letter-spacing: 0.02em;
}

/* Promo Section */
.promo-section {
    padding: 0;
    margin: 4rem 0;
    background: #f4f4f4;
}
.promo-grid {
    display: flex;
    flex-direction: column;
}
@media (min-width: 992px) {
    .promo-grid { flex-direction: row; height: 500px; }
}
.promo-image {
    flex: 1;
    overflow: hidden;
}
.promo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.promo-content-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    background: #fff;
    order: 2;
}
@media (min-width: 992px) {
    .promo-content-wrapper { order: 1; } /* Image right, content left or vice versa? Content left looks nice */
}
.promo-content {
    max-width: 450px;
    text-align: left;
}
.promo-tag {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    color: #c75050;
    margin-bottom: 1rem;
    display: inline-block;
    font-weight: 700;
}
.promo-title {
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
    line-height: 1.2;
    color: #222;
}
.promo-desc {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Newsletter Section */
.newsletter-section {
    padding: 6rem 0;
    background: #f9f9f7;
    border-top: 1px solid #eee;
}
.newsletter-content {
    max-width: 500px;
    margin: 0 auto;
}
.newsletter-content h2 { font-size: 2rem; margin-bottom: 0.75rem; }
.newsletter-content p { color: #666; margin-bottom: 2rem; }
.newsletter-form .input-group {
    display: flex;
    gap: 0.5rem;
}
.newsletter-form input {
    flex: 1;
    padding: 0.875rem 1.25rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}
.newsletter-form button {
    padding: 0 2rem;
    white-space: nowrap;
}
.newsletter-note {
    font-size: 0.75rem;
    color: #999;
    margin-top: 1rem;
}

/* Enhancements to existing elements */
.hero-title { font-size: 3.5rem; } /* Make hero bigger */
.section-title { font-size: 2.25rem; margin-bottom: 0.5rem; }
.section-subtitle { margin-bottom: 3rem; color: #777; font-style: italic; font-family: var(--font-serif); }


/* --- Visual Refinements Phase 2 --- */

/* Real Homes Section */
.real-homes-section { padding: 5rem 0; }
.ugc-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}
@media (min-width: 768px) {
    .ugc-grid { grid-template-columns: repeat(4, 1fr); }
}
.ugc-card {
    aspect-ratio: 1; /* Square Instagram style */
    overflow: hidden;
    position: relative;
    cursor: pointer;
    background: #f0f0f0;
}
.ugc-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.ugc-card:hover img { transform: scale(1.1); }

/* Sticky Header */
.header {
    position: sticky;
    top: 0;
    z-index: 1050;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

/* Dark Premium Footer Override */
.footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding-top: 5rem;
    padding-bottom: 2rem;
}
.footer h4 {
    color: #ffffff;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 1.5rem;
}
.footer ul li { margin-bottom: 0.8rem; }
.footer ul li a {
    color: #a0a0a0;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}
.footer ul li a:hover { color: #ffffff; }
.footer-social a {
    color: #ffffff;
    opacity: 0.7;
    transition: opacity 0.2s;
}
.footer-social a:hover { opacity: 1; }
.newsletter-note { color: #888; }
.copy a { color: #888; text-decoration: none; }
.copy a:hover { color: #fff; }


/* --- User Reverts & Hero Updates --- */

/* 1. Revert Fonts (Go back to body font) */
h1, h2, h3, .section-title, .promo-title, .hero-title, .navbar-logo {
    font-family: var(--font-body) !important;
}

/* 2. Revert Colors to Brand (Primary Green) */
.announcement-bar {
    background-color: var(--color-primary) !important;
    color: #fff !important;
}
.footer {
    background-color: var(--color-background-alt) !important; /* Reverting to light footer likely */
    color: var(--color-text) !important;
    padding-top: 4rem;
}
/* If user meant Primary Green for footer: */
/* .footer { background-color: var(--color-primary) !important; color: #fff !important; } */
/* But 'previous' was likely light. I will stick to light for now, or Green if 'Brand' is strict. */
/* Let's try Green for Footer to match 'Brand Color' request explicitly. */
.footer {
    background-color: var(--color-primary) !important;
    color: #fff !important;
}
.footer h4 { color: #fff !important; }
.footer ul li a { color: rgba(255,255,255,0.8) !important; }
.footer ul li a:hover { color: #fff !important; }

/* 3. Hero Marquee Animation */
.hero-marquee-section {
    background-color: #fdf7f2; /* Beige/Cream from screenshot */
    border-bottom: 1px solid #eee;
    overflow: hidden;
    padding: 1.25rem 0;
    position: relative;
}
.marquee-track {
    display: flex;
    width: max-content;
    animation: scroll 30s linear infinite;
}
.marquee-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    padding-right: 4rem;
}
.marquee-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
    color: #4a4a4a;
    font-size: 1.1rem;
}
.marquee-logo-text {
    font-weight: 800;
    color: #2e3b2e; /* Dark green text logo */
    font-size: 1.4rem;
    letter-spacing: -0.03em;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}
.marquee-logo-icon {
    background: #8fa390;
    color: #fff;
    padding: 0 0.4rem;
    border-radius: 2px;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}


/* --- Global Font Sync (Match Reference Site) --- */
/* Reference uses a modern geometric sans-serif (e.g. Outfit) */
:root {
    --font-heading: 'Outfit', sans-serif !important;
    --font-body: 'Outfit', sans-serif !important;
    --font-serif: 'Outfit', sans-serif !important;
}

body, h1, h2, h3, h4, h5, h6,
.section-title, .promo-title, .hero-title, .navbar-logo,
p, a, li, span, div, input, button, .btn {
    font-family: 'Outfit', sans-serif !important;
}
