/* EFE Automotive - POSH-inspired orange e-commerce theme */
:root {
    --orange-primary: #FF9800;
    --orange-dark: #F57C00;
    --orange-light: #FFB74D;
    --orange-bg: #FF9800;
    --black: #111111;
    --white: #FFFFFF;
    --gray-100: #F5F5F5;
    --gray-200: #E8E8E8;
    --gray-300: #DDDDDD;
    --text-dark: #1A1A1A;
    --text-muted: #666666;
    --sale-badge: #E53935;
    --max-width: 1240px;
    --radius: 4px;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --transition: 0.25s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: "Inter", Arial, sans-serif;
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.6;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
input, select, textarea, button { font: inherit; }
h1, h2, h3, h4, h5, h6 { font-family: "Poppins", sans-serif; font-weight: 700; line-height: 1.2; }

.site-wrapper { min-height: 100vh; display: flex; flex-direction: column; }
main { flex: 1; }
.container { width: min(100% - 2rem, var(--max-width)); margin-inline: auto; }

/* Top marquee bar */
.top-marquee {
    background: var(--orange-primary);
    color: var(--white);
    overflow: hidden;
    white-space: nowrap;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0.55rem 0;
}
.marquee-track {
    display: inline-flex;
    animation: marquee 30s linear infinite;
}
.marquee-track span {
    padding: 0 2rem;
}
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Header */
.site-header {
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1rem 0;
    min-height: 72px;
}
.logo { display: flex; align-items: center; gap: 0.6rem; flex-shrink: 0; }
.logo img { width: 48px; height: 48px; }
.logo-text { display: flex; flex-direction: column; }
.logo-title { font-family: "Poppins", sans-serif; font-weight: 700; font-size: 1.15rem; color: var(--text-dark); }
.logo-subtitle { font-size: 0.7rem; color: var(--text-muted); }

.site-nav { display: flex; align-items: center; gap: 2rem; }
.nav-list { display: flex; gap: 1.75rem; }
.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-dark);
    transition: color var(--transition);
    position: relative;
}
.nav-link:hover, .nav-link.active { color: var(--orange-primary); }
.nav-link.active::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--orange-primary);
}

.header-actions { display: flex; align-items: center; gap: 1rem; }
.search-box {
    display: flex;
    align-items: center;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    padding: 0.4rem 0.75rem;
    background: var(--gray-100);
}
.search-box input {
    border: none;
    background: transparent;
    outline: none;
    width: 140px;
    font-size: 0.85rem;
}
.search-box button {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-muted);
    padding: 0;
}
.cart-link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    transition: border-color var(--transition);
}
.cart-link:hover { border-color: var(--orange-primary); }
.cart-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: var(--orange-primary);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cart-badge:empty, .cart-badge[data-count="0"] { display: none; }

.nav-toggle {
    display: none;
    background: none;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    padding: 0.4rem 0.6rem;
    cursor: pointer;
    font-size: 1.2rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}
.btn-primary {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}
.btn-primary:hover { background: var(--orange-primary); border-color: var(--orange-primary); }
.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--black); }
.btn-orange {
    background: var(--orange-primary);
    color: var(--white);
    border-color: var(--orange-primary);
}
.btn-orange:hover { background: var(--orange-dark); border-color: var(--orange-dark); }
.btn-white {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
}
.btn-white:hover { background: var(--gray-100); }
.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.8rem; }

/* Section common */
.section { padding: 4rem 0; }
.section-header { text-align: center; margin-bottom: 2.5rem; }
.section-kicker {
    color: var(--orange-primary);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}
.section-title { font-size: clamp(1.75rem, 3vw, 2.25rem); color: var(--text-dark); }

/* Hero */
.hero-section {
    background: var(--orange-primary);
    color: var(--white);
    overflow: hidden;
    position: relative;
}
.hero-slider { position: relative; min-height: 520px; }
.hero-slide {
    display: none;
    align-items: center;
    min-height: 520px;
    padding: 3rem 0;
}
.hero-slide.active { display: flex; }
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    width: 100%;
}
.hero-content { padding-right: 2rem; }
.hero-kicker {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
    opacity: 0.9;
}
.hero-content h1 {
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    margin-bottom: 1rem;
    line-height: 1.15;
}
.hero-content p { font-size: 1rem; opacity: 0.9; margin-bottom: 1.5rem; max-width: 480px; }
.hero-price { font-size: 1.1rem; margin-bottom: 1.5rem; font-weight: 500; }
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-image {
    display: flex;
    justify-content: center;
    align-items: flex-end;
}
.hero-image img {
    max-height: 480px;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15));
}
.hero-dots {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
}
.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid var(--white);
    background: transparent;
    cursor: pointer;
    padding: 0;
}
.hero-dot.active { background: var(--white); }

/* Categories */
.categories-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
.category-main {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    min-height: 400px;
}
.category-main img { width: 100%; height: 100%; object-fit: cover; }
.category-main-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: var(--white);
}
.category-main-overlay h3 { font-size: 1.5rem; margin-bottom: 0.25rem; }
.category-sub-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.category-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    min-height: 190px;
}
.category-card img { width: 100%; height: 100%; object-fit: cover; }
.category-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.65));
    color: var(--white);
}
.category-card-overlay h4 { font-size: 0.95rem; }
.category-card-overlay span { font-size: 0.8rem; opacity: 0.85; }

/* Product grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.product-card {
    background: var(--gray-100);
    border-radius: var(--radius);
    overflow: hidden;
    transition: box-shadow var(--transition);
    position: relative;
}
.product-card:hover { box-shadow: var(--shadow); }
.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--sale-badge);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.25rem 0.6rem;
    border-radius: var(--radius);
    z-index: 2;
    text-transform: uppercase;
}
.product-badge.hot { background: var(--orange-primary); }
.product-badge.new { background: var(--black); }
.product-badge.sold { background: var(--text-muted); }
.product-image {
    position: relative;
    background: var(--gray-200);
    aspect-ratio: 1;
    overflow: hidden;
}
.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.product-card:hover .product-image img { transform: scale(1.05); }
.product-actions {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    opacity: 0;
    transition: opacity var(--transition);
}
.product-card:hover .product-actions { opacity: 1; }
.product-action-btn {
    width: 36px;
    height: 36px;
    background: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: background var(--transition);
}
.product-action-btn:hover { background: var(--orange-primary); color: var(--white); }
.product-info { padding: 1rem; }
.product-category { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; margin-bottom: 0.25rem; }
.product-name { font-size: 0.95rem; font-weight: 600; margin-bottom: 0.5rem; }
.product-name a:hover { color: var(--orange-primary); }
.product-price { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.5rem; }
.price-current { font-weight: 700; font-size: 1rem; }
.price-original { text-decoration: line-through; color: var(--text-muted); font-size: 0.85rem; }
.product-rating { display: flex; align-items: center; gap: 0.25rem; font-size: 0.8rem; color: var(--text-muted); }
.stars { color: var(--orange-primary); }
.color-swatches { display: flex; gap: 0.35rem; margin-top: 0.5rem; }
.color-swatch {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 1px solid var(--gray-300);
}
.add-cart-btn {
    width: 100%;
    margin-top: 0.75rem;
    padding: 0.6rem;
    background: var(--black);
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.8rem;
    cursor: pointer;
    text-transform: uppercase;
    transition: background var(--transition);
}
.add-cart-btn:hover { background: var(--orange-primary); }
.add-cart-btn:disabled { background: var(--text-muted); cursor: not-allowed; }

.section-footer { text-align: center; margin-top: 2rem; }

/* Deal of the day */
.deal-section { background: var(--black); color: var(--white); }
.deal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
}
.deal-image {
    position: relative;
    min-height: 400px;
}
.deal-image img { width: 100%; height: 100%; object-fit: cover; }
.deal-sale-badge {
    position: absolute;
    top: 2rem;
    left: 2rem;
    background: var(--black);
    color: var(--white);
    padding: 1rem 1.5rem;
    font-weight: 700;
    font-size: 1.25rem;
    border: 2px solid var(--white);
}
.deal-content {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.deal-content .section-kicker { color: var(--orange-primary); }
.deal-content h2 { font-size: 2rem; margin-bottom: 1rem; }
.deal-content p { opacity: 0.85; margin-bottom: 2rem; max-width: 400px; }
.countdown {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}
.countdown-item { text-align: center; }
.countdown-value {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: "Poppins", sans-serif;
    line-height: 1;
}
.countdown-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    opacity: 0.7;
    margin-top: 0.25rem;
}

/* Testimonials */
.testimonials-section { background: var(--gray-100); }
.testimonial-slider { overflow: hidden; position: relative; }
.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}
.testimonial-slide {
    min-width: 100%;
    padding: 2rem;
    text-align: center;
}
.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.5rem;
}
.testimonial-text {
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto 1.5rem;
    color: var(--text-muted);
    font-style: italic;
}
.testimonial-author { font-weight: 700; margin-bottom: 0.25rem; }
.testimonial-rating { color: var(--orange-primary); }
.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}
.testimonial-nav button {
    width: 40px;
    height: 40px;
    border: 1px solid var(--gray-300);
    background: var(--white);
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--transition);
}
.testimonial-nav button:hover { background: var(--orange-primary); color: var(--white); border-color: var(--orange-primary); }

/* Promo banners */
.banners-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
.promo-banner {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    min-height: 280px;
    display: flex;
    align-items: flex-end;
}
.promo-banner img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.promo-banner-content {
    position: relative;
    z-index: 1;
    padding: 2rem;
    color: var(--white);
    background: linear-gradient(transparent, rgba(0,0,0,0.6));
    width: 100%;
}
.promo-banner-content span { font-size: 0.85rem; font-weight: 600; }
.promo-banner-content h3 { font-size: 1.5rem; margin: 0.5rem 0 1rem; }

/* Brand logos */
.brands-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    padding: 2rem 0;
    opacity: 0.5;
    filter: grayscale(100%);
}
.brands-row img { height: 32px; width: auto; }

/* Instagram gallery */
.gallery-section { text-align: center; }
.gallery-handle { color: var(--orange-primary); font-weight: 600; margin-bottom: 0.5rem; }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0.5rem;
    margin-top: 1.5rem;
}
.gallery-grid img {
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: var(--radius);
    transition: opacity var(--transition);
}
.gallery-grid a:hover img { opacity: 0.85; }

/* Newsletter */
.newsletter-bar {
    background: var(--black);
    color: var(--white);
    padding: 2.5rem 0;
}
.newsletter-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}
.newsletter-text h3 { font-size: 1.35rem; margin-bottom: 0.25rem; }
.newsletter-text h3 span { color: var(--orange-primary); }
.newsletter-form {
    display: flex;
    gap: 0.5rem;
    flex: 1;
    max-width: 480px;
}
.newsletter-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    background: var(--white);
    outline: none;
}
.newsletter-form input:focus { border-color: var(--orange-primary); }

/* Footer */
.site-footer { background: var(--gray-100); padding-top: 3rem; }
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    gap: 2rem;
    padding-bottom: 2rem;
}
.footer-col h4 {
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.footer-col p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a {
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: color var(--transition);
}
.footer-links a:hover { color: var(--orange-primary); }
.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}
.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--gray-300);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    transition: all var(--transition);
}
.footer-social a:hover { background: var(--orange-primary); color: var(--white); border-color: var(--orange-primary); }
.footer-legal {
    border-top: 1px solid var(--gray-300);
    padding: 1rem 0;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}
.footer-legal a {
    font-size: 0.85rem;
    color: var(--text-muted);
    transition: color var(--transition);
}
.footer-legal a:hover { color: var(--orange-primary); }
.footer-bottom {
    background: var(--orange-primary);
    color: var(--white);
    padding: 1rem 0;
}
.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
}
.payment-icons { display: flex; gap: 0.75rem; align-items: center; }
.payment-icons span {
    background: var(--white);
    color: var(--text-dark);
    padding: 0.25rem 0.6rem;
    border-radius: 3px;
    font-size: 0.7rem;
    font-weight: 700;
}

/* Page hero */
.page-hero {
    background: var(--gray-100);
    padding: 3rem 0;
    text-align: center;
}
.page-hero h1 { font-size: clamp(1.75rem, 3vw, 2.5rem); margin-bottom: 0.5rem; }
.page-hero p { color: var(--text-muted); max-width: 600px; margin: 0 auto; }

/* Forms */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}
.field { display: flex; flex-direction: column; gap: 0.35rem; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 0.85rem; font-weight: 600; }
.field input, .field select, .field textarea {
    padding: 0.75rem 1rem;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    outline: none;
    transition: border-color var(--transition);
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--orange-primary); }
.field input.error, .field select.error, .field textarea.error { border-color: var(--sale-badge); }
.field input.success, .field select.success, .field textarea.success { border-color: #4CAF50; }
.error-message { font-size: 0.75rem; color: var(--sale-badge); min-height: 1rem; }
.form-success { color: #4CAF50; font-weight: 600; margin-top: 0.75rem; }
.form-error-global { color: var(--sale-badge); margin-top: 0.75rem; }

/* Legal content */
.legal-content { max-width: 800px; margin: 0 auto; }
.legal-content h2 { font-size: 1.25rem; margin: 2rem 0 0.75rem; }
.legal-content p { margin-bottom: 1rem; color: var(--text-muted); }
.legal-content a { color: var(--orange-primary); text-decoration: underline; }

/* About page */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
.about-grid img { border-radius: var(--radius); }
.about-content h2 { margin-bottom: 1rem; }
.about-content p { color: var(--text-muted); margin-bottom: 1rem; }
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}
.value-card {
    background: var(--gray-100);
    padding: 1.5rem;
    border-radius: var(--radius);
    text-align: center;
}
.value-card h3 { font-size: 1rem; margin-bottom: 0.5rem; color: var(--orange-primary); }
.value-card p { font-size: 0.9rem; color: var(--text-muted); }

/* Products page filters */
.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}
.filter-tab {
    padding: 0.5rem 1.25rem;
    border: 1px solid var(--gray-300);
    background: var(--white);
    border-radius: var(--radius);
    cursor: pointer;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all var(--transition);
}
.filter-tab:hover, .filter-tab.active {
    background: var(--orange-primary);
    color: var(--white);
    border-color: var(--orange-primary);
}

/* Product detail */
.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}
.product-gallery { display: flex; flex-direction: column; gap: 1rem; }
.product-main-image {
    background: var(--gray-100);
    border-radius: var(--radius);
    aspect-ratio: 1;
    overflow: hidden;
}
.product-main-image img { width: 100%; height: 100%; object-fit: cover; }
.product-thumbs { display: flex; gap: 0.75rem; }
.product-thumbs img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--radius);
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color var(--transition);
}
.product-thumbs img.active, .product-thumbs img:hover { border-color: var(--orange-primary); }
.product-detail-info h1 { font-size: 1.75rem; margin-bottom: 0.5rem; }
.product-detail-info .product-rating { margin-bottom: 1rem; }
.product-detail-price {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.product-detail-info > p { color: var(--text-muted); margin-bottom: 1.5rem; }
.specs-table { width: 100%; margin: 1.5rem 0; border-collapse: collapse; }
.specs-table th, .specs-table td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid var(--gray-200);
    font-size: 0.9rem;
}
.specs-table th { font-weight: 600; width: 40%; }
.features-list { margin: 1rem 0 1.5rem; }
.features-list li {
    padding: 0.35rem 0;
    padding-left: 1.25rem;
    position: relative;
    color: var(--text-muted);
    font-size: 0.9rem;
}
.features-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--orange-primary);
    font-weight: 700;
}
.qty-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}
.qty-selector button {
    width: 36px;
    height: 36px;
    border: 1px solid var(--gray-300);
    background: var(--white);
    border-radius: var(--radius);
    cursor: pointer;
    font-size: 1.1rem;
}
.qty-selector input {
    width: 50px;
    text-align: center;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    padding: 0.5rem;
}

/* Cart */
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th, .cart-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--gray-200);
    vertical-align: middle;
}
.cart-table th { font-size: 0.85rem; text-transform: uppercase; color: var(--text-muted); }
.cart-product { display: flex; align-items: center; gap: 1rem; }
.cart-product img { width: 80px; height: 80px; object-fit: cover; border-radius: var(--radius); }
.cart-empty { text-align: center; padding: 3rem; color: var(--text-muted); }
.cart-summary {
    background: var(--gray-100);
    padding: 2rem;
    border-radius: var(--radius);
    max-width: 400px;
    margin-left: auto;
    margin-top: 2rem;
}
.cart-summary h3 { margin-bottom: 1rem; }
.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    font-size: 0.95rem;
}
.summary-row.total {
    border-top: 2px solid var(--gray-300);
    margin-top: 0.5rem;
    padding-top: 1rem;
    font-weight: 700;
    font-size: 1.1rem;
}
.remove-btn {
    background: none;
    border: none;
    color: var(--sale-badge);
    cursor: pointer;
    font-size: 0.85rem;
}
.remove-btn:hover { text-decoration: underline; }

/* Checkout */
.checkout-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
}
.checkout-form-section h2 { margin-bottom: 1.5rem; font-size: 1.25rem; }
.order-summary-box {
    background: var(--gray-100);
    padding: 2rem;
    border-radius: var(--radius);
    position: sticky;
    top: 100px;
}
.order-item {
    display: flex;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-300);
    font-size: 0.9rem;
}
.order-item img { width: 60px; height: 60px; object-fit: cover; border-radius: var(--radius); }

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}
.contact-info h2 { margin-bottom: 1rem; }
.contact-info p { color: var(--text-muted); margin-bottom: 1.5rem; }
.contact-email {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--gray-100);
    border-radius: var(--radius);
    margin-bottom: 1rem;
}
.contact-email strong { display: block; font-size: 0.85rem; color: var(--text-muted); }
.contact-email a { color: var(--orange-primary); font-weight: 600; }

/* Toast notification */
.toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--black);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: var(--radius);
    z-index: 1000;
    transform: translateY(120%);
    transition: transform 0.3s ease;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}
.toast.show { transform: translateY(0); }

/* Responsive */
@media (max-width: 1199px) {
    .product-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: repeat(3, 1fr); }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 991px) {
    .nav-toggle { display: block; }
    .site-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(320px, 85vw);
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        box-shadow: -4px 0 20px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
        align-items: flex-start;
        z-index: 200;
    }
    .site-nav.open { right: 0; }
    .nav-list { flex-direction: column; gap: 1rem; width: 100%; }
    .search-box { display: none; }
    .hero-grid, .categories-grid, .deal-grid, .banners-grid,
    .about-grid, .product-detail-grid, .checkout-grid, .contact-grid {
        grid-template-columns: 1fr;
    }
    .product-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .values-grid { grid-template-columns: 1fr; }
    .newsletter-inner { flex-direction: column; text-align: center; }
    .newsletter-form { max-width: 100%; width: 100%; }
}

@media (max-width: 575px) {
    .product-grid { grid-template-columns: 1fr; }
    .category-sub-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .form-grid { grid-template-columns: 1fr; }
    .countdown { gap: 0.75rem; }
    .countdown-value { font-size: 1.75rem; }
    .cart-table thead { display: none; }
    .cart-table tr { display: block; margin-bottom: 1rem; border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 1rem; }
    .cart-table td { display: block; border: none; padding: 0.25rem 0; }
}
