@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
    --bg: #ffffff;
    --bg-soft: #f8f7f5;
    --bg-card: #ffffff;
    --bg-dark: #111111;
    --bg-overlay: rgba(0,0,0,0.4);
    --text: #111111;
    --text-secondary: #555555;
    --text-muted: #999999;
    --text-light: #ffffff;
    --accent: #111111;
    --accent-hover: #333333;
    --sale: #c8102e;
    --success: #1a7f37;
    --warning: #d4a017;
    --info: #0969da;
    --border: #e8e8e8;
    --border-dark: #d0d0d0;
    --radius: 0px;
    --radius-sm: 2px;
    --radius-lg: 0px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --shadow: 0 4px 12px rgba(0,0,0,0.08);
    --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --font-heading: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a { color: var(--text); text-decoration: none; transition: var(--transition); }
a:hover { opacity: 0.7; }

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

.container { max-width: 1400px; margin: 0 auto; padding: 0 40px; }

/* ═══ ANNOUNCEMENT BAR ═══ */
.top-bar {
    background: var(--bg-dark);
    color: var(--text-light);
    text-align: center;
    padding: 10px 0;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.5px;
}
.top-bar strong { font-weight: 600; }

/* ═══ HEADER ═══ */
.header {
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 600;
    color: var(--text);
    letter-spacing: 1px;
    text-transform: uppercase;
}
.logo span { font-weight: 400; }
.logo:hover { opacity: 1; }

.nav { display: flex; align-items: center; gap: 32px; }
.nav a {
    color: var(--text);
    font-size: 13px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    padding: 5px 0;
}
.nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--text);
    transition: var(--transition);
}
.nav a:hover { opacity: 1; }
.nav a:hover::after, .nav a.active::after { width: 100%; }
.nav a.active { font-weight: 500; }

.header-actions { display: flex; align-items: center; gap: 18px; }
.header-actions a {
    color: var(--text);
    position: relative;
    display: flex;
    align-items: center;
}
.header-actions a:hover { opacity: 0.6; }

.cart-count {
    position: absolute;
    top: -6px;
    right: -8px;
    background: var(--bg-dark);
    color: var(--text-light);
    font-size: 9px;
    font-weight: 600;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-toggle { display: none; background: none; border: none; color: var(--text); font-size: 24px; cursor: pointer; }

/* ═══ HERO ═══ */
.hero {
    position: relative;
    height: 90vh;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    overflow: hidden;
    background: var(--bg-soft);
}
.hero-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-size: cover;
    background-position: center;
    transition: transform 8s ease;
}
.hero:hover .hero-bg { transform: scale(1.03); }
.hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 60%;
    background: linear-gradient(transparent, rgba(0,0,0,0.5));
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    padding: 60px;
    max-width: 650px;
}
.hero-subtitle {
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.8);
    margin-bottom: 16px;
    font-weight: 400;
}
.hero-title {
    font-family: var(--font-heading);
    font-size: 64px;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 16px;
    color: var(--text-light);
    letter-spacing: -0.5px;
}
.hero-desc {
    font-size: 15px;
    color: rgba(255,255,255,0.75);
    margin-bottom: 30px;
    line-height: 1.7;
    font-weight: 300;
}

/* ═══ BUTTONS ═══ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 36px;
    border: none;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
}
.btn-primary {
    background: var(--accent);
    color: var(--text-light);
}
.btn-primary:hover { background: var(--accent-hover); color: var(--text-light); opacity: 1; }
.btn-white {
    background: var(--bg);
    color: var(--text);
}
.btn-white:hover { background: #f0f0f0; color: var(--text); opacity: 1; }
.btn-outline {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--text);
}
.btn-outline:hover { background: var(--text); color: var(--text-light); opacity: 1; }
.btn-outline-white {
    background: transparent;
    color: var(--text-light);
    border: 1px solid rgba(255,255,255,0.6);
}
.btn-outline-white:hover { background: var(--text-light); color: var(--text); opacity: 1; }
.btn-danger { background: var(--sale); color: #fff; }
.btn-danger:hover { opacity: 0.85; }
.btn-sm { padding: 8px 18px; font-size: 11px; letter-spacing: 1px; }
.btn-lg { padding: 18px 48px; font-size: 13px; }
.btn-block { width: 100%; }
.btn-dark { background: var(--bg-soft); color: var(--text); border: 1px solid var(--border); }
.btn-dark:hover { border-color: var(--text); opacity: 1; }

/* ═══ MARQUEE ═══ */
.marquee {
    overflow: hidden;
    padding: 18px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.marquee-inner {
    display: flex;
    animation: marquee 25s linear infinite;
    white-space: nowrap;
}
.marquee-item {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 400;
    color: var(--text);
    padding: 0 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 40px;
}
.marquee-item .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--text);
    opacity: 0.3;
}
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ═══ SECTION ═══ */
.section { padding: 80px 0; }
.section-header { margin-bottom: 40px; }
.section-header.center { text-align: center; }
.section-subtitle {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 8px;
    font-weight: 500;
}
.section-title {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 400;
    color: var(--text);
    letter-spacing: -0.5px;
}
.section-title-sm {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 400;
}
.section-desc {
    font-size: 14px;
    color: var(--text-secondary);
    margin-top: 10px;
    max-width: 500px;
    line-height: 1.7;
}
.section-header.center .section-desc { margin-left: auto; margin-right: auto; }
.section-link {
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 500;
    border-bottom: 1px solid var(--text);
    padding-bottom: 2px;
}
.section-link:hover { opacity: 0.6; }

/* ═══ PRODUCT GRID ═══ */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.product-card {
    background: transparent;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}
.product-card:hover .product-image img { transform: scale(1.04); }
.product-card:hover .product-actions { opacity: 1; transform: translateY(0); }

.product-image {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: var(--bg-soft);
}
.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-badges {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    z-index: 2;
}
.badge {
    display: inline-block;
    padding: 5px 10px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.badge-sale { background: var(--sale); color: #fff; }
.badge-new { background: var(--bg-dark); color: var(--text-light); }
.badge-out { background: var(--text-muted); color: #fff; }

.product-actions {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px;
    opacity: 0;
    transform: translateY(8px);
    transition: var(--transition);
    z-index: 2;
    display: flex;
    gap: 8px;
}
.product-actions .btn { flex: 1; padding: 12px; font-size: 11px; }
.product-action-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg);
    border: 1px solid var(--border);
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 15px;
    flex-shrink: 0;
}
.product-action-btn:hover, .product-action-btn.active {
    background: var(--bg-dark);
    color: var(--text-light);
    border-color: var(--bg-dark);
}

.product-info { padding: 14px 0; }
.product-category {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 4px;
}
.product-name {
    font-size: 14px;
    font-weight: 400;
    color: var(--text);
    margin-bottom: 6px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.product-name a { color: var(--text); }
.product-name a:hover { opacity: 0.6; }
.product-card-rating { display: flex; align-items: center; gap: 4px; margin-bottom: 4px; }
.product-card-rating .stars { font-size: 12px; }
.product-card-rating .rating-count { font-size: 11px; color: var(--text-muted); }
.product-price { display: flex; align-items: center; gap: 8px; }
.price-current { font-size: 14px; font-weight: 500; color: var(--text); }
.price-old {
    font-size: 13px;
    color: var(--text-muted);
    text-decoration: line-through;
}
.price-discount {
    font-size: 11px;
    color: var(--sale);
    font-weight: 600;
}

.product-rating { display: flex; align-items: center; gap: 4px; margin-bottom: 6px; }
.stars { display: flex; gap: 1px; }
.star { color: var(--border-dark); font-size: 12px; }
.star.filled { color: var(--text); }
.rating-count { font-size: 11px; color: var(--text-muted); }

/* ═══ EDITORIAL GRID ═══ */
.editorial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
}
.editorial-card {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    background: var(--bg-soft);
}
.editorial-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}
.editorial-card:hover img { transform: scale(1.05); }
.editorial-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 40px;
    background: linear-gradient(transparent, rgba(0,0,0,0.6));
}
.editorial-overlay h3 {
    font-family: var(--font-heading);
    font-size: 32px;
    color: #fff;
    font-weight: 400;
    margin-bottom: 8px;
}
.editorial-overlay p { font-size: 13px; color: rgba(255,255,255,0.7); margin-bottom: 16px; }

/* ═══ CATEGORIES ═══ */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}
.category-card {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: var(--bg-soft);
}
.category-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.category-card:hover img { transform: scale(1.05); }
.category-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 30px;
    background: linear-gradient(transparent, rgba(0,0,0,0.5));
}
.category-overlay h3 {
    font-family: var(--font-heading);
    font-size: 26px;
    color: #fff;
    font-weight: 400;
    margin-bottom: 4px;
}
.category-overlay p { font-size: 12px; color: rgba(255,255,255,0.7); }

/* ═══ FEATURES BAR ═══ */
.features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    padding: 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.feature {
    text-align: center;
    padding: 30px 20px;
    border-right: 1px solid var(--border);
}
.feature:last-child { border-right: none; }
.feature-icon { font-size: 22px; margin-bottom: 10px; }
.feature h4 { font-size: 12px; font-weight: 500; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.feature p { font-size: 12px; color: var(--text-muted); }

/* ═══ SPLIT SECTION ═══ */
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}
.split-image {
    overflow: hidden;
    background: var(--bg-soft);
}
.split-image img { width: 100%; height: 100%; object-fit: cover; }
.split-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 80px;
}
.split-content .section-subtitle { margin-bottom: 12px; }
.split-content .section-title { margin-bottom: 16px; }
.split-content p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 30px;
}

/* ═══ BLOG ═══ */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card { display: block; text-decoration: none; color: inherit; border-radius: 12px; overflow: hidden; border: 1px solid var(--border); transition: transform 0.3s, box-shadow 0.3s; }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,0.15); }
.blog-card-image { position: relative; height: 200px; overflow: hidden; background: var(--bg-soft); }
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.blog-card:hover .blog-card-image img { transform: scale(1.05); }
.blog-card-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; color: var(--text-secondary); }
.blog-card-body { padding: 20px; }
.blog-card-date { font-size: 12px; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 1px; }
.blog-card-title { font-family: var(--font-heading); font-size: 18px; font-weight: 500; margin: 8px 0 10px; line-height: 1.4; }
.blog-card-excerpt { font-size: 13px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 12px; }
.blog-card-link { font-size: 13px; color: var(--primary); font-weight: 500; letter-spacing: 0.5px; }
.blog-post-content h1, .blog-post-content h2, .blog-post-content h3 { margin: 28px 0 12px; font-family: var(--font-heading); }
.blog-post-content p { margin-bottom: 16px; color: var(--text-secondary); }
.blog-post-content img { max-width: 100%; border-radius: 8px; margin: 16px 0; }
.blog-post-content blockquote { border-left: 3px solid var(--primary); padding: 12px 20px; margin: 20px 0; color: var(--text-secondary); font-style: italic; background: var(--bg-soft); border-radius: 0 8px 8px 0; }
.blog-post-content ul, .blog-post-content ol { margin: 12px 0; padding-left: 24px; color: var(--text-secondary); }
.blog-post-content li { margin-bottom: 6px; }
.pagination { display: flex; align-items: center; justify-content: center; gap: 8px; }

/* ═══ NEWSLETTER ═══ */
.newsletter {
    background: var(--bg-soft);
    padding: 80px 40px;
    text-align: center;
}
.newsletter h3 {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 10px;
}
.newsletter p { color: var(--text-secondary); font-size: 14px; margin-bottom: 28px; }
.newsletter-form {
    display: flex;
    max-width: 460px;
    margin: 0 auto;
    gap: 0;
}
.newsletter-form input {
    flex: 1;
    padding: 14px 18px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-right: none;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 13px;
}
.newsletter-form input:focus { outline: none; border-color: var(--text); }
.newsletter-form .btn { border-radius: 0; }

/* ═══ FOOTER ═══ */
.footer {
    background: var(--bg);
    border-top: 1px solid var(--border);
    padding: 60px 0 30px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-brand .logo { margin-bottom: 15px; display: inline-block; font-size: 26px; }
.footer-brand p { color: var(--text-muted); font-size: 13px; line-height: 1.8; }
.footer-col h4 {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text);
    margin-bottom: 18px;
    font-weight: 600;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: var(--text-muted); font-size: 13px; }
.footer-col a:hover { color: var(--text); opacity: 1; }
.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 12px;
}

/* ═══ FORMS ═══ */
.form-group { margin-bottom: 18px; }
.form-label {
    display: block;
    font-size: 11px;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.form-input, .form-select, .form-textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 14px;
    transition: var(--transition);
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--text);
}
.form-textarea { min-height: 120px; resize: vertical; }
.form-select { appearance: none; cursor: pointer; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.form-error { color: var(--sale); font-size: 12px; margin-top: 4px; }

/* ═══ AUTH PAGES ═══ */
.auth-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}
.auth-box {
    width: 100%;
    max-width: 440px;
}
.auth-box h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 6px;
}
.auth-box .auth-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 32px;
}
.auth-divider {
    text-align: center;
    color: var(--text-muted);
    font-size: 13px;
    margin: 24px 0;
    position: relative;
}
.auth-divider::before, .auth-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: var(--border);
}
.auth-divider::before { left: 0; }
.auth-divider::after { right: 0; }

/* ═══ PRODUCT DETAIL ═══ */
.product-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; padding: 40px 0 60px; }
.product-detail > * { min-width: 0; }
.product-gallery { position: relative; }
.product-main-image {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: var(--bg-soft);
}
.product-main-image img { width: 100%; height: 100%; object-fit: cover; }
.product-gallery .product-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
}
.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(255,255,255,0.85);
    color: #111;
    font-size: 24px;
    cursor: pointer;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    opacity: 0;
}
.product-main-image:hover .gallery-arrow { opacity: 1; }
.gallery-arrow:hover { background: #fff; }
.gallery-arrow-left { left: 10px; }
.gallery-arrow-right { right: 10px; }
.product-thumbs-wrap {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
}
.thumb-arrow {
    width: 28px;
    height: 60px;
    border: 1px solid var(--border);
    background: var(--bg-soft);
    color: var(--text);
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}
.thumb-arrow:hover { border-color: var(--text); }
.product-thumbs { display: flex; gap: 8px; overflow: hidden; flex: 1; }
.product-thumb {
    width: 70px;
    height: 90px;
    overflow: hidden;
    border: 1px solid var(--border);
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
}
.product-thumb:hover, .product-thumb.active { border-color: var(--text); }
.product-thumb img { width: 100%; height: 100%; object-fit: cover; }

.product-variations {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}
.variation-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
    color: var(--text-secondary);
}
.variation-options { display: flex; flex-wrap: wrap; gap: 8px; }
.variation-btn {
    padding: 8px 18px;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--text);
    font-size: 13px;
    cursor: pointer;
    transition: var(--transition);
}
.variation-btn:hover { border-color: var(--text); }
.variation-btn.active {
    border-color: var(--text);
    background: var(--text);
    color: var(--bg);
}
.product-short-desc {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}
.product-accordion {
    margin-top: 30px;
}
.product-accordion-item {
    border-bottom: 1px solid var(--border);
}
.product-accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text);
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-family: var(--font-body);
}
.product-accordion-header:hover { color: var(--text-secondary); }
.product-accordion-header .acc-icon {
    font-size: 18px;
    transition: transform 0.3s ease;
    font-weight: 300;
}
.product-accordion-item.open .acc-icon { transform: rotate(45deg); }
.product-accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}
.product-accordion-item.open .product-accordion-body {
    max-height: 2000px;
}
.product-accordion-content {
    padding: 0 0 20px;
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.8;
    overflow-wrap: break-word;
    word-break: break-word;
}
.product-accordion-content img { max-width: 100%; height: auto; }
.product-accordion-content h2 { font-size: 16px; margin: 16px 0 8px; }
.product-accordion-content p { margin-bottom: 12px; }
.product-accordion-content ul,
.product-accordion-content ol { margin: 0 0 12px 20px; }
.product-accordion-content li { margin-bottom: 4px; }
.product-accordion-content .product-description { margin: 0; padding: 0; border: none; }
.product-accordion-content .product-feedback,
.product-accordion-content .collection-recommendation-wrapper { display: none; }

.product-detail-info { padding-top: 20px; }
.product-detail-info h1 {
    font-family: var(--font-body);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.3;
}
.product-detail-info .product-price { margin-bottom: 20px; }
.product-detail-info .price-current { font-size: 22px; font-weight: 500; }
.product-detail-info .price-old { font-size: 16px; }

.product-sku { font-size: 12px; color: var(--text-muted); margin-bottom: 16px; letter-spacing: 0.5px; }
.product-description {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 28px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    font-size: 14px;
}
.product-stock { margin-bottom: 20px; font-size: 13px; }
.stock-in { color: var(--success); }
.stock-out { color: var(--sale); }

.low-stock-bar {
    position: relative;
    background: #f3e8e8;
    border-radius: 4px;
    height: 22px;
    overflow: hidden;
    margin-top: 8px;
}
.low-stock-bar .low-stock-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: linear-gradient(90deg, #e74c3c, #ff6b6b);
    border-radius: 4px;
    transition: width 0.4s ease;
    animation: lowStockPulse 2s ease-in-out infinite;
}
.low-stock-bar span {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    font-size: 11px;
    font-weight: 600;
    color: #c0392b;
    letter-spacing: 0.3px;
}
.low-stock-bar-detail {
    height: 28px;
    border-radius: 6px;
}
.low-stock-bar-detail span {
    font-size: 12px;
}
@keyframes lowStockPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.add-to-cart-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
    padding: 20px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.quantity-selector {
    display: flex;
    align-items: center;
}
.qty-btn {
    width: 40px;
    height: 48px;
    background: var(--bg);
    border: 1px solid var(--border);
    color: var(--text);
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}
.qty-btn:hover { background: var(--bg-soft); }
.qty-input {
    width: 48px;
    height: 48px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-left: none;
    border-right: none;
    color: var(--text);
    text-align: center;
    font-size: 14px;
    font-family: var(--font-body);
}
.qty-input:focus { outline: none; }
.add-to-cart-bar .btn { flex: 1; height: 48px; }

.detail-actions { display: flex; gap: 10px; margin-bottom: 28px; }
.detail-actions .btn { flex: 1; }

/* ═══ CART ═══ */
.cart-page { padding: 40px 0 80px; }
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th {
    text-align: left;
    padding: 14px 15px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
    font-weight: 500;
}
.cart-table td {
    padding: 24px 15px;
    border-bottom: 1px solid var(--border);
    vertical-align: middle;
}
.cart-product { display: flex; align-items: center; gap: 16px; }
.cart-product-image {
    width: 80px;
    height: 100px;
    overflow: hidden;
    background: var(--bg-soft);
    flex-shrink: 0;
}
.cart-product-image img { width: 100%; height: 100%; object-fit: cover; }
.cart-product-name { font-size: 14px; font-weight: 400; }
.cart-product-name a { color: var(--text); }
.cart-remove {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 16px;
    padding: 5px;
    transition: var(--transition);
}
.cart-remove:hover { color: var(--sale); }
.cart-price-row { display: none; }
.cart-price-label { display: none; }

.cart-summary {
    background: var(--bg-soft);
    border: 1px solid var(--border);
    padding: 30px;
    margin-top: 30px;
    max-width: 420px;
    margin-left: auto;
}
.cart-summary h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border);
}
.cart-summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 14px;
}
.cart-summary-row.total {
    font-size: 18px;
    font-weight: 500;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--border);
}
.cart-coupon { display: flex; gap: 0; margin-bottom: 20px; }
.cart-coupon input { flex: 1; border-right: none; }
.cart-coupon .btn { border-radius: 0; }

/* ═══ CHECKOUT ═══ */
.checkout-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; padding: 40px 0; }
.checkout-section {
    border: 1px solid var(--border);
    padding: 30px;
    margin-bottom: 20px;
}
.checkout-section h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}
.order-summary-items { margin-bottom: 20px; }
.order-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}
.order-item-info { display: flex; align-items: center; gap: 12px; }
.order-item-img {
    width: 55px;
    height: 55px;
    overflow: hidden;
    background: var(--bg-soft);
    flex-shrink: 0;
}
.order-item-img img { width: 100%; height: 100%; object-fit: cover; }
.order-item-name {
    font-size: 13px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.order-item-qty { font-size: 12px; color: var(--text-muted); }
.order-item-price { font-weight: 500; font-size: 14px; }

/* ═══ ACCOUNT ═══ */
.account-layout { display: grid; grid-template-columns: 240px 1fr; gap: 40px; padding: 40px 0; }
.account-sidebar {
    border: 1px solid var(--border);
    padding: 24px;
    height: fit-content;
    position: sticky;
    top: 100px;
}
.account-sidebar h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 400;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid var(--border);
}
.account-menu { list-style: none; }
.account-menu li { margin-bottom: 3px; }
.account-menu a {
    display: block;
    padding: 10px 12px;
    color: var(--text-secondary);
    font-size: 13px;
    transition: var(--transition);
    letter-spacing: 0.3px;
}
.account-menu a:hover, .account-menu a.active {
    background: var(--bg-soft);
    color: var(--text);
    opacity: 1;
}
.account-content {
    border: 1px solid var(--border);
    padding: 30px;
}
.account-content h2 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 24px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border);
}

/* ═══ ORDER TABLE ═══ */
.orders-table { width: 100%; border-collapse: collapse; }
.orders-table th {
    text-align: left;
    padding: 12px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
    font-weight: 500;
}
.orders-table td {
    padding: 16px 12px;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
}
.badge-status {
    display: inline-block;
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.badge-warning { background: rgba(212,160,23,0.1); color: var(--warning); }
.badge-info { background: rgba(9,105,218,0.1); color: var(--info); }
.badge-primary { background: rgba(17,17,17,0.08); color: var(--text); }
.badge-success { background: rgba(26,127,55,0.1); color: var(--success); }
.badge-danger { background: rgba(200,16,46,0.1); color: var(--sale); }
.badge-secondary { background: rgba(0,0,0,0.05); color: var(--text-muted); }

/* ═══ FLASH ═══ */
.flash {
    padding: 14px 20px;
    margin-bottom: 20px;
    font-size: 14px;
    border: 1px solid;
}
.flash-success { background: rgba(26,127,55,0.06); border-color: rgba(26,127,55,0.2); color: var(--success); }
.flash-error { background: rgba(200,16,46,0.06); border-color: rgba(200,16,46,0.2); color: var(--sale); }
.flash-info { background: rgba(9,105,218,0.06); border-color: rgba(9,105,218,0.2); color: var(--info); }

/* ═══ BREADCRUMB ═══ */
.breadcrumb {
    padding: 16px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--text-muted);
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--text); opacity: 1; }
.breadcrumb span { color: var(--text); }

/* ═══ SHOP LAYOUT ═══ */
.shop-layout { display: grid; grid-template-columns: 1fr; gap: 40px; padding: 40px 0; }
.shop-sidebar.open ~ .shop-content { /* content stays full width */ }
.shop-sidebar {
    border: 1px solid var(--border);
    padding: 24px;
    height: fit-content;
    position: sticky;
    top: 80px;
}
.filter-group { margin-bottom: 24px; }
.filter-group h4 {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text);
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border);
    font-weight: 600;
}
.filter-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 0;
    font-size: 13px;
    color: var(--text-secondary);
    cursor: pointer;
}
.filter-group input[type="checkbox"],
.filter-group input[type="radio"] { accent-color: var(--text); }
.price-range { display: flex; gap: 8px; align-items: center; }
.price-range input {
    width: 100%;
    padding: 8px;
    background: var(--bg);
    border: 1px solid var(--border);
    color: var(--text);
    font-size: 13px;
    text-align: center;
}

.shop-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}
.shop-toolbar .result-count { font-size: 13px; color: var(--text-muted); }
.shop-toolbar select {
    padding: 8px 14px;
    background: var(--bg);
    border: 1px solid var(--border);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 13px;
}

/* ═══ PAGINATION ═══ */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    margin-top: 40px;
}
.page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    font-size: 13px;
    color: var(--text-secondary);
    border: 1px solid var(--border);
    transition: var(--transition);
}
.page-link:hover, .page-link.active {
    background: var(--bg-dark);
    color: var(--text-light);
    border-color: var(--bg-dark);
    opacity: 1;
}
.page-dots { color: var(--text-muted); padding: 0 4px; }

/* ═══ REVIEWS ═══ */
.reviews-section { margin-top: 60px; }
.review-card {
    border: 1px solid var(--border);
    padding: 24px;
    margin-bottom: 12px;
}
.review-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.review-author { font-weight: 500; font-size: 14px; }
.review-date { font-size: 12px; color: var(--text-muted); }
.review-comment { color: var(--text-secondary); font-size: 14px; line-height: 1.7; margin-top: 8px; }

/* ═══ EMPTY STATE ═══ */
.empty-state { text-align: center; padding: 80px 20px; }
.empty-state-icon { font-size: 40px; margin-bottom: 16px; opacity: 0.5; }
.empty-state h3 {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 400;
    margin-bottom: 8px;
}
.empty-state p { color: var(--text-muted); margin-bottom: 24px; font-size: 14px; }

/* ═══ PAGE HEADER ═══ */
.page-header {
    background: var(--bg-soft);
    border-bottom: 1px solid var(--border);
    padding: 50px 0;
    text-align: center;
}
.page-header h1 {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 400;
}
.page-header p { color: var(--text-muted); font-size: 14px; margin-top: 6px; }

/* ═══ SEARCH OVERLAY ═══ */
.search-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(255,255,255,0.97);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}
.search-overlay.active { display: flex; }
.search-box { width: 90%; max-width: 600px; }
.search-box input {
    width: 100%;
    padding: 20px 0;
    background: transparent;
    border: none;
    border-bottom: 2px solid var(--text);
    color: var(--text);
    font-family: var(--font-heading);
    font-size: 32px;
    text-align: center;
    font-weight: 400;
}
.search-box input:focus { outline: none; }
.search-box input::placeholder { color: var(--text-muted); }
.search-close {
    position: absolute;
    top: 30px;
    right: 30px;
    background: none;
    border: none;
    color: var(--text);
    font-size: 28px;
    cursor: pointer;
}

/* ═══ SEARCH AUTOCOMPLETE ═══ */
.search-results-dropdown {
    max-height: 420px;
    overflow-y: auto;
    margin-top: 10px;
    border: 1px solid var(--border);
    background: var(--bg);
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}
.search-result-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    transition: background 0.2s;
}
.search-result-item:hover { background: var(--bg-soft); opacity: 1; }
.search-result-item:last-child { border-bottom: none; }
.search-result-img { width: 50px; height: 50px; flex-shrink: 0; border-radius: 6px; overflow: hidden; background: var(--bg-soft); display: flex; align-items: center; justify-content: center; }
.search-result-img img { width: 100%; height: 100%; object-fit: cover; }
.search-result-img span { font-size: 20px; color: var(--text-muted); }
.search-result-info { flex: 1; min-width: 0; }
.search-result-name { font-size: 14px; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.search-result-meta { display: flex; align-items: center; gap: 8px; margin-top: 3px; font-size: 12px; }
.search-result-price { font-weight: 600; color: var(--text); }
.search-result-old { color: var(--text-muted); text-decoration: line-through; }
.search-result-cat { color: var(--text-muted); }
.search-view-all { display: block; text-align: center; padding: 12px; font-size: 13px; font-weight: 600; color: var(--accent); border-top: 1px solid var(--border); }
.search-view-all:hover { background: var(--bg-soft); opacity: 1; }
.search-no-result { padding: 20px; text-align: center; color: var(--text-muted); font-size: 14px; }

/* ═══ FLOATING LABELS ═══ */
.float-field {
    position: relative;
    margin-bottom: 16px;
}
.float-field input,
.float-field select,
.float-field textarea {
    width: 100%;
    padding: 18px 14px 8px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 14px;
    transition: var(--transition);
    appearance: none;
}
.float-field textarea { min-height: 80px; resize: vertical; }
.float-field label {
    position: absolute;
    top: 50%;
    left: 14px;
    transform: translateY(-50%);
    font-size: 13px;
    color: var(--text-muted);
    pointer-events: none;
    transition: all 0.2s ease;
    background: var(--bg);
    padding: 0 4px;
}
.float-field textarea ~ label { top: 18px; transform: none; }
.float-field input:focus,
.float-field select:focus,
.float-field textarea:focus {
    outline: none;
    border-color: var(--text);
}
.float-field input:focus ~ label,
.float-field input:not(:placeholder-shown) ~ label,
.float-field select:focus ~ label,
.float-field select:valid ~ label,
.float-field textarea:focus ~ label,
.float-field textarea:not(:placeholder-shown) ~ label {
    top: 0;
    transform: translateY(-50%);
    font-size: 10px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--text);
}
.float-field select option { color: var(--text); background: var(--bg); }
.float-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* ═══ CART SIDEBAR ═══ */
.cart-sidebar-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.4);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}
.cart-sidebar-overlay.open {
    opacity: 1;
    visibility: visible;
}
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -420px;
    width: 400px;
    max-width: 90vw;
    height: 100vh;
    background: var(--bg);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    transition: right 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: -4px 0 20px rgba(0,0,0,0.1);
}
.cart-sidebar.open { right: 0; }

.cart-sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
}
.cart-sidebar-header h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 400;
}
.cart-sidebar-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text);
    padding: 0;
    line-height: 1;
}
.cart-sidebar-items {
    flex: 1;
    overflow-y: auto;
    padding: 16px 24px;
}
.cart-sidebar-empty {
    text-align: center;
    padding: 60px 0;
    color: var(--text-muted);
    font-size: 14px;
}
.cart-sidebar-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}
.cart-sidebar-item-img {
    width: 60px;
    height: 75px;
    overflow: hidden;
    background: var(--bg-soft);
    flex-shrink: 0;
}
.cart-sidebar-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-sidebar-item-info { flex: 1; min-width: 0; }
.cart-sidebar-item-name {
    font-size: 13px;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 4px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.cart-sidebar-item-meta {
    font-size: 12px;
    color: var(--text-muted);
}
.cart-sidebar-item-remove {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 18px;
    cursor: pointer;
    padding: 4px;
    flex-shrink: 0;
    transition: var(--transition);
}
.cart-sidebar-item-remove:hover { color: var(--sale); }

.cart-sidebar-footer {
    padding: 20px 24px;
    border-top: 1px solid var(--border);
}
.cart-sidebar-total {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

/* ═══ COLLAPSIBLE FILTER ═══ */
.filter-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
}
.shop-sidebar {
    display: none;
}
.shop-sidebar.open {
    display: block;
}

/* ═══ ABOUT / CONTACT PAGES ═══ */
.about-hero {
    background: var(--bg-soft);
    padding: 80px 0;
    text-align: center;
}
.about-hero h1 {
    font-family: var(--font-heading);
    font-size: 52px;
    font-weight: 400;
    margin-bottom: 16px;
}
.about-hero p {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}
.about-content { padding: 80px 0; }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 80px;
}
.about-grid.reverse { direction: rtl; }
.about-grid.reverse > * { direction: ltr; }
.about-image {
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--bg-soft);
    display: flex;
    align-items: center;
}
.about-image img { width: 100%; height: auto; object-fit: contain; border-radius: var(--radius); }
.about-text h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 16px;
}
.about-text p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 16px;
}
.about-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding: 60px 0;
    border-top: 1px solid var(--border);
}
.about-value { text-align: center; }
.about-value-icon { font-size: 28px; margin-bottom: 16px; }
.about-value h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 8px;
}
.about-value p { font-size: 13px; color: var(--text-secondary); line-height: 1.7; }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    padding: 60px 0;
}
.contact-info h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 16px;
}
.contact-info > p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 30px;
}
.contact-detail {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}
.contact-detail-icon {
    width: 40px;
    height: 40px;
    background: var(--bg-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 16px;
}
.contact-detail h4 {
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}
.contact-detail p { font-size: 14px; color: var(--text-secondary); }
.contact-detail a { color: var(--text-secondary); }
.contact-detail a:hover { color: var(--text); }

.contact-form {
    border: 1px solid var(--border);
    padding: 40px;
}
.contact-form h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1024px) {
    .container { padding: 0 24px; }
    .header-inner { padding: 16px 24px; }
    .products-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .features { grid-template-columns: repeat(2, 1fr); }
    .checkout-grid { grid-template-columns: 1fr; }
    .split-section { grid-template-columns: 1fr; }
    .split-content { padding: 40px; }
    .editorial-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav { display: none; }
    .header-inner { position: relative; justify-content: flex-start; }
    .mobile-toggle { display: block; order: -1; }
    .logo { position: absolute; left: 50%; transform: translateX(-50%); }
    .header-actions { margin-left: auto; }
    .nav.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg);
        border-bottom: 1px solid var(--border);
        padding: 20px;
        gap: 12px;
        z-index: 999;
    }
    .hero { height: 70vh; }
    .hero-title { font-size: 40px; }
    .hero-content { padding: 30px; }
    .products-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 12px; }
    .categories-grid { grid-template-columns: 1fr; }
    .product-detail { grid-template-columns: 1fr; gap: 30px; }
    .shop-layout { grid-template-columns: 1fr; }
    .shop-sidebar { position: static; }
    .about-grid { grid-template-columns: 1fr; gap: 30px; }
    .about-grid.reverse { direction: ltr; }
    .about-values { grid-template-columns: 1fr; gap: 30px; }
    .contact-grid { grid-template-columns: 1fr; gap: 30px; }
    .blog-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .blog-card-image { height: 160px; }
    .blog-card-title { font-size: 16px; }
    .contact-form { padding: 24px; }
    .account-layout { grid-template-columns: 1fr; }
    .account-sidebar { position: static; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; gap: 10px; }
    .newsletter { padding: 50px 24px; }
    .newsletter-form { flex-direction: column; }
    .newsletter-form input { border-right: 1px solid var(--border); }
    .cart-table, .cart-table tbody, .cart-table tr, .cart-table td { display: block; }
    .cart-table thead { display: none; }
    .cart-table tr {
        border: 1px solid var(--border);
        padding: 16px;
        margin-bottom: 12px;
        position: relative;
    }
    .cart-table td { padding: 0; border: none; }
    .cart-table td:nth-child(1) { margin-bottom: 12px; }
    .cart-td-total { display: none !important; }
    .cart-price-row {
        display: flex !important;
        gap: 20px;
        align-items: flex-start;
        margin-bottom: 10px;
    }
    .cart-price-label {
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        color: var(--text-muted);
        display: block !important;
        margin-bottom: 2px;
    }
    .cart-price-value {
        font-size: 14px;
        font-weight: 500;
    }
    .cart-table td:nth-child(3) { margin-bottom: 8px; }
    .cart-table td:nth-child(3) .quantity-selector { justify-content: flex-start; }
    .cart-table td:nth-child(5) { position: absolute; top: 12px; right: 12px; }
    .cart-product { flex-direction: row; gap: 12px; }
    .cart-product-image { width: 70px; height: 90px; }
    .cart-summary { max-width: 100%; }
    .section { padding: 50px 0; }
    .section-title { font-size: 30px; }
    .features { grid-template-columns: 1fr 1fr; gap: 15px; }
    .feature { padding: 20px; text-align: center; }
    .header-actions { gap: 12px; }
    .marquee-item { font-size: 12px; }
    .page-header h1 { font-size: 24px; }
    .checkout-section h3 { font-size: 16px; }
    .order-success-box { padding: 30px 20px; }
    [style*="grid-template-columns:1fr 1fr"],
    [style*="grid-template-columns: 1fr 1fr"] { grid-template-columns: 1fr !important; }

    /* Support widget & cookie popup mobile */
    #supportWidget { width: calc(100vw - 32px) !important; right: 16px !important; left: 16px !important; bottom: 80px !important; }
    #cookie-consent { left: 12px !important; right: 12px !important; max-width: none !important; }

    /* Product detail mobile tweaks */
    .product-detail { gap: 20px; padding: 20px 0 40px; }
    .product-main-image { aspect-ratio: 4/5; }
    .product-detail-info { padding-top: 0; }
    .product-detail-info h1 { font-size: 17px; line-height: 1.4; }
    .product-detail-info .price-current { font-size: 20px; }
    .product-detail-info .price-old { font-size: 14px; }
    .product-detail-info .price-discount { font-size: 11px; }
    .product-price { flex-wrap: wrap; gap: 6px; }
    .product-sku { font-size: 11px; margin-bottom: 10px; }
    .product-stock { font-size: 12px; margin-bottom: 14px; }
    .product-short-desc { font-size: 13px; margin-bottom: 16px; }
    .add-to-cart-bar { gap: 8px; padding: 14px 0; }
    .add-to-cart-bar .btn { font-size: 12px; padding: 12px 16px; letter-spacing: 0.5px; }
    .qty-btn { width: 36px; height: 42px; }
    .qty-input { width: 42px; height: 42px; font-size: 13px; }
    .add-to-cart-bar .btn-lg { padding: 12px 20px; font-size: 12px; }
    .product-thumbs-wrap { gap: 4px; margin-top: 6px; }
    .product-thumb { width: 52px; height: 66px; }
    .thumb-arrow { width: 24px; height: 50px; font-size: 16px; }
    .gallery-arrow { width: 32px; height: 32px; font-size: 20px; opacity: 1; }
    .product-bundles { padding: 12px; margin: 10px 0; }
    .bundle-tier { padding: 6px 8px; font-size: 12px; }
    .variation-btn { padding: 6px 14px; font-size: 12px; }
    .product-accordion-header { font-size: 12px; padding: 12px 0; }
    .product-accordion-content { font-size: 13px; }
    .reviews-section { margin-top: 30px; }
    .review-card { padding: 16px; }

    /* Logo mobile */
    .logo img { max-height: 30px !important; }
    .logo { font-size: 18px; }

    /* Hide filter on mobile */
    .shop-sidebar, .filter-toggle { display: none !important; }

    /* Products grid overflow fix */
    .shop-content { min-width: 0; overflow: hidden; }
    .shop-layout { gap: 0; overflow: hidden; }
    .products-grid { min-width: 0; }

    /* Support tickets table responsive */
    .orders-table thead { display: none; }
    .orders-table, .orders-table tbody, .orders-table tr, .orders-table td { display: block; }
    .orders-table tr {
        border: 1px solid var(--border);
        padding: 14px;
        margin-bottom: 12px;
        border-radius: 6px;
    }
    .orders-table td { padding: 4px 0; border: none; font-size: 13px; }

    /* Account page */
    .account-sidebar { padding: 16px; }
    .account-sidebar ul { display: flex; flex-wrap: wrap; gap: 8px; }
    .account-sidebar ul li { margin: 0; }
    .account-sidebar ul a { padding: 8px 14px; font-size: 12px; }
    .account-sidebar h3 { font-size: 16px; margin-bottom: 10px; }

    /* Search overlay mobile */
    .search-box input { font-size: 20px; }
    .search-results-dropdown { max-height: 300px; }
}

@media (max-width: 480px) {
    .products-grid { grid-template-columns: 1fr 1fr !important; gap: 8px; }
    .hero { height: 60vh; }
    .hero-title { font-size: 28px; }
    .hero-desc { font-size: 14px; }
    .hero-content { padding: 20px; }
    .hero-content .btn { padding: 10px 18px; font-size: 13px; }
    .logo { font-size: 18px; }
    .logo img { max-height: 26px !important; }
    .product-info { padding: 10px 0; }
    .product-name { font-size: 13px; }
    .price-current { font-size: 13px; }
    .container { padding: 0 12px; }
    .section-title { font-size: 24px; }
    .section-subtitle { font-size: 11px; }
    .features { grid-template-columns: 1fr 1fr; }
    .feature { border-right: none; border-bottom: 1px solid var(--border); }
    .newsletter h3 { font-size: 20px; }
    .float-field label { font-size: 13px; }
    .float-row { grid-template-columns: 1fr; gap: 0; }
    .checkout-grid { gap: 20px; }
    .split-content { padding: 30px 20px; }
    .split-content .section-title { font-size: 24px; }
    .header-inner { padding: 12px; }
    .header-actions { gap: 8px; }
    .page-header { padding: 20px 0; }
    .page-header h1 { font-size: 20px; }
    .low-stock-bar span { font-size: 10px; }
    .product-card .product-price { flex-wrap: wrap; }
    .product-card .price-old, .product-card .price-discount { font-size: 11px; }
    .blog-grid { grid-template-columns: 1fr; }
    .blog-card-image { height: 180px; }
    .blog-post-content { font-size: 15px; }
}

/* Bundle / Quantity Discount */
.product-bundles {
    border: 1px solid var(--border);
    padding: 15px;
    margin: 15px 0;
}
.product-bundles .bundle-title {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}
.bundle-tier {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 12px;
    font-size: 13px;
    border-bottom: 1px solid var(--border);
}
.bundle-tier:last-child { border-bottom: none; }
.bundle-qty { font-weight: 600; min-width: 70px; }
.bundle-discount { color: var(--success, #27ae60); font-weight: 500; }
.bundle-price { margin-left: auto; font-weight: 600; }
.cart-bundle-badge {
    display: inline-block;
    font-size: 10px;
    background: var(--success, #27ae60);
    color: #fff;
    padding: 1px 6px;
    border-radius: 3px;
    margin-left: 4px;
    font-weight: 500;
}
