/* ===== CIDER CLOTHES LLC - Main Stylesheet ===== */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;500;600;700;800&family=Abril+Fatface&display=swap');

:root {
    --bg: #FDFCF8;
    --bg2: #F4F0E8;
    --white: #ffffff;
    --text: #3D3228;
    --text-light: #826F5F;
    --border: #DEDAD0;
    --accent: #7D9B76;
    --accent-dark: #5E7A57;
    --rose: #B97A96;
    --sage: #7D9B76;
    --butter: #F5E6C8;
    --sale: #C0392B;
    --font-body: 'Nunito', sans-serif;
    --font-display: 'Abril Fatface', cursive;
    --radius: 12px;
    --radius-sm: 8px;
    --shadow-sm: 0 2px 8px rgba(61, 50, 40, 0.08);
    --shadow-md: 0 8px 24px rgba(61, 50, 40, 0.11);
    --shadow-lg: 0 24px 64px rgba(61, 50, 40, 0.15);
    --transition: 0.22s ease;
    --header-h: 68px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    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: linear-gradient(135deg, var(--rose), #C48AAA);
    color: var(--white);
    text-align: center;
    padding: 9px 40px;
    font-size: 12px;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 200;
    font-weight: 600
}

.promo-close {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--white);
    font-size: 13px;
    opacity: 0.8;
    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: 2px 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 28px;
    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: 22px;
    color: var(--text);
    letter-spacing: 1px
}

.logo-sub {
    font-size: 8px;
    letter-spacing: 2.5px;
    color: var(--text-light);
    text-transform: uppercase;
    margin-top: 1px
}

.main-nav {
    display: flex
}

.nav-list {
    display: flex;
    gap: 0
}

.nav-item {
    position: relative
}

.nav-link {
    display: block;
    padding: 0 18px;
    height: var(--header-h);
    line-height: var(--header-h);
    font-size: 13px;
    font-weight: 700;
    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-radius: 0 0 var(--radius) var(--radius);
    border: 2px solid var(--border);
    border-top: 3px solid var(--accent);
    box-shadow: var(--shadow-lg);
    min-width: 360px;
    padding: 24px;
    z-index: 200
}

.nav-item.has-mega:hover .mega-menu {
    display: block
}

.mega-inner {
    display: flex;
    gap: 28px
}

.mega-col h4 {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
    color: var(--accent)
}

.mega-col ul li {
    margin-bottom: 8px
}

.mega-col ul li a {
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    transition: all var(--transition)
}

.mega-col ul li a:hover {
    color: var(--rose);
    padding-left: 4px
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 4px
}

.action-btn {
    width: 40px;
    height: 40px;
    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(--bg2)
}

.cart-count {
    position: absolute;
    top: 3px;
    right: 3px;
    width: 17px;
    height: 17px;
    background: var(--rose);
    color: var(--white);
    font-size: 9px;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center
}

/* Search Bar */
.search-bar {
    display: none;
    border-top: 2px solid var(--border);
    padding: 16px 28px;
    background: var(--bg)
}

.search-bar.active {
    display: block
}

.search-inner {
    display: flex;
    align-items: center;
    gap: 8px;
    max-width: 500px;
    margin: 0 auto;
    background: var(--bg2);
    border-radius: 50px;
    padding: 4px 12px;
    border: 2px solid transparent;
    transition: border-color var(--transition)
}

.search-inner:focus-within {
    border-color: var(--accent)
}

.search-inner input {
    flex: 1;
    padding: 9px 12px;
    border: none;
    outline: none;
    font-size: 13px;
    background: transparent;
    font-weight: 600
}

.search-submit,
.search-close {
    padding: 9px 12px;
    font-size: 13px;
    color: var(--text-light);
    transition: color var(--transition)
}

.search-submit:hover,
.search-close:hover {
    color: var(--accent)
}

.search-results {
    max-width: 500px;
    margin: 10px auto 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: var(--bg);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md)
}

.search-result-item {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 8px 12px;
    cursor: pointer;
    transition: background var(--transition)
}

.search-result-item:hover {
    background: var(--bg2)
}

.search-result-item img {
    width: 42px;
    height: 54px;
    object-fit: cover;
    border-radius: var(--radius-sm)
}

.search-result-item .sri-name {
    font-size: 13px;
    font-weight: 700
}

.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: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all var(--transition)
}

.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(61, 50, 40, 0.4);
    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: 16px 20px;
    border-bottom: 2px solid var(--border)
}

.mobile-nav-header .logo-text {
    font-family: var(--font-display);
    font-size: 20px
}

.mobile-close {
    font-size: 18px;
    color: var(--text)
}

.mobile-nav-list li a {
    display: block;
    padding: 13px 20px;
    font-size: 14px;
    font-weight: 700;
    border-bottom: 1px solid var(--bg2);
    transition: background var(--transition)
}

.mobile-nav-list li a:hover {
    background: var(--bg2);
    color: var(--accent)
}

/* ===== HERO ===== */
.hero {
    position: relative;
    height: 90vh;
    min-height: 540px;
    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.85s 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(110deg, rgba(61, 50, 40, 0.58) 0%, rgba(61, 50, 40, 0.2) 50%, transparent 100%)
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 550px
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 18px;
    background: var(--rose);
    padding: 5px 14px;
    border-radius: 50px
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(44px, 6.5vw, 88px);
    line-height: 1.05;
    margin-bottom: 18px
}

.hero-subtitle {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 36px;
    font-weight: 500
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap
}

.hero-controls {
    position: absolute;
    bottom: 32px;
    right: 80px;
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 2
}

.hero-prev,
.hero-next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    border: 2px solid rgba(255, 255, 255, 0.55);
    color: var(--white);
    font-size: 13px;
    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: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--transition)
}

.dot.active {
    background: var(--white);
    width: 28px;
    border-radius: 4px
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 28px;
    font-size: 13px;
    font-weight: 800;
    border-radius: 50px;
    transition: all var(--transition);
    cursor: pointer;
    font-family: var(--font-body)
}

.btn-white {
    background: var(--white);
    color: var(--text)
}

.btn-white:hover {
    background: var(--butter);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md)
}

.btn-outline-white {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.7);
    color: var(--white)
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.2)
}

.btn-dark {
    background: var(--text);
    color: var(--white)
}

.btn-dark:hover {
    background: var(--rose);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md)
}

.btn-outline {
    background: transparent;
    border: 2px 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(-2px)
}

.btn-rose {
    background: var(--rose);
    color: var(--white)
}

.btn-rose:hover {
    background: #A06882;
    transform: translateY(-2px)
}

/* ===== GENERAL ===== */
.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 28px
}

.section {
    padding: 72px 0
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 50px);
    margin-bottom: 32px;
    line-height: 1.1
}

.section-title .highlight {
    color: var(--rose)
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 32px
}

.section-header .section-title {
    margin-bottom: 0
}

.view-all {
    font-size: 13px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--accent);
    background: var(--bg2);
    padding: 8px 16px;
    border-radius: 50px;
    transition: all var(--transition)
}

.view-all:hover {
    background: var(--accent);
    color: var(--white)
}

/* ===== PRODUCT TABS ===== */
.product-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 28px;
    flex-wrap: wrap
}

.tab-btn {
    padding: 8px 20px;
    font-size: 12px;
    font-weight: 800;
    border-radius: 50px;
    border: 2px solid var(--border);
    background: transparent;
    color: var(--text-light);
    transition: all var(--transition)
}

.tab-btn.active {
    background: var(--rose);
    border-color: var(--rose);
    color: var(--white)
}

.tab-btn:hover:not(.active) {
    border-color: var(--accent);
    color: var(--accent)
}

/* ===== CATEGORY CARDS ===== */
.cat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px
}

.cat-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: block;
    border-radius: var(--radius)
}

.cat-card-img {
    height: 340px;
    background-size: cover;
    background-position: center;
    transition: transform 0.55s ease
}

.cat-card:hover .cat-card-img {
    transform: scale(1.06)
}

.cat-card-info {
    padding: 16px 0 0;
    text-align: center
}

.cat-card-info h3 {
    font-family: var(--font-display);
    font-size: 22px;
    margin-bottom: 2px
}

.cat-card-info span {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-light)
}

/* ===== PRODUCT GRID ===== */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px
}

/* ===== PRODUCT CARD ===== */
.product-card {
    position: relative;
    cursor: pointer
}

.product-card-img {
    position: relative;
    overflow: hidden;
    background: var(--bg2);
    aspect-ratio: 3/4;
    border-radius: var(--radius)
}

.product-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease
}

.product-card:hover .product-card-img img {
    transform: scale(1.07)
}

.product-badge {
    display: inline-block;
    padding: 4px 12px;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    border-radius: 50px
}

.badge-sale {
    background: var(--sale);
    color: var(--white)
}

.badge-new {
    background: var(--rose);
    color: var(--white)
}

.product-card-actions {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px;
    display: flex;
    gap: 8px;
    transform: translateY(100%);
    transition: transform var(--transition)
}

.product-card:hover .product-card-actions {
    transform: translateY(0)
}

.quick-add {
    flex: 1;
    padding: 10px;
    background: var(--white);
    color: var(--text);
    font-size: 11px;
    font-weight: 800;
    border-radius: 50px;
    font-family: var(--font-body);
    transition: all var(--transition);
    border: 2px solid transparent
}

.quick-add:hover {
    background: var(--rose);
    color: var(--white)
}

.wishlist-btn {
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    transition: all var(--transition)
}

.wishlist-btn:hover {
    background: var(--rose);
    color: var(--white)
}

.product-card-info {
    padding: 12px 0 0
}

.product-card-brand {
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 3px
}

.product-card-name {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--text)
}

.product-card-price .price-reg {
    font-size: 14px;
    font-weight: 700
}

.product-card-price .price-orig {
    font-size: 12px;
    color: var(--text-light);
    text-decoration: line-through;
    margin-right: 5px
}

.product-card-price .price-sale {
    font-size: 14px;
    font-weight: 800;
    color: var(--sale)
}

.product-card-colors {
    display: flex;
    gap: 5px;
    margin-top: 7px
}

.color-dot {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    border: 2px solid var(--border);
    display: inline-block
}

/* ===== ABOUT STRIP ===== */
.about-strip {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    padding: 36px 0
}

.about-strip-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center
}

.about-strip-item i {
    font-size: 22px;
    margin-bottom: 8px;
    color: var(--butter)
}

.about-strip-item h4 {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 4px;
    color: var(--white)
}

.about-strip-item p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8)
}

/* ===== PROMO SECTION ===== */
.promo-wrap {
    position: relative;
    height: 360px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    border-radius: var(--radius);
    overflow: hidden;
    margin: 0 28px
}

.promo-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(61, 50, 40, 0.7), rgba(61, 50, 40, 0.1))
}

.promo-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    padding: 0 60px;
    max-width: 500px
}

.promo-content h2 {
    font-family: var(--font-display);
    font-size: clamp(30px, 4.5vw, 54px);
    line-height: 1.1;
    margin-bottom: 14px
}

.promo-content p {
    font-size: 15px;
    opacity: 0.9;
    margin-bottom: 24px;
    font-weight: 500
}

/* ===== MARQUEE STRIP ===== */
.marquee-strip {
    background: var(--rose);
    overflow: hidden;
    padding: 12px 0;
    white-space: nowrap
}

.marquee-inner {
    display: inline-flex;
    animation: marquee 24s linear infinite
}

.marquee-inner span {
    font-size: 12px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0 36px
}

.marquee-inner span::after {
    content: '🌿';
    padding-left: 36px
}

@keyframes marquee {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

/* ===== NEWSLETTER ===== */
.newsletter {
    background: var(--bg2);
    border-top: 2px solid var(--border);
    border-bottom: 2px solid var(--border);
    padding: 64px 0;
    text-align: center
}

.newsletter h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 48px);
    margin-bottom: 10px;
    color: var(--text)
}

.newsletter p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 28px;
    font-weight: 600
}

.newsletter-form {
    display: flex;
    max-width: 420px;
    margin: 0 auto;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: var(--shadow-md)
}

.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    border: 2px solid var(--border);
    border-right: none;
    background: var(--bg);
    color: var(--text);
    font-size: 13px;
    font-family: var(--font-body);
    outline: none;
    font-weight: 600
}

.newsletter-form button {
    padding: 14px 22px;
    background: var(--rose);
    color: var(--white);
    font-size: 12px;
    font-weight: 800;
    font-family: var(--font-body);
    cursor: pointer;
    transition: background var(--transition);
    white-space: nowrap
}

.newsletter-form button:hover {
    background: #A06882
}

/* ===== FOOTER ===== */
.footer {
    background: var(--text);
    color: rgba(255, 255, 255, 0.85);
    padding: 56px 0 0
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px
}

.footer-brand .logo-text {
    color: var(--white)
}

.footer-brand .logo-sub {
    color: rgba(255, 255, 255, 0.5)
}

.footer-brand p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
    margin-top: 12px;
    margin-bottom: 18px;
    line-height: 1.7
}

.social-links {
    display: flex;
    gap: 10px
}

.social-links a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    transition: all var(--transition)
}

.social-links a:hover {
    background: var(--rose);
    color: var(--white)
}

.footer-col h5 {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
    color: var(--white)
}

.footer-col ul li {
    margin-bottom: 9px
}

.footer-col ul li a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition)
}

.footer-col ul li a:hover {
    color: var(--white)
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.footer-bottom p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45)
}

.payment-icons {
    display: flex;
    gap: 8px;
    font-size: 22px;
    color: rgba(255, 255, 255, 0.5)
}

/* ===== TOAST ===== */
.toast {
    position: fixed;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: var(--text);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 9999;
    white-space: nowrap;
    border: 2px solid rgba(255, 255, 255, 0.1)
}

.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0)
}

.toast i {
    color: var(--accent)
}

/* ===== PAGE HERO ===== */
.page-hero {
    background: linear-gradient(135deg, var(--bg2), var(--butter));
    padding: 44px 0;
    border-bottom: 2px solid var(--border);
    margin-bottom: 40px
}

.page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(28px, 4.5vw, 52px);
    margin-bottom: 6px
}

.page-hero p {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 600
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 0;
    font-size: 12px;
    color: var(--text-light);
    font-weight: 600
}

.breadcrumb a {
    color: var(--text-light);
    transition: color var(--transition)
}

.breadcrumb a:hover {
    color: var(--accent)
}

/* ===== 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: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 18px
}

.filter-group {
    border-top: 2px solid var(--border);
    padding: 12px 0
}

.filter-group h4 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer
}

.filter-group .filter-options {
    display: none;
    margin-top: 12px;
    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;
    font-weight: 600
}

.filter-opt input[type=checkbox] {
    width: 15px;
    height: 15px;
    cursor: pointer;
    accent-color: var(--rose)
}

.products-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--border)
}

.products-count {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 700
}

.sort-select {
    padding: 8px 12px;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-family: var(--font-body);
    font-weight: 700;
    cursor: pointer;
    background: var(--bg);
    outline: none
}

.products-grid-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px
}

/* ===== PRODUCT DETAIL ===== */
.product-detail {
    padding: 24px 0 72px
}

.product-detail-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 52px;
    align-items: start
}

.product-gallery {
    position: sticky;
    top: 80px
}

.gallery-main {
    overflow: hidden;
    background: var(--bg2);
    aspect-ratio: 3/4;
    margin-bottom: 10px;
    border-radius: var(--radius)
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px
}

.stars {
    color: var(--rose);
    font-size: 13px;
    display: flex;
    gap: 2px
}

.rating-count {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 700;
    text-decoration: underline;
    cursor: pointer
}

.price-display {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px
}

.price-reg {
    font-size: 24px;
    font-weight: 800
}

.price-orig {
    font-size: 16px;
    color: var(--text-light);
    text-decoration: line-through
}

.price-sale {
    font-size: 24px;
    font-weight: 800;
    color: var(--sale)
}

.product-desc {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.75;
    margin-bottom: 22px;
    font-weight: 500
}

.color-label {
    font-size: 11px;
    font-weight: 800;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px
}

.color-selector {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 18px
}

.swatch {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 3px solid var(--border);
    cursor: pointer;
    transition: all 0.2s ease
}

.swatch.active {
    border-color: var(--text);
    transform: scale(1.1)
}

.swatch:hover {
    transform: scale(1.1)
}

.size-label {
    font-size: 11px;
    font-weight: 800;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.size-label a {
    font-weight: 600;
    color: var(--accent);
    text-decoration: underline;
    font-size: 11px;
    letter-spacing: 0
}

.size-selector {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 20px
}

.size-btn {
    min-width: 48px;
    height: 48px;
    padding: 0 12px;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
    transition: all var(--transition);
    font-family: var(--font-body);
    background: var(--bg)
}

.size-btn:hover {
    border-color: var(--accent)
}

.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: 18px
}

.qty-selector {
    display: flex;
    align-items: center;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden
}

.qty-btn {
    width: 42px;
    height: 50px;
    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(--bg2)
}

.qty-input {
    width: 46px;
    height: 50px;
    border: none;
    border-left: 2px solid var(--border);
    border-right: 2px solid var(--border);
    text-align: center;
    font-size: 14px;
    font-weight: 800;
    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
}

.product-details-accordion {
    border-top: 2px solid var(--border)
}

.accordion-item {
    border-bottom: 2px solid var(--border)
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: color var(--transition)
}

.accordion-header:hover {
    color: var(--accent)
}

.accordion-body {
    display: none;
    padding: 0 0 16px;
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.75;
    font-weight: 500
}

.accordion-body.open {
    display: block
}

/* ===== CART ===== */
.cart-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 44px;
    padding: 0 0 72px
}

.cart-items {
    display: flex;
    flex-direction: column
}

.cart-item {
    display: grid;
    grid-template-columns: 100px 1fr auto;
    gap: 18px;
    align-items: start;
    padding: 22px 0;
    border-bottom: 2px solid var(--border)
}

.cart-item-img {
    background: var(--bg2);
    border-radius: var(--radius-sm);
    overflow: hidden
}

.cart-item-img img {
    width: 100px;
    height: 128px;
    object-fit: cover;
    display: block
}

.cart-item-name {
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 3px
}

.cart-item-variant {
    font-size: 11px;
    color: var(--text-light);
    margin-bottom: 12px;
    font-weight: 600
}

.cart-item-price {
    font-size: 16px;
    font-weight: 800;
    white-space: nowrap;
    color: var(--text)
}

.cart-item-remove {
    font-size: 10px;
    font-weight: 800;
    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: 2px solid var(--border);
    padding: 26px;
    height: fit-content;
    position: sticky;
    top: 80px;
    border-radius: var(--radius)
}

.cart-summary h3 {
    font-family: var(--font-display);
    font-size: 22px;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--border)
}

.promo-input {
    display: flex;
    margin-bottom: 14px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 2px solid var(--border)
}

.promo-input input {
    flex: 1;
    padding: 10px 12px;
    border: none;
    font-size: 12px;
    outline: none;
    background: var(--bg);
    font-weight: 600
}

.promo-input button {
    padding: 10px 16px;
    background: var(--rose);
    color: var(--white);
    font-size: 10px;
    font-weight: 800;
    font-family: var(--font-body);
    cursor: pointer;
    transition: background var(--transition)
}

.promo-input button:hover {
    background: #A06882
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 13px;
    font-weight: 600
}

.summary-row.total {
    font-weight: 800;
    font-size: 16px;
    border-top: 2px solid var(--text);
    margin-top: 8px;
    padding-top: 14px
}

.empty-cart {
    text-align: center;
    padding: 80px 20px;
    color: var(--text-light)
}

.empty-cart i {
    font-size: 48px;
    margin-bottom: 18px;
    opacity: 0.2
}

.empty-cart h2 {
    font-family: var(--font-display);
    font-size: 30px;
    margin-bottom: 10px;
    color: var(--text)
}

.empty-cart p {
    margin-bottom: 24px;
    font-size: 14px;
    font-weight: 600
}

/* ===== CHECKOUT ===== */
.checkout-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 52px;
    padding: 40px 0 72px
}

.checkout-form h2 {
    font-family: var(--font-display);
    font-size: 24px;
    margin-bottom: 16px
}

.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: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-light)
}

.form-group input,
.form-group select {
    padding: 12px 14px;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 13px;
    outline: none;
    transition: border-color var(--transition);
    font-family: var(--font-body);
    background: var(--bg);
    font-weight: 600
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--accent)
}

.payment-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 18px
}

.payment-tab {
    flex: 1;
    padding: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
    background: var(--bg2);
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    transition: all var(--transition)
}

.payment-tab.active {
    background: var(--rose);
    color: var(--white);
    border-color: var(--rose)
}

.payment-tab:not(.active):hover {
    border-color: var(--accent);
    color: var(--accent)
}

.order-summary-sidebar {
    background: var(--bg2);
    border: 2px solid var(--border);
    padding: 24px;
    height: fit-content;
    position: sticky;
    top: 80px;
    border-radius: var(--radius)
}

.order-summary-sidebar h3 {
    font-family: var(--font-display);
    font-size: 22px;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--border)
}

.order-item {
    display: flex;
    gap: 12px;
    align-items: start;
    padding: 10px 0;
    border-bottom: 2px solid var(--border)
}

.order-item img {
    width: 60px;
    height: 78px;
    object-fit: cover;
    background: var(--bg);
    border-radius: var(--radius-sm)
}

.order-item-name {
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 2px
}

.order-item-variant {
    font-size: 10px;
    color: var(--text-light);
    margin-bottom: 4px;
    font-weight: 600
}

.order-item-price {
    font-size: 13px;
    font-weight: 800
}

/* ===== ABOUT ===== */
.about-hero {
    height: 420px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    margin: 24px 28px 0
}

.about-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(61, 50, 40, 0.75), rgba(61, 50, 40, 0.1))
}

.about-hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    padding: 44px;
    max-width: 600px
}

.about-hero-content h1 {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 64px);
    line-height: 1.05;
    margin-bottom: 12px
}

.about-hero-content p {
    font-size: 16px;
    opacity: 0.9;
    font-weight: 500
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 72px 0
}

.about-text h2 {
    font-family: var(--font-display);
    font-size: 38px;
    margin-bottom: 18px
}

.about-text p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.85;
    margin-bottom: 14px;
    font-weight: 500
}

.about-img img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius)
}

/* ===== CONTACT ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 52px 0 72px
}

.contact-info h2 {
    font-family: var(--font-display);
    font-size: 34px;
    margin-bottom: 12px
}

.contact-info>p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.75;
    margin-bottom: 26px;
    font-weight: 500
}

.contact-detail {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 18px
}

.contact-detail i {
    width: 38px;
    height: 38px;
    background: var(--butter);
    color: var(--rose);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    border-radius: 50%;
    flex-shrink: 0
}

.contact-detail h4 {
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 3px
}

.contact-detail p {
    font-size: 13px;
    color: var(--text-light);
    font-weight: 600
}

.contact-form-wrap {
    background: var(--bg2);
    border: 2px solid var(--border);
    padding: 32px;
    border-radius: var(--radius)
}

.contact-form-wrap h3 {
    font-family: var(--font-display);
    font-size: 26px;
    margin-bottom: 22px
}

.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;
        gap: 12px
    }
}

@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);
        gap: 12px
    }

    .about-strip-inner {
        grid-template-columns: 1fr 1fr;
        gap: 20px
    }

    .promo-wrap {
        margin: 0 16px
    }

    .promo-content {
        padding: 0 28px
    }

    .footer-grid {
        grid-template-columns: 1fr
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center
    }

    .newsletter-form {
        flex-direction: column;
        border-radius: var(--radius)
    }

    .newsletter-form input {
        border-right: 2px solid var(--border);
        border-bottom: none;
        border-radius: var(--radius) var(--radius) 0 0
    }

    .newsletter-form button {
        border-radius: 0 0 var(--radius) var(--radius)
    }

    .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
    }

    .about-hero {
        margin: 16px 16px 0
    }

    .cat-grid {
        grid-template-columns: 1fr
    }
}