/* ===== LEVI ATTIRE LLC - Main Stylesheet ===== */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500;600;700&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&display=swap');

:root {
    --bg: #FAF8F5;
    --bg2: #F2EDE7;
    --white: #ffffff;
    --text: #2A1F1A;
    --text-light: #7A6A60;
    --border: #E0D6CC;
    --accent: #C8956C;
    --accent-dark: #A67552;
    --sage: #7A8C6E;
    --sand: #E8DDD2;
    --sale: #B5451B;
    --font-body: 'DM Sans', sans-serif;
    --font-display: 'Cormorant Garamond', serif;
    --radius: 2px;
    --radius-lg: 6px;
    --shadow-sm: 0 1px 4px rgba(42, 31, 26, 0.07);
    --shadow-md: 0 6px 20px rgba(42, 31, 26, 0.10);
    --shadow-lg: 0 20px 60px rgba(42, 31, 26, 0.14);
    --transition: 0.22s ease;
    --header-h: 64px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    font-size: 16px;
    scroll-behavior: smooth
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    overflow-x: hidden
}

a {
    text-decoration: none;
    color: inherit
}

img {
    max-width: 100%;
    display: block
}

ul {
    list-style: none
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: var(--font-body)
}

input,
select,
textarea {
    font-family: var(--font-body)
}

/* ===== PROMO BANNER ===== */
.promo-banner {
    background: var(--text);
    color: var(--white);
    text-align: center;
    padding: 9px 40px;
    font-size: 12px;
    letter-spacing: 1px;
    position: relative;
    z-index: 200;
    font-weight: 400
}

.promo-close {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--white);
    font-size: 13px;
    opacity: 0.65;
    transition: opacity var(--transition)
}

.promo-close:hover {
    opacity: 1
}

/* ===== HEADER ===== */
.header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 100;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    transition: box-shadow var(--transition)
}

.header.scrolled {
    box-shadow: var(--shadow-md)
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
    height: var(--header-h)
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    line-height: 1
}

.logo-text {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--text)
}

.logo-sub {
    font-size: 7px;
    letter-spacing: 3px;
    color: var(--text-light);
    text-transform: uppercase;
    margin-top: 2px
}

.main-nav {
    display: flex
}

.nav-list {
    display: flex;
    gap: 0
}

.nav-item {
    position: relative
}

.nav-link {
    display: block;
    padding: 0 20px;
    height: var(--header-h);
    line-height: var(--header-h);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text);
    transition: color var(--transition)
}

.nav-link:hover,
.nav-item:hover .nav-link {
    color: var(--accent)
}

.sale-link {
    color: var(--sale) !important
}

/* Mega Menu */
.mega-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg);
    border-top: 2px solid var(--accent);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    min-width: 440px;
    padding: 28px;
    z-index: 200
}

.nav-item.has-mega:hover .mega-menu {
    display: block
}

.mega-inner {
    display: flex;
    gap: 32px
}

.mega-col h4 {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 14px;
    color: var(--text-light)
}

.mega-col ul li {
    margin-bottom: 8px
}

.mega-col ul li a {
    font-size: 13px;
    color: var(--text);
    transition: all var(--transition)
}

.mega-col ul li a:hover {
    color: var(--accent);
    padding-left: 4px
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 6px
}

.action-btn {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--text);
    border-radius: 50%;
    transition: background var(--transition);
    position: relative
}

.action-btn:hover {
    background: var(--sand)
}

.cart-count {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 16px;
    height: 16px;
    background: var(--accent);
    color: var(--white);
    font-size: 9px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center
}

/* Search Bar */
.search-bar {
    display: none;
    border-top: 1px solid var(--border);
    padding: 16px 32px;
    background: var(--bg)
}

.search-bar.active {
    display: block
}

.search-inner {
    display: flex;
    align-items: center;
    gap: 8px;
    max-width: 520px;
    margin: 0 auto;
    border: 1px solid var(--text);
    border-radius: var(--radius)
}

.search-inner input {
    flex: 1;
    padding: 11px 16px;
    border: none;
    outline: none;
    font-size: 13px;
    background: transparent;
    letter-spacing: 0.3px
}

.search-submit,
.search-close {
    padding: 11px 14px;
    font-size: 13px;
    color: var(--text-light);
    transition: color var(--transition)
}

.search-submit:hover,
.search-close:hover {
    color: var(--text)
}

.search-results {
    max-width: 520px;
    margin: 12px auto 0;
    display: flex;
    flex-direction: column;
    gap: 6px
}

.search-result-item {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 8px;
    border-radius: var(--radius);
    transition: background var(--transition);
    cursor: pointer
}

.search-result-item:hover {
    background: var(--sand)
}

.search-result-item img {
    width: 44px;
    height: 56px;
    object-fit: cover;
    border-radius: var(--radius)
}

.search-result-item .sri-name {
    font-size: 13px;
    font-weight: 500
}

.search-result-item .sri-price {
    font-size: 12px;
    color: var(--text-light)
}

/* Mobile Nav */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px
}

.mobile-menu-btn span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--text);
    transition: all var(--transition)
}

.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(42, 31, 26, 0.45);
    z-index: 300
}

.mobile-overlay.active {
    display: block
}

.mobile-nav {
    position: fixed;
    top: 0;
    left: -300px;
    width: 280px;
    height: 100%;
    background: var(--bg);
    z-index: 400;
    transition: left 0.3s ease;
    overflow-y: auto;
    box-shadow: var(--shadow-lg)
}

.mobile-nav.active {
    left: 0
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    border-bottom: 1px solid var(--border)
}

.mobile-nav-header .logo-text {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600
}

.mobile-close {
    font-size: 18px;
    color: var(--text)
}

.mobile-nav-list li a {
    display: block;
    padding: 14px 24px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    border-bottom: 1px solid var(--bg2);
    transition: background var(--transition)
}

.mobile-nav-list li a:hover {
    background: var(--sand)
}

/* ===== HERO ===== */
.hero {
    position: relative;
    height: 88vh;
    min-height: 520px;
    overflow: hidden
}

.hero-slides {
    position: relative;
    width: 100%;
    height: 100%
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.9s ease;
    display: flex;
    align-items: center;
    padding: 0 80px
}

.hero-slide.active {
    opacity: 1
}

.hero-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(42, 31, 26, 0.55) 0%, rgba(42, 31, 26, 0.15) 55%, transparent 100%)
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 520px
}

.hero-eyebrow {
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 14px;
    opacity: 0.85
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(48px, 6.5vw, 90px);
    font-weight: 400;
    line-height: 1.05;
    margin-bottom: 18px;
    font-style: italic
}

.hero-subtitle {
    font-size: 15px;
    opacity: 0.85;
    margin-bottom: 36px;
    font-weight: 300
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap
}

.hero-controls {
    position: absolute;
    bottom: 36px;
    right: 80px;
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 2
}

.hero-prev,
.hero-next {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.6);
    color: var(--white);
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition)
}

.hero-prev:hover,
.hero-next:hover {
    background: var(--white);
    color: var(--text)
}

.hero-dots {
    display: flex;
    gap: 8px
}

.dot {
    width: 24px;
    height: 2px;
    background: rgba(255, 255, 255, 0.38);
    cursor: pointer;
    transition: all var(--transition);
    border-radius: 2px
}

.dot.active {
    background: var(--white);
    width: 40px
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 32px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: var(--radius);
    transition: all var(--transition);
    cursor: pointer;
    font-family: var(--font-body)
}

.btn-white {
    background: var(--white);
    color: var(--text)
}

.btn-white:hover {
    background: var(--sand);
    transform: translateY(-1px)
}

.btn-outline-white {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.75);
    color: var(--white)
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.15)
}

.btn-dark {
    background: var(--text);
    color: var(--white)
}

.btn-dark:hover {
    background: #3E2E27;
    transform: translateY(-1px)
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--text);
    color: var(--text)
}

.btn-outline:hover {
    background: var(--text);
    color: var(--white)
}

.btn-accent {
    background: var(--accent);
    color: var(--white)
}

.btn-accent:hover {
    background: var(--accent-dark);
    transform: translateY(-1px)
}

/* ===== GENERAL ===== */
.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 32px
}

.section {
    padding: 72px 0
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.5vw, 48px);
    font-weight: 500;
    margin-bottom: 36px
}

.section-title em {
    font-style: italic;
    color: var(--accent)
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 36px
}

.section-header .section-title {
    margin-bottom: 0
}

.view-all {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text);
    transition: gap var(--transition)
}

.view-all:hover {
    gap: 10px
}

/* ===== PRODUCT TABS ===== */
.product-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 32px;
    border-bottom: 1px solid var(--border)
}

.tab-btn {
    padding: 10px 22px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-light);
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    transition: all var(--transition)
}

.tab-btn.active,
.tab-btn:hover {
    color: var(--text);
    border-bottom-color: var(--accent)
}

/* ===== CATEGORY CARDS ===== */
.cat-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 2px;
    height: 580px
}

.cat-col-right {
    display: flex;
    flex-direction: column;
    gap: 2px
}

.cat-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: block
}

.cat-card:not(.cat-small) {
    height: 100%
}

.cat-small {
    flex: 1
}

.cat-img {
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease
}

.cat-card:hover .cat-img {
    transform: scale(1.04)
}

.cat-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px;
    background: linear-gradient(to top, rgba(42, 31, 26, 0.72), transparent);
    color: var(--white)
}

.cat-info h3 {
    font-family: var(--font-display);
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 4px;
    font-style: italic
}

.cat-info span {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.9
}

/* ===== PRODUCT GRID ===== */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px
}

/* ===== PRODUCT CARD ===== */
.product-card {
    position: relative;
    cursor: pointer
}

.product-card-img {
    position: relative;
    overflow: hidden;
    background: var(--bg2);
    aspect-ratio: 3/4;
    border-radius: 0
}

.product-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease
}

.product-card:hover .product-card-img img {
    transform: scale(1.06)
}

.product-badge {
    display: inline-block;
    padding: 4px 10px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2
}

.badge-sale {
    background: var(--sale);
    color: var(--white)
}

.badge-new {
    background: var(--text);
    color: var(--white)
}

.product-card-actions {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 14px;
    display: flex;
    gap: 8px;
    transform: translateY(100%);
    transition: transform var(--transition);
    background: linear-gradient(to top, rgba(42, 31, 26, 0.25), transparent)
}

.product-card:hover .product-card-actions {
    transform: translateY(0)
}

.quick-add {
    flex: 1;
    padding: 10px;
    background: var(--white);
    color: var(--text);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: var(--radius);
    font-family: var(--font-body);
    transition: background var(--transition)
}

.quick-add:hover {
    background: var(--sand)
}

.wishlist-btn {
    width: 38px;
    height: 38px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all var(--transition)
}

.wishlist-btn:hover {
    background: var(--sand)
}

.product-card-info {
    padding: 14px 0 0
}

.product-card-brand {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 3px
}

.product-card-name {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 6px;
    color: var(--text)
}

.product-card-price .price-reg {
    font-size: 14px;
    font-weight: 500;
}

.product-card-price .price-orig {
    font-size: 13px;
    color: var(--text-light);
    text-decoration: line-through;
    margin-right: 6px
}

.product-card-price .price-sale {
    font-size: 14px;
    font-weight: 600;
    color: var(--sale)
}

.product-card-colors {
    display: flex;
    gap: 5px;
    margin-top: 7px
}

.color-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid var(--border);
    display: inline-block
}

/* ===== ABOUT STRIP ===== */
.about-strip {
    background: var(--bg2);
    padding: 40px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border)
}

.about-strip-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center
}

.about-strip-item i {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--accent)
}

.about-strip-item h4 {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 4px
}

.about-strip-item p {
    font-size: 12px;
    color: var(--text-light)
}

/* ===== PROMO SECTION ===== */
.promo-wrap {
    position: relative;
    height: 380px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center
}

.promo-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(42, 31, 26, 0.45)
}

.promo-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    padding: 0 80px;
    max-width: 600px
}

.promo-content h2 {
    font-family: var(--font-display);
    font-size: clamp(34px, 5vw, 60px);
    font-weight: 400;
    font-style: italic;
    line-height: 1.1;
    margin-bottom: 16px
}

.promo-content p {
    font-size: 15px;
    opacity: 0.85;
    margin-bottom: 28px;
    font-weight: 300
}

/* ===== EDITORIAL STRIP ===== */
.editorial-strip {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    height: 420px
}

.editorial-item {
    position: relative;
    overflow: hidden;
    cursor: pointer
}

.editorial-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease
}

.editorial-item:hover img {
    transform: scale(1.05)
}

.editorial-label {
    position: absolute;
    bottom: 24px;
    left: 24px;
    color: var(--white);
    background: rgba(42, 31, 26, 0.6);
    padding: 8px 16px;
    font-family: var(--font-display);
    font-size: 18px;
    font-style: italic
}

/* ===== NEWSLETTER ===== */
.newsletter {
    background: var(--text);
    color: var(--white);
    padding: 64px 0;
    text-align: center
}

.newsletter h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 400;
    margin-bottom: 12px;
    font-style: italic
}

.newsletter p {
    font-size: 14px;
    opacity: 0.75;
    margin-bottom: 32px;
    font-weight: 300
}

.newsletter-form {
    display: flex;
    max-width: 440px;
    margin: 0 auto
}

.newsletter-form input {
    flex: 1;
    padding: 14px 18px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    font-size: 13px;
    font-family: var(--font-body);
    outline: none;
    border-radius: var(--radius) 0 0 var(--radius)
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.45)
}

.newsletter-form button {
    padding: 14px 22px;
    background: var(--accent);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-family: var(--font-body);
    cursor: pointer;
    border-radius: 0 var(--radius) var(--radius) 0;
    transition: background var(--transition)
}

.newsletter-form button:hover {
    background: var(--accent-dark)
}

/* ===== FOOTER ===== */
.footer {
    background: var(--bg);
    border-top: 1px solid var(--border);
    padding: 56px 0 0
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px
}

.footer-brand .logo {
    align-items: flex-start
}

.footer-brand p {
    font-size: 13px;
    color: var(--text-light);
    margin-top: 14px;
    margin-bottom: 20px;
    line-height: 1.7
}

.social-links {
    display: flex;
    gap: 12px
}

.social-links a {
    width: 34px;
    height: 34px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: var(--text-light);
    transition: all var(--transition)
}

.social-links a:hover {
    background: var(--text);
    color: var(--white);
    border-color: var(--text)
}

.footer-col h5 {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 18px;
    color: var(--text)
}

.footer-col ul li {
    margin-bottom: 10px
}

.footer-col ul li a {
    font-size: 13px;
    color: var(--text-light);
    transition: color var(--transition)
}

.footer-col ul li a:hover {
    color: var(--text)
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.footer-bottom p {
    font-size: 12px;
    color: var(--text-light)
}

.payment-icons {
    display: flex;
    gap: 8px;
    font-size: 20px;
    color: var(--text-light)
}

/* ===== TOAST ===== */
.toast {
    position: fixed;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: var(--text);
    color: var(--white);
    padding: 12px 24px;
    border-radius: var(--radius);
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 9999;
    white-space: nowrap
}

.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0)
}

.toast i {
    color: var(--accent)
}

/* ===== PAGE HERO ===== */
.page-hero {
    background: var(--bg2);
    padding: 48px 0;
    border-bottom: 1px solid var(--border);
    margin-bottom: 44px
}

.page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(30px, 4.5vw, 56px);
    font-weight: 500;
    font-style: italic;
    margin-bottom: 6px
}

.page-hero p {
    font-size: 14px;
    color: var(--text-light)
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 0;
    font-size: 11px;
    color: var(--text-light);
    letter-spacing: 0.3px
}

.breadcrumb a {
    color: var(--text-light);
    transition: color var(--transition)
}

.breadcrumb a:hover {
    color: var(--text)
}

/* ===== PRODUCTS PAGE ===== */
.products-layout {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 36px;
    padding: 0 0 72px
}

.filter-sidebar {
    padding-top: 4px
}

.filter-sidebar h3 {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px
}

.filter-group {
    border-top: 1px solid var(--border);
    padding: 14px 0
}

.filter-group h4 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer
}

.filter-group .filter-options {
    display: none;
    margin-top: 14px;
    flex-direction: column;
    gap: 10px
}

.filter-group.open .filter-options {
    display: flex
}

.filter-opt {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    cursor: pointer;
    color: var(--text)
}

.filter-opt input[type=checkbox] {
    width: 14px;
    height: 14px;
    cursor: pointer;
    accent-color: var(--accent)
}

.products-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border)
}

.products-count {
    font-size: 12px;
    color: var(--text-light)
}

.sort-select {
    padding: 8px 12px;
    border: 1px solid var(--border);
    font-size: 12px;
    font-family: var(--font-body);
    cursor: pointer;
    background: var(--bg);
    outline: none;
    transition: border-color var(--transition)
}

.sort-select:focus {
    border-color: var(--text)
}

.products-grid-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px
}

/* ===== PRODUCT DETAIL ===== */
.product-detail {
    padding: 24px 0 72px
}

.product-detail-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start
}

.product-gallery {
    position: sticky;
    top: 80px
}

.gallery-main {
    overflow: hidden;
    background: var(--bg2);
    aspect-ratio: 3/4;
    margin-bottom: 10px
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px
}

.stars {
    color: #C8956C;
    font-size: 13px;
    display: flex;
    gap: 2px
}

.rating-count {
    font-size: 12px;
    color: var(--text-light);
    text-decoration: underline;
    cursor: pointer
}

.price-display {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px
}

.price-reg {
    font-size: 22px;
    font-weight: 500;
    font-family: var(--font-display)
}

.price-orig {
    font-size: 16px;
    color: var(--text-light);
    text-decoration: line-through
}

.price-sale {
    font-size: 22px;
    font-weight: 600;
    color: var(--sale);
    font-family: var(--font-display)
}

.product-desc {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.75;
    margin-bottom: 24px
}

.color-label {
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px
}

.color-selector {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 20px
}

.swatch {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 2px solid var(--border);
    cursor: pointer;
    transition: all 0.2s ease
}

.swatch.active {
    border-color: var(--text)
}

.swatch:hover {
    transform: scale(1.12)
}

.size-label {
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.size-label a {
    font-weight: 400;
    color: var(--text-light);
    text-decoration: underline;
    font-size: 11px;
    letter-spacing: 0
}

.size-selector {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 20px
}

.size-btn {
    min-width: 46px;
    height: 46px;
    padding: 0 12px;
    border: 1px solid var(--border);
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition);
    font-family: var(--font-body);
    background: var(--bg)
}

.size-btn:hover {
    border-color: var(--text)
}

.size-btn.active {
    background: var(--text);
    color: var(--white);
    border-color: var(--text)
}

.add-to-cart-row {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-bottom: 20px
}

.qty-selector {
    display: flex;
    align-items: center;
    border: 1px solid var(--border)
}

.qty-btn {
    width: 40px;
    height: 48px;
    font-size: 12px;
    color: var(--text);
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background var(--transition)
}

.qty-btn:hover {
    background: var(--sand)
}

.qty-input {
    width: 44px;
    height: 48px;
    border: none;
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    font-family: var(--font-body);
    outline: none;
    background: var(--bg)
}

.qty-input::-webkit-inner-spin-button,
.qty-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0
}

.product-details-accordion {
    border-top: 1px solid var(--border)
}

.accordion-item {
    border-bottom: 1px solid var(--border)
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: color var(--transition)
}

.accordion-header:hover {
    color: var(--text-light)
}

.accordion-body {
    display: none;
    padding: 0 0 18px;
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.75
}

.accordion-body.open {
    display: block
}

/* ===== CART ===== */
.cart-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 48px;
    padding: 0 0 72px
}

.cart-items {
    display: flex;
    flex-direction: column
}

.cart-item {
    display: grid;
    grid-template-columns: 96px 1fr auto;
    gap: 20px;
    align-items: start;
    padding: 24px 0;
    border-bottom: 1px solid var(--border)
}

.cart-item-img {
    background: var(--bg2)
}

.cart-item-img img {
    width: 96px;
    height: 124px;
    object-fit: cover;
    display: block
}

.cart-item-name {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 3px
}

.cart-item-variant {
    font-size: 11px;
    color: var(--text-light);
    margin-bottom: 12px
}

.cart-item-price {
    font-size: 15px;
    font-weight: 500;
    white-space: nowrap;
    font-family: var(--font-display)
}

.cart-item-remove {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-decoration: underline;
    cursor: pointer;
    color: var(--text-light);
    text-transform: uppercase;
    transition: color var(--transition)
}

.cart-item-remove:hover {
    color: var(--sale)
}

.cart-summary {
    background: var(--bg2);
    border: 1px solid var(--border);
    padding: 28px;
    height: fit-content;
    position: sticky;
    top: 80px
}

.cart-summary h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border)
}

.promo-input {
    display: flex;
    margin-bottom: 16px
}

.promo-input input {
    flex: 1;
    padding: 10px 12px;
    border: 1px solid var(--border);
    font-size: 12px;
    outline: none;
    transition: border-color var(--transition);
    background: var(--bg)
}

.promo-input input:focus {
    border-color: var(--text)
}

.promo-input button {
    padding: 10px 16px;
    background: var(--text);
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-family: var(--font-body);
    cursor: pointer;
    transition: background var(--transition)
}

.promo-input button:hover {
    background: var(--accent-dark)
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 13px
}

.summary-row.total {
    font-weight: 600;
    font-size: 15px;
    border-top: 1px solid var(--text);
    margin-top: 8px;
    padding-top: 14px;
    font-family: var(--font-display)
}

.empty-cart {
    text-align: center;
    padding: 80px 20px;
    color: var(--text-light)
}

.empty-cart i {
    font-size: 44px;
    margin-bottom: 20px;
    opacity: 0.25
}

.empty-cart h2 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 10px;
    color: var(--text)
}

.empty-cart p {
    margin-bottom: 24px;
    font-size: 14px
}

/* ===== CHECKOUT ===== */
.checkout-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 56px;
    padding: 40px 0 72px
}

.checkout-form h2 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 18px
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px
}

.form-grid.full {
    grid-template-columns: 1fr
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px
}

.form-group label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-light)
}

.form-group input,
.form-group select {
    padding: 12px 14px;
    border: 1px solid var(--border);
    font-size: 13px;
    outline: none;
    transition: border-color var(--transition);
    font-family: var(--font-body);
    background: var(--bg)
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--text)
}

.payment-tabs {
    display: flex;
    border: 1px solid var(--border);
    overflow: hidden;
    margin-bottom: 20px
}

.payment-tab {
    flex: 1;
    padding: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    background: var(--bg);
    transition: all var(--transition)
}

.payment-tab.active {
    background: var(--text);
    color: var(--white)
}

.payment-tab:not(.active):hover {
    background: var(--sand)
}

.order-summary-sidebar {
    background: var(--bg2);
    border: 1px solid var(--border);
    padding: 26px;
    height: fit-content;
    position: sticky;
    top: 80px
}

.order-summary-sidebar h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border)
}

.order-item {
    display: flex;
    gap: 12px;
    align-items: start;
    padding: 10px 0;
    border-bottom: 1px solid var(--border)
}

.order-item img {
    width: 60px;
    height: 78px;
    object-fit: cover;
    background: var(--bg)
}

.order-item-name {
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 2px
}

.order-item-variant {
    font-size: 10px;
    color: var(--text-light);
    margin-bottom: 4px
}

.order-item-price {
    font-size: 13px;
    font-weight: 600;
    font-family: var(--font-display)
}

/* ===== ABOUT ===== */
.about-hero {
    height: 440px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    position: relative
}

.about-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(42, 31, 26, 0.65), rgba(42, 31, 26, 0.1))
}

.about-hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    padding: 52px;
    max-width: 640px
}

.about-hero-content h1 {
    font-family: var(--font-display);
    font-size: clamp(40px, 5.5vw, 72px);
    font-weight: 400;
    font-style: italic;
    line-height: 1;
    margin-bottom: 12px
}

.about-hero-content p {
    font-size: 16px;
    opacity: 0.85;
    font-weight: 300
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    padding: 72px 0
}

.about-text h2 {
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 400;
    font-style: italic;
    margin-bottom: 20px
}

.about-text p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.85;
    margin-bottom: 16px
}

.about-img img {
    width: 100%;
    height: 520px;
    object-fit: cover
}

/* ===== CONTACT ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    padding: 52px 0 72px
}

.contact-info h2 {
    font-family: var(--font-display);
    font-size: 34px;
    font-weight: 400;
    font-style: italic;
    margin-bottom: 14px
}

.contact-info>p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.75;
    margin-bottom: 28px
}

.contact-detail {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 20px
}

.contact-detail i {
    width: 36px;
    height: 36px;
    background: var(--sand);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0
}

.contact-detail h4 {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 3px
}

.contact-detail p {
    font-size: 13px;
    color: var(--text-light)
}

.contact-form-wrap {
    background: var(--bg2);
    border: 1px solid var(--border);
    padding: 36px
}

.contact-form-wrap h3 {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 500;
    margin-bottom: 24px
}

.contact-form .form-group {
    margin-bottom: 14px
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr)
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr
    }

    .cat-grid {
        grid-template-columns: 1fr 1fr;
        height: auto
    }

    .cat-col-right {
        display: contents
    }

    .cat-small {
        height: 280px
    }
}

@media (max-width: 768px) {
    .header-top {
        padding: 0 16px
    }

    .mobile-menu-btn {
        display: flex
    }

    .main-nav {
        display: none
    }

    .hero-slide {
        padding: 0 24px
    }

    .hero-controls {
        right: 24px
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .about-strip-inner {
        grid-template-columns: 1fr 1fr;
        gap: 24px
    }

    .promo-content {
        padding: 0 24px
    }

    .editorial-strip {
        grid-template-columns: 1fr
    }

    .footer-grid {
        grid-template-columns: 1fr
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center
    }

    .newsletter-form {
        flex-direction: column
    }

    .products-layout {
        grid-template-columns: 1fr
    }

    .filter-sidebar {
        display: none
    }

    .product-detail-layout {
        grid-template-columns: 1fr
    }

    .cart-layout {
        grid-template-columns: 1fr
    }

    .checkout-layout {
        grid-template-columns: 1fr
    }

    .about-grid {
        grid-template-columns: 1fr
    }

    .contact-grid {
        grid-template-columns: 1fr
    }

    .cat-grid {
        grid-template-columns: 1fr;
        height: auto
    }
}