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

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

:root {
    --bg: #faf8f5;
    --bg2: #fff;
    --bg3: #f0ede8;
    --bg4: #e5e0d8;
    --accent: #b8956a;
    --accent2: #9a7b55;
    --accent-light: rgba(184, 149, 106, .12);
    --dark: #1c1c1c;
    --dark2: #333;
    --text: #2a2a2a;
    --text2: #666;
    --text3: #999;
    --rose: #c97a8a;
    --sage: #7a9a7a;
    --navy: #2c3e50;
    --border: rgba(0, 0, 0, .07);
    --shadow: 0 2px 20px rgba(0, 0, 0, .05);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, .1);
    --g1: linear-gradient(135deg, #b8956a, #d4a574);
    --radius: 16px;
    --radius-main: 24px;
    --radius-lg: 18px;
    --radius-md: 12px;
    --radius-sm: 8px;
}

/* UTILITY CLASSES (Required for Auth/Checkout) */
.bg-c-bg { background-color: var(--bg) !important; }
.bg-c-surface { background-color: var(--bg2) !important; }
.rounded-c-main { border-radius: var(--radius-main) !important; }
.rounded-c-lg { border-radius: var(--radius-lg) !important; }
.rounded-c-md { border-radius: var(--radius-md) !important; }
.rounded-c-sm { border-radius: var(--radius-sm) !important; }
.border-c-border { border-color: var(--border) !important; }
.text-c-primary { color: var(--accent) !important; }
.text-c-secondary { color: var(--accent2) !important; }
.text-c-text { color: var(--dark) !important; }
.text-c-muted { color: var(--text3) !important; }
.shadow-claude-sm { box-shadow: 0 1px 3px rgba(0,0,0,0.05), 0 1px 2px rgba(0,0,0,0.03) !important; }
.shadow-claude-lg { box-shadow: 0 20px 50px -12px rgba(0, 0, 0, 0.12) !important; }

body {
    font-family: 'Cairo', sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden
}

::-webkit-scrollbar {
    width: 6px
}

::-webkit-scrollbar-track {
    background: var(--bg)
}

::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 3px
}

/* TOPBAR */
.topbar {
    background: var(--dark);
    color: rgba(255, 255, 255, .7);
    text-align: center;
    padding: .5rem;
    font-size: .78rem;
    letter-spacing: .5px
}

.topbar span {
    color: var(--accent);
    font-weight: 700
}

/* NAVBAR */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--bg2);
    border-bottom: 1px solid var(--border);
    transition: all .3s
}

.nav-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 6px;
    color: var(--dark);
    cursor: pointer
}

.logo span {
    color: var(--accent)
}

.nav-links {
    display: flex;
    gap: 1.8rem;
    list-style: none
}

.nav-links a {
    color: var(--text2);
    text-decoration: none;
    font-weight: 600;
    font-size: .88rem;
    cursor: pointer;
    transition: all .3s;
    position: relative;
    padding: .3rem 0
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width .3s
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent)
}

.nav-acts {
    display: flex;
    align-items: center;
    gap: .8rem
}

.nav-icon {
    width: 42px;
    height: 42px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .3s;
    position: relative;
    color: var(--text)
}

.nav-icon:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--accent-light)
}

.nav-icon svg {
    width: 19px;
    height: 19px
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--accent);
    color: #fff;
    font-size: .6rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center
}

.btn-auth {
    background: var(--dark);
    color: #fff;
    border: none;
    padding: .5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: .85rem;
    cursor: pointer;
    font-family: 'Cairo';
    transition: all .3s
}

.btn-auth:hover {
    background: var(--accent)
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--dark);
    cursor: pointer
}

.mobile-toggle svg {
    width: 26px;
    height: 26px
}

/* PAGES */
.page {
    display: none;
    opacity: 0;
    transition: opacity .35s ease;
    min-height: calc(100vh - 75px)
}

.page.active {
    display: block;
    opacity: 1
}

/* BTN */
.btn {
    padding: .85rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: .9rem;
    cursor: pointer;
    transition: all .3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Cairo';
    border: none
}

.btn-dark {
    background: var(--dark);
    color: #fff
}

.btn-dark:hover {
    background: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(184, 149, 106, .3)
}

.btn-accent {
    background: var(--accent);
    color: #fff
}

.btn-accent:hover {
    background: var(--accent2);
    transform: translateY(-2px)
}

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

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

.btn-white {
    background: #fff;
    color: var(--dark);
    border: 1px solid var(--border)
}

.btn-white:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent)
}

.btn-sm {
    padding: .5rem 1.4rem;
    font-size: .82rem
}

/* SECTION */
.section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3.5rem 2rem
}

.section-header {
    text-align: center;
    margin-bottom: 2.5rem
}

.section-header .label {
    color: var(--accent);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: .4rem
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--dark)
}

.section-header p {
    color: var(--text2);
    margin-top: .4rem
}

/* HERO */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f5efe6, var(--bg), #f0ede8);
    position: relative;
    overflow: hidden
}

.hero::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -15%;
    width: 50%;
    height: 160%;
    background: radial-gradient(ellipse, rgba(184, 149, 106, .06), transparent 70%);
    transform: rotate(-12deg)
}

.hero-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 1
}

.hero-text .tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--accent-light);
    border: 1px solid rgba(184, 149, 106, .25);
    color: var(--accent2);
    padding: .35rem 1rem;
    border-radius: 50px;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 1.2rem
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.15;
    color: var(--dark);
    margin-bottom: 1.2rem
}

.hero-text h1 span {
    color: var(--accent)
}

.hero-text p {
    color: var(--text2);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 450px
}

.hero-btns {
    display: flex;
    gap: .8rem;
    flex-wrap: wrap
}

.hero-btns .btn-outline {
    background: #fff;
    border-color: #fff;
    color: var(--dark);
    box-shadow: 0 12px 30px rgba(28, 28, 28, .12)
}

.hero-btns .btn-outline:hover {
    background: var(--dark);
    border-color: var(--dark);
    color: #fff
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 2.5rem
}

.hero-stat {
    text-align: center
}

.hero-stat .n {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--dark)
}

.hero-stat .n i {
    color: var(--accent);
    font-style: normal
}

.hero-stat .l {
    font-size: .78rem;
    color: var(--text3);
    font-weight: 600
}

.hero-visual {
    display: flex;
    justify-content: center;
    position: relative
}

.hero-main {
    width: 380px;
    height: 500px;
    background: var(--g1);
    border-radius: 180px 180px 35px 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 7rem;
    position: relative;
    box-shadow: var(--shadow-lg)
}

.hero-main::after {
    content: '';
    position: absolute;
    inset: -12px;
    border: 2px solid var(--accent);
    border-radius: 192px 192px 47px 47px;
    opacity: .25
}

.float-card {
    position: absolute;
    background: var(--bg2);
    border-radius: 16px;
    padding: .8rem 1.2rem;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 10px
}

.float-card.f1 {
    top: 8%;
    right: -25px;
    animation: float 3s ease-in-out infinite
}

.float-card.f2 {
    bottom: 12%;
    left: -25px;
    animation: float 3s ease-in-out infinite .5s
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-8px)
    }
}

.float-card .fc-icon {
    width: 42px;
    height: 42px;
    background: var(--accent-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem
}

.float-card .fc-t {
    font-weight: 800;
    font-size: .85rem;
    color: var(--dark)
}

.float-card .fc-s {
    font-size: .7rem;
    color: var(--text3)
}

/* MARQUEE */
.marquee {
    background: var(--dark);
    color: #fff;
    padding: .8rem 0;
    overflow: hidden;
    white-space: nowrap
}

.marquee-i {
    display: inline-flex;
    gap: 2.5rem;
    animation: mscroll 25s linear infinite
}

.marquee-i span {
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    display: flex;
    align-items: center;
    gap: 6px
}

.marquee-i span::before {
    content: '◆';
    color: var(--accent)
}

@keyframes mscroll {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

/* CATEGORIES GRID */
.cat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem
}

.cat-card {
    position: relative;
    height: 280px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer
}

.cat-card-bg {
    position: absolute;
    inset: 0;
    transition: transform .5s
}

.cat-card:hover .cat-card-bg {
    transform: scale(1.06)
}

.cat-card-over {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .65), transparent 55%)
}

.cat-card-c {
    position: absolute;
    bottom: 0;
    padding: 1.2rem;
    color: white;
    z-index: 1
}

.cat-card-c h3 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: .2rem
}

.cat-card-c p {
    font-size: .8rem;
    opacity: .7
}

.cat-card-arr {
    position: absolute;
    top: 1.2rem;
    left: 1.2rem;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, .2);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all .3s;
    z-index: 1
}

.cat-card:hover .cat-card-arr {
    background: var(--accent);
    transform: rotate(-45deg)
}

/* PRODUCT CARD */
.p-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem
}

.p-card {
    background: var(--bg2);
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
    transition: all .4s;
    border: 1px solid var(--border)
}

.p-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent
}

.pc-img {
    height: 280px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center
}

.pc-bg {
    position: absolute;
    inset: 0;
    transition: transform .5s
}

.p-card:hover .pc-bg {
    transform: scale(1.04)
}

.pc-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--rose);
    color: #fff;
    padding: .15rem .7rem;
    border-radius: 8px;
    font-size: .7rem;
    font-weight: 700;
    z-index: 2
}

.pc-badge.new {
    background: var(--sage)
}

.pc-acts {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    opacity: 0;
    transform: translateX(-8px);
    transition: all .3s;
    z-index: 2
}

.p-card:hover .pc-acts {
    opacity: 1;
    transform: translateX(0)
}

.pc-act {
    width: 30px;
    height: 30px;
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .3s;
    font-size: .74rem
}

.pc-act:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent)
}

.pc-act.wished {
    background: var(--rose);
    color: #fff;
    border-color: var(--rose)
}

.pc-body {
    padding: 1rem
}

.pc-brand {
    font-size: .7rem;
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: .2rem
}

.pc-name {
    font-size: .95rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: .4rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.pc-colors {
    display: flex;
    gap: 5px;
    margin-bottom: .7rem
}

.pc-color {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid var(--border);
    cursor: pointer;
    transition: all .2s
}

.pc-color:hover {
    border-color: var(--accent);
    transform: scale(1.15)
}

.pc-foot {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.pc-price {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--dark)
}

.pc-price .old {
    font-size: .78rem;
    color: var(--text3);
    text-decoration: line-through;
    margin-right: 5px;
    font-weight: 400
}

.pc-add {
    width: 36px;
    height: 36px;
    background: var(--dark);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all .3s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0
}

.pc-add:hover {
    background: var(--accent);
    transform: scale(1.08)
}

.pc-add-disabled {
    background: #cfcfcf;
    cursor: not-allowed;
    transform: none !important;
}

/* LOOKBOOK */
.lk-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem
}

.lk-card {
    position: relative;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer
}

.lk-card.full {
    grid-column: span 2;
    height: 360px
}

.lk-bg {
    position: absolute;
    inset: 0;
    transition: transform .5s
}

.lk-card:hover .lk-bg {
    transform: scale(1.05)
}

.lk-over {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .3);
    transition: background .3s
}

.lk-card:hover .lk-over {
    background: rgba(0, 0, 0, .5)
}

.lk-c {
    position: absolute;
    bottom: 0;
    padding: 1.8rem;
    color: white;
    z-index: 1
}

.lk-c .lk-tag {
    font-size: .7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: .8;
    margin-bottom: .4rem
}

.lk-c h3 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: .4rem
}

/* FEATURES */
.feat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem
}

.feat-card {
    text-align: center;
    padding: 1.8rem;
    background: var(--bg2);
    border-radius: 18px;
    border: 1px solid var(--border);
    transition: all .3s
}

.feat-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: var(--shadow)
}

.feat-icon {
    font-size: 2.2rem;
    margin-bottom: .8rem
}

.feat-card h4 {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: .3rem
}

.feat-card p {
    font-size: .82rem;
    color: var(--text3);
    line-height: 1.6
}

/* BREADCRUMB */
.bc {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .82rem;
    color: var(--text3)
}

.bc a {
    color: var(--text2);
    text-decoration: none;
    cursor: pointer;
    transition: color .3s
}

.bc a:hover {
    color: var(--accent)
}

.bc .sep {
    opacity: .5
}

.bc .cur {
    color: var(--dark);
    font-weight: 700
}

/* PRODUCT DETAIL */
.detail-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 2rem 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start
}

.detail-gallery {
    position: sticky;
    top: 90px
}

.detail-main {
    width: 100%;
    height: 520px;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 7rem;
    position: relative;
    margin-bottom: .8rem
}

.detail-main-bg {
    position: absolute;
    inset: 0
}

.detail-thumbs {
    display: flex;
    flex-wrap: wrap;
    gap: .8rem;
    max-height: 220px;
    overflow-y: auto
}

.detail-thumb {
    flex: 0 0 75px;
    height: 95px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all .3s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    position: relative
}

.detail-thumb-bg {
    position: absolute;
    inset: 0
}

.detail-thumb:hover,
.detail-thumb.active {
    border-color: var(--accent)
}

.detail-info {
    padding: .5rem 0
}

.di-brand {
    color: var(--accent);
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: .4rem
}

.di-title {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: .4rem
}

.di-rating {
    display: flex;
    align-items: center;
    gap: .4rem;
    margin-bottom: 1.2rem
}

.di-rating .s {
    color: var(--accent);
    font-size: .85rem
}

.di-rating .c {
    font-size: .82rem;
    color: var(--text3)
}

.di-price {
    background: var(--bg3);
    border-radius: 14px;
    padding: 1.2rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem
}

.di-price .dp {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--dark)
}

.di-price .do {
    font-size: 1.1rem;
    color: var(--text3);
    text-decoration: line-through
}

.di-price .ds {
    background: var(--rose);
    color: #fff;
    padding: .25rem .7rem;
    border-radius: 8px;
    font-size: .75rem;
    font-weight: 700
}

.di-section {
    margin-bottom: 1.5rem
}

.di-section label {
    font-size: .85rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: .6rem;
    display: block
}

.sizes {
    display: flex;
    gap: .6rem;
    flex-wrap: wrap
}

.size-o {
    width: 44px;
    height: 44px;
    border: 2px solid var(--border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .3s;
    font-weight: 700;
    font-size: .85rem;
    background: var(--bg2)
}

.size-o:hover,
.size-o.sel {
    border-color: var(--accent);
    background: var(--accent);
    color: #fff
}

.colors-o {
    display: flex;
    gap: .8rem
}

.color-o {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all .3s
}

.color-o:hover,
.color-o.sel {
    border-color: var(--dark);
    transform: scale(1.1)
}

.qty-sel {
    display: flex;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    width: fit-content
}

.qty-btn {
    width: 40px;
    height: 40px;
    background: var(--bg2);
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all .3s;
    color: var(--text)
}

.qty-btn:hover {
    background: var(--accent);
    color: #fff
}

.qty-val {
    width: 45px;
    text-align: center;
    font-weight: 700;
    background: var(--bg2)
}

.di-acts {
    display: flex;
    gap: .8rem;
    margin-bottom: 1.5rem
}

.di-acts .btn {
    flex: 1;
    justify-content: center
}

.di-meta {
    border-top: 1px solid var(--border);
    padding-top: 1.2rem
}

.di-row {
    display: flex;
    justify-content: space-between;
    padding: .5rem 0;
    font-size: .85rem
}

.di-row .dl {
    color: var(--text3)
}

.di-row .dv {
    font-weight: 700;
    color: var(--dark)
}

/* TABS */
.tabs-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem 3rem
}

.tabs-nav {
    display: flex;
    gap: 0;
    border-bottom: 2px solid var(--border);
    margin-bottom: 2rem
}

.tab-btn {
    padding: .8rem 1.8rem;
    font-weight: 700;
    font-size: .95rem;
    color: var(--text3);
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all .3s;
    background: none;
    border-top: none;
    border-left: none;
    border-right: none;
    font-family: 'Cairo'
}

.tab-btn:hover {
    color: var(--dark)
}

.tab-btn.active {
    color: var(--accent);
    border-bottom-color: var(--accent)
}

.tab-c {
    display: none;
    animation: fadeUp .4s ease
}

.tab-c.active {
    display: block
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(12px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

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

.tab-grid h3 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: .8rem
}

.tab-grid p {
    color: var(--text2);
    line-height: 1.8;
    margin-bottom: .8rem
}

.tab-grid ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .5rem
}

.tab-grid ul li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text2);
    font-size: .9rem
}

.tab-grid ul li .ck {
    color: var(--accent);
    font-weight: 700
}

/* CATEGORIES PAGE */
.cat-page-header {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--g1);
    color: #fff;
    margin-bottom: 2.5rem
}

.cat-page-header h1 {
    font-size: 2.3rem;
    font-weight: 900;
    margin-bottom: .4rem
}

.cat-page-header p {
    opacity: .85
}

.cat-pg-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem
}

.cat-pg-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2rem;
    cursor: pointer;
    transition: all .4s;
    text-align: center
}

.cat-pg-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent)
}

.cat-pg-card .cpi {
    font-size: 2.8rem;
    margin-bottom: .8rem
}

.cat-pg-card h3 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: .3rem
}

.cat-pg-card p {
    color: var(--text3);
    font-size: .85rem;
    margin-bottom: .8rem
}

.cat-pg-card .cpc {
    display: inline-flex;
    background: var(--accent-light);
    color: var(--accent2);
    padding: .25rem .7rem;
    border-radius: 8px;
    font-size: .78rem;
    font-weight: 700
}

/* PRODUCTS PAGE */
.p-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: .8rem
}

.flt-group {
    display: flex;
    gap: .8rem;
    flex-wrap: wrap
}

.flt-sel {
    background: var(--bg2);
    border: 1px solid var(--border);
    color: var(--text);
    padding: .5rem 1rem;
    border-radius: 10px;
    font-size: .85rem;
    outline: none;
    font-family: 'Cairo';
    cursor: pointer
}

.flt-sel:focus {
    border-color: var(--accent)
}

.res-count {
    color: var(--text3);
    font-size: .85rem
}

/* CHECKOUT */
.co-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 2rem
}

.co-section {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 1.8rem;
    margin-bottom: 1.2rem
}

.co-section h3 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 8px
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .8rem
}

.form-g {
    display: flex;
    flex-direction: column;
    gap: .4rem
}

.form-g label {
    font-size: .78rem;
    font-weight: 700;
    color: var(--text2)
}

.form-g input,
.form-g select,
.form-g textarea {
    background: var(--bg3);
    border: 1px solid var(--border);
    color: var(--text);
    padding: .75rem .9rem;
    border-radius: 10px;
    font-size: .9rem;
    outline: none;
    transition: all .3s;
    font-family: 'Cairo'
}

.form-g input:focus,
.form-g select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-light)
}

.pay-opts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .8rem
}

.pay-o {
    background: var(--bg3);
    border: 2px solid var(--border);
    border-radius: 14px;
    padding: 1rem;
    cursor: pointer;
    transition: all .3s;
    text-align: center
}

.pay-o:hover,
.pay-o.sel {
    border-color: var(--accent);
    background: var(--accent-light)
}

.pay-o .pi {
    font-size: 1.5rem;
    margin-bottom: .2rem
}

.pay-o .pn {
    font-weight: 700;
    font-size: .8rem
}

.si {
    display: flex;
    align-items: center;
    gap: .8rem;
    padding: .8rem 0;
    border-bottom: 1px solid var(--border)
}

.si:last-child {
    border-bottom: none
}

.si-img {
    width: 55px;
    height: 65px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem
}

.si-info {
    flex: 1
}

.si-n {
    font-weight: 700;
    font-size: .85rem;
    color: var(--dark)
}

.si-d {
    font-size: .75rem;
    color: var(--text3)
}

.si-p {
    font-weight: 800;
    color: var(--dark)
}

.sr {
    display: flex;
    justify-content: space-between;
    padding: .6rem 0;
    font-size: .9rem;
    color: var(--text2)
}

.sr.total {
    border-top: 2px solid var(--dark);
    padding-top: .8rem;
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--dark)
}

.sr.total .v {
    color: var(--accent)
}

.promo {
    display: flex;
    gap: .5rem
}

.promo input {
    flex: 1;
    background: var(--bg3);
    border: 1px solid var(--border);
    color: var(--text);
    padding: .7rem;
    border-radius: 10px;
    font-size: .85rem;
    outline: none;
    font-family: 'Cairo'
}

/* SUCCESS */
.succ-page {
    text-align: center;
    padding: 5rem 2rem
}

.succ-icon {
    font-size: 4.5rem;
    margin-bottom: 1.2rem;
    animation: bounceIn .5s ease
}

@keyframes bounceIn {
    0% {
        transform: scale(0)
    }

    50% {
        transform: scale(1.15)
    }

    100% {
        transform: scale(1)
    }
}

.succ-page h2 {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: .4rem
}

.succ-page>p {
    color: var(--text2);
    margin-bottom: 1.8rem
}

.succ-box {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 1.8rem;
    max-width: 480px;
    margin: 0 auto 1.8rem;
    text-align: right
}

.sb {
    display: flex;
    justify-content: space-between;
    padding: .7rem 0;
    border-bottom: 1px solid var(--border)
}

.sb:last-child {
    border-bottom: none
}

.sb .sl {
    color: var(--text3);
    font-size: .88rem
}

.sb .sv {
    font-weight: 700;
    font-size: .9rem
}

/* ORDERS */
.orders-filters {
    display: flex;
    gap: .6rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap
}

.of-btn {
    background: var(--bg2);
    border: 1px solid var(--border);
    color: var(--text2);
    padding: .5rem 1.3rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: .85rem;
    cursor: pointer;
    transition: all .3s;
    font-family: 'Cairo'
}

.of-btn:hover,
.of-btn.active {
    background: var(--dark);
    color: #fff;
    border-color: var(--dark)
}

.orders-list {
    display: flex;
    flex-direction: column;
    gap: .8rem
}

.o-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 1.2rem;
    transition: all .3s
}

.o-card:hover {
    border-color: var(--accent)
}

.o-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: .8rem;
    flex-wrap: wrap;
    gap: .4rem
}

.o-id {
    font-weight: 800;
    color: var(--accent);
    font-size: 1rem
}

.o-date {
    font-size: .8rem;
    color: var(--text3)
}

.o-items {
    display: flex;
    gap: .4rem;
    margin-bottom: .8rem;
    flex-wrap: wrap
}

.o-item {
    width: 45px;
    height: 55px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem
}

.o-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: .8rem
}

.o-total {
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--dark)
}

.s-badge {
    padding: .25rem .8rem;
    border-radius: 50px;
    font-size: .75rem;
    font-weight: 700
}

.s-completed {
    background: rgba(122, 154, 122, .18);
    color: var(--sage)
}

.s-processing {
    background: var(--accent-light);
    color: var(--accent2)
}

.s-pending {
    background: rgba(201, 122, 138, .12);
    color: var(--rose)
}

/* TRACKING */
.track-container {
    max-width: 750px;
    margin: 0 auto
}

.track-search {
    display: flex;
    gap: .8rem;
    margin-bottom: 2.5rem
}

.track-search input {
    flex: 1;
    background: var(--bg2);
    border: 1px solid var(--border);
    color: var(--text);
    padding: .9rem 1.2rem;
    border-radius: 14px;
    font-size: 1rem;
    outline: none;
    font-family: 'Cairo'
}

.track-search input:focus {
    border-color: var(--accent)
}

.track-result {
    display: none
}

.track-result.show {
    display: block;
    animation: fadeUp .5s ease
}

.track-header {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 1.8rem;
    margin-bottom: 1.8rem;
    text-align: center
}

.track-header h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: .3rem
}

.track-header p {
    color: var(--text3)
}

.track-tl {
    position: relative;
    padding: 1.5rem 0
}

.track-tl::before {
    content: '';
    position: absolute;
    right: 18px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--bg4)
}

.tl-item {
    position: relative;
    padding: 0 55px 2rem 0
}

.tl-item:last-child {
    padding-bottom: 0
}

.tl-dot {
    position: absolute;
    right: 8px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 3px solid var(--bg4);
    background: var(--bg);
    z-index: 1
}

.tl-item.done .tl-dot {
    border-color: var(--sage);
    background: var(--sage)
}

.tl-item.cur .tl-dot {
    border-color: var(--accent);
    background: var(--accent);
    animation: pulse2 2s infinite
}

.tl-item.pending .tl-dot {
    border-color: var(--bg4);
    background: var(--bg)
}

@keyframes pulse2 {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(184, 149, 106, .4)
    }

    50% {
        box-shadow: 0 0 0 8px rgba(184, 149, 106, 0)
    }
}

.tl-c h4 {
    font-size: .95rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: .15rem
}

.tl-c p {
    color: var(--text2);
    font-size: .85rem
}

.tl-c .t {
    font-size: .75rem;
    color: var(--text3);
    margin-top: .2rem
}

/* AUTH */
.auth-container {
    max-width: 450px;
    margin: 3rem auto;
    padding: 0 2rem
}

.auth-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: var(--shadow)
}

.auth-card h2 {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--dark);
    text-align: center;
    margin-bottom: .3rem
}

.auth-card .auth-sub {
    text-align: center;
    color: var(--text3);
    margin-bottom: 2rem;
    font-size: .9rem
}

.auth-card .form-g {
    margin-bottom: 1rem
}

.auth-card .form-g label {
    font-size: .82rem;
    font-weight: 700;
    color: var(--text2)
}

.auth-card .form-g input {
    width: 100%;
    background: var(--bg3);
    border: 1px solid var(--border);
    color: var(--text);
    padding: .85rem 1rem;
    border-radius: 12px;
    font-size: .95rem;
    outline: none;
    transition: all .3s;
    font-family: 'Cairo'
}

.auth-card .btn {
    width: 100%;
    justify-content: center;
    margin-top: 1rem;
    font-size: 1rem;
    padding: 1rem
}

.auth-divider {
    text-align: center;
    margin: 1.5rem 0;
    color: var(--text3);
    font-size: .85rem;
    position: relative
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: var(--border)
}

.auth-divider::before {
    right: 0
}

.auth-divider::after {
    left: 0
}

.auth-switch {
    text-align: center;
    margin-top: 1.5rem;
    font-size: .9rem;
    color: var(--text3)
}

.auth-switch a {
    color: var(--accent);
    font-weight: 700;
    cursor: pointer;
    text-decoration: none
}

.social-auth {
    display: flex;
    gap: .8rem;
    margin-top: 1rem
}

.social-btn {
    flex: 1;
    padding: .7rem;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--bg3);
    cursor: pointer;
    transition: all .3s;
    font-size: 1.2rem;
    text-align: center
}

.social-btn:hover {
    border-color: var(--accent);
    background: var(--accent-light)
}

/* ADMIN */
.admin-wrap {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem
}

.admin-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: .8rem
}

.admin-header h2 {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--dark)
}

.admin-tabs {
    display: flex;
    gap: .5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap
}

.at-btn {
    background: var(--bg2);
    border: 1px solid var(--border);
    color: var(--text2);
    padding: .5rem 1.3rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: .85rem;
    cursor: pointer;
    transition: all .3s;
    font-family: 'Cairo'
}

.at-btn:hover,
.at-btn.active {
    background: var(--dark);
    color: #fff;
    border-color: var(--dark)
}

.a-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
    margin-bottom: 2rem
}

.a-stat {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 1.3rem;
    position: relative;
    overflow: hidden
}

.a-stat::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 3px;
    background: var(--g1)
}

.a-stat .as-i {
    font-size: 1.8rem;
    margin-bottom: .6rem
}

.a-stat .as-v {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: .2rem
}

.a-stat .as-l {
    font-size: .8rem;
    color: var(--text3)
}

.a-stat .as-ch {
    font-size: .75rem;
    font-weight: 700;
    margin-top: .4rem
}

.a-stat .as-ch.up {
    color: var(--sage)
}

.a-stat .as-ch.down {
    color: var(--rose)
}

.a-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1.2rem;
    margin-bottom: 2rem
}

.a-panel {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 1.3rem
}

.a-panel h3 {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 8px
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    height: 180px;
    padding: 0 .5rem
}

.cb-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .4rem;
    flex: 1
}

.cb-bar {
    width: 26px;
    border-radius: 6px 6px 0 0;
    background: var(--g1);
    transition: height 1s
}

.cb-label {
    font-size: .68rem;
    color: var(--text3)
}

.ts-item {
    display: flex;
    align-items: center;
    gap: .8rem;
    padding: .6rem 0;
    border-bottom: 1px solid var(--border)
}

.ts-item:last-child {
    border-bottom: none
}

.ts-r {
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--accent);
    min-width: 28px
}

.ts-img {
    width: 38px;
    height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem
}

.ts-info {
    flex: 1
}

.ts-n {
    font-weight: 700;
    font-size: .85rem;
    color: var(--dark)
}

.ts-s {
    font-size: .75rem;
    color: var(--text3)
}

.ts-p {
    font-weight: 800;
    color: var(--dark)
}

.a-table {
    width: 100%;
    border-collapse: collapse
}

.a-table th {
    text-align: right;
    padding: .8rem;
    background: var(--bg3);
    color: var(--text3);
    font-weight: 700;
    font-size: .75rem;
    border-bottom: 1px solid var(--border)
}

.a-table td {
    padding: .8rem;
    border-bottom: 1px solid var(--border);
    font-size: .85rem
}

.a-table tr:hover td {
    background: var(--accent-light)
}

/* CART SIDEBAR */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .35);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all .3s
}

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

.cart-sb {
    position: fixed;
    top: 0;
    left: -420px;
    width: 400px;
    max-width: 90vw;
    height: 100vh;
    background: var(--bg2);
    z-index: 2001;
    transition: all .4s cubic-bezier(.16, 1, .3, 1);
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-lg)
}

.cart-sb.open {
    left: 0
}

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

.cart-h h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--dark)
}

.cart-close {
    background: none;
    border: none;
    font-size: 1.4rem;
    cursor: pointer;
    color: var(--text);
    transition: color .3s
}

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

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: .8rem
}

.ci {
    display: flex;
    gap: .8rem;
    padding: .8rem;
    background: var(--bg3);
    border-radius: 14px;
    margin-bottom: .6rem
}

.ci-img {
    width: 65px;
    height: 75px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0
}

.ci-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit
}

.ci-info {
    flex: 1
}

.ci-n {
    font-weight: 700;
    font-size: .85rem;
    color: var(--dark);
    margin-bottom: .2rem
}

.ci-d {
    font-size: .75rem;
    color: var(--text3);
    margin-bottom: .2rem
}

.ci-p {
    font-weight: 800;
    color: var(--dark);
    font-size: .9rem
}

.ci-rm {
    background: none;
    border: none;
    color: var(--text3);
    cursor: pointer;
    font-size: .9rem;
    transition: color .3s;
    align-self: flex-start
}

.ci-rm:hover {
    color: var(--rose)
}

.cart-qty {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    margin-top: .45rem;
    padding: .2rem;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--bg2)
}

.cart-qty button {
    width: 24px;
    height: 24px;
    border: 0;
    border-radius: 50%;
    background: var(--bg3);
    color: var(--dark);
    cursor: pointer;
    font-weight: 800
}

.cart-qty span {
    min-width: 22px;
    text-align: center;
    font-weight: 800;
    font-size: .8rem
}

.cart-empty {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--text3)
}

.cart-ft {
    padding: 1.2rem;
    border-top: 1px solid var(--border)
}

.cart-total {
    display: flex;
    justify-content: space-between;
    margin-bottom: .8rem;
    font-size: 1rem;
    font-weight: 800;
    color: var(--dark)
}

.co-btn {
    width: 100%;
    display: block;
    text-align: center;
    background: var(--dark);
    color: #fff;
    padding: .9rem;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
    transition: all .3s;
    font-family: 'Cairo';
    border: none
}

.co-btn:hover {
    background: var(--accent);
    transform: translateY(-2px)
}

/* TOAST */
.toast {
    position: fixed;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%) translateY(80px);
    background: var(--bg2);
    border: 1px solid var(--sage);
    color: var(--dark);
    padding: .8rem 1.8rem;
    border-radius: 14px;
    font-weight: 700;
    z-index: 3000;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-lg);
    transition: transform .35s cubic-bezier(.16, 1, .3, 1)
}

.toast.show {
    transform: translateX(-50%) translateY(0)
}

/* NEWSLETTER */
.newsletter {
    background: var(--g1);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    color: #fff;
    margin-bottom: 3rem
}

.newsletter h3 {
    font-size: 1.6rem;
    font-weight: 900;
    margin-bottom: .3rem
}

.newsletter p {
    opacity: .8;
    margin-bottom: 1.2rem
}

.nl-form {
    display: flex;
    gap: .6rem;
    max-width: 450px;
    margin: 0 auto
}

.nl-form input {
    flex: 1;
    padding: .9rem;
    border: none;
    border-radius: 10px;
    font-size: .95rem;
    outline: none;
    font-family: 'Cairo'
}

.nl-form button {
    background: var(--dark);
    color: #fff;
    padding: .9rem 1.8rem;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Cairo';
    transition: all .3s;
    white-space: nowrap
}

.nl-form button:hover {
    background: #fff;
    color: var(--dark)
}

/* FOOTER */
.footer {
    background: var(--dark);
    color: #fff;
    padding: 3.5rem 2rem 1.5rem;
    margin-top: 3rem
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 2.5rem
}

.footer-brand .fl {
    font-size: 1.6rem;
    font-weight: 900;
    letter-spacing: 4px;
    margin-bottom: .8rem
}

.footer-brand .fl span {
    color: var(--accent)
}

.footer-brand p {
    color: rgba(255, 255, 255, .45);
    line-height: 1.7;
    font-size: .85rem;
    margin-bottom: 1.2rem
}

.s-links {
    display: flex;
    gap: .6rem
}

.s-link {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, .08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all .3s;
    font-size: 1rem
}

.s-link:hover {
    background: var(--accent);
    transform: translateY(-3px)
}

.f-col h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.2rem
}

.f-col ul {
    list-style: none
}

.f-col ul li {
    margin-bottom: .6rem
}

.f-col ul li a {
    color: rgba(255, 255, 255, .45);
    text-decoration: none;
    font-size: .85rem;
    transition: all .3s;
    cursor: pointer
}

.f-col ul li a:hover {
    color: var(--accent);
    padding-right: 4px
}

.footer-bot {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, .08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: rgba(255, 255, 255, .35);
    font-size: .8rem;
    flex-wrap: wrap;
    gap: .8rem
}

.pay-ic {
    display: flex;
    gap: .6rem
}

.pay-ic span {
    background: rgba(255, 255, 255, .08);
    border-radius: 6px;
    padding: .3rem .7rem;
    font-size: .75rem
}

/* SCROLL TOP */
.scroll-top {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 46px;
    height: 46px;
    background: var(--dark);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 999;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all .3s;
    box-shadow: var(--shadow)
}

.scroll-top.show {
    display: flex
}

.scroll-top:hover {
    background: var(--accent);
    transform: translateY(-3px)
}

.navbar.is-scrolled {
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(10px);
    padding: .5rem 0;
}

.fashion-logo-img {
    max-height: 45px;
}

.fashion-search-overlay {
    position: fixed;
    inset: 0;
    z-index: 3000;
    background: rgba(0, 0, 0, .5);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.fashion-search-panel {
    background: #fff;
    padding: 2rem;
    border-radius: 20px;
    width: 100%;
    max-width: 600px;
}

.fashion-search-form {
    margin-bottom: 0;
}

.fashion-search-form input {
    width: 100%;
}

.fashion-fill-img,
.cat-card-bg,
.pc-bg,
.detail-main-bg,
.detail-thumb-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.fashion-fill-img {
    border-radius: inherit;
}

.fashion-category-thumb {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto 1rem;
}

.fashion-empty-state {
    padding: 5rem;
}

.fashion-search-input {
    min-width: 200px;
}

.fashion-pagination-wrap {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
}

.fashion-cta-dark {
    background: var(--dark);
}

.fashion-review-rating {
    justify-content: center;
    margin-bottom: .5rem;
}

.color-o {
    background: var(--swatch-color, transparent);
}

.fashion-language-slot {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--border);
}

.fashion-language-slot .store-lang-switcher {
    position: relative;
}

.fashion-language-slot .lang-current-btn {
    min-width: 30px;
    height: 30px;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: var(--dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .35rem;
    font-weight: 900;
    cursor: pointer;
}

.fashion-language-slot .lang-dropdown {
    position: absolute;
    top: calc(100% + .6rem);
    inset-inline-end: 0;
    min-width: 160px;
    z-index: 2500;
}

.fashion-language-slot .lang-dropdown-inner {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: var(--shadow-lg);
    padding: .45rem;
}

.fashion-language-slot .lang-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .5rem;
    padding: .65rem .75rem;
    border-radius: 10px;
    color: var(--dark);
    font-weight: 800;
    font-size: .85rem;
}

.fashion-language-slot .lang-item:hover,
.fashion-language-slot .lang-item.is-active {
    background: var(--accent-light);
    color: var(--accent);
}

/* CHAT WIDGETS OVERRIDE */
.chat-widget {
    z-index: 9999 !important;
}
.chat-widget a {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15) !important;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}
.chat-widget a:hover {
    transform: scale(1.1) translateY(-3px) !important;
}
.chat-widget i {
    font-size: 22px !important;
    color: #fff !important;
    font-style: normal !important;
}
.chat-widget .whatsapp-bg { background: #25D366 !important; }
.chat-widget .messenger-bg { background: #0084FF !important; }

/* NAVBAR ICONS ORDER */
.nav-acts {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}
.fashion-language-slot {
    order: -1;
    border: none !important;
    width: auto !important;
    height: auto !important;
}
.fashion-language-slot .lang-current-btn {
    font-size: 0.8rem;
    padding: 0 5px;
}

.stock-counter-container {
    margin: .75rem 0;
}

.stock-counter-header {
    display: flex;
    justify-content: space-between;
    gap: .75rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: .35rem;
}

.stock-counter-track {
    height: 7px;
    border-radius: 999px;
    background: var(--bg3);
    overflow: hidden;
}

.stock-counter-bar {
    height: 100%;
    border-radius: inherit;
    background: var(--accent);
}

.fashion-wishlist-wide {
    width: 100%;
    margin: .75rem 0 1rem;
    justify-content: center;
}

.fashion-wishlist-row {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    margin: .8rem 0 1rem;
    padding: .45rem .75rem;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--bg2);
}

.fashion-wishlist-icon {
    width: 34px;
    height: 34px;
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--text2);
    background: var(--bg2);
}

.fashion-wishlist-label {
    font-size: .82rem;
    font-weight: 800;
    color: var(--text2);
}

.fashion-auth-page,
.fashion-checkout-page {
    background:
        linear-gradient(135deg, rgba(184, 149, 106, .12), transparent 32%),
        var(--bg);
}

.fashion-auth-page .rounded-c-main,
.fashion-checkout-page .rounded-c-main {
    border-radius: 20px;
}

.fashion-auth-page .bg-gradient-to-r,
.fashion-checkout-page .bg-gradient-to-r,
.fashion-auth-page .bg-gradient-to-br,
.fashion-checkout-page .bg-gradient-to-br {
    background: var(--dark);
}

.fashion-auth-page .auth-wrap {
    max-width: 560px;
    margin: 0 auto;
    padding: 3rem 1rem;
}

.fashion-auth-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .5rem;
    margin: 1rem 0 1.4rem;
}

.fashion-auth-tabs button {
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: .65rem;
    background: var(--bg3);
    font-weight: 800;
    cursor: pointer;
}

.fashion-auth-tabs button.active {
    background: var(--dark);
    color: #fff;
    border-color: var(--dark);
}

.fashion-auth-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: .8rem;
}

.fashion-auth-link {
    border: 0;
    background: transparent;
    color: var(--accent);
    font-weight: 700;
    cursor: pointer;
}

.fashion-auth-link-back {
    display: block;
    margin: .8rem auto 0;
}

.fashion-auth-alert,
.fashion-auth-error {
    border-radius: 10px;
    padding: .75rem .9rem;
    font-size: .85rem;
    margin-bottom: 1rem;
}

.fashion-auth-alert {
    background: rgba(122, 154, 122, .14);
    border: 1px solid rgba(122, 154, 122, .28);
}

.fashion-auth-error {
    background: rgba(201, 122, 138, .12);
    border: 1px solid rgba(201, 122, 138, .3);
}

.fashion-auth-error p+p {
    margin-top: .3rem;
}

.chat-widget a i {
    font-size: 18px;
    line-height: 1;
}

/* MOBILE NAV */
.mob-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 320px;
    height: 100vh;
    background: var(--bg2);
    z-index: 2000;
    transition: right .35s cubic-bezier(.16, 1, .3, 1);
    padding: 1.8rem;
    box-shadow: var(--shadow-lg)
}

.mob-nav.open {
    right: 0
}

.mob-close {
    background: none;
    border: none;
    font-size: 1.4rem;
    cursor: pointer;
    color: var(--text);
    margin-bottom: 1.5rem
}

.mob-nav ul {
    list-style: none
}

.mob-nav ul li {
    border-bottom: 1px solid var(--border)
}

.mob-nav ul li a {
    display: block;
    padding: .9rem 0;
    color: var(--text);
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer
}

.mob-over {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .35);
    z-index: 1999;
    display: none
}

.mob-over.show {
    display: block
}

/* RESPONSIVE */
@media(max-width:1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center
    }

    .hero-text p {
        max-width: 100%;
        margin: 0 auto 1.5rem
    }

    .hero-btns {
        justify-content: center
    }

    .hero-stats {
        justify-content: center
    }

    .hero-visual {
        display: none
    }

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

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

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

    .detail-grid {
        grid-template-columns: 1fr;
        gap: 2rem
    }

    .tab-grid {
        grid-template-columns: 1fr
    }

    .co-grid {
        grid-template-columns: 1fr
    }

    .a-stats {
        grid-template-columns: repeat(2, 1fr)
    }

    .a-grid {
        grid-template-columns: 1fr
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr
    }

    .cat-pg-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

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

    .mobile-toggle {
        display: block
    }

    .hero-text h1 {
        font-size: 2.3rem
    }

    .hero {
        min-height: auto;
        padding: 3rem 0
    }

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

    .cat-grid {
        grid-template-columns: 1fr
    }

    .lk-grid {
        grid-template-columns: 1fr
    }

    .lk-card.full {
        grid-column: span 1
    }

    .form-grid {
        grid-template-columns: 1fr
    }

    .pay-opts {
        grid-template-columns: 1fr
    }

    .footer-inner {
        grid-template-columns: 1fr
    }

    .cat-pg-grid {
        grid-template-columns: 1fr
    }

    .detail-main {
        height: 320px
    }

    .a-stats {
        grid-template-columns: 1fr
    }

    .auth-card {
        padding: 1.8rem
    }
}

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

    .hero-text h1 {
        font-size: 1.9rem
    }

    .hero-stats {
        gap: 1.2rem
    }

    .nl-form {
        flex-direction: column
    }
}

/* Mobile shell alignment: keep Fashion consistent with the other storefront themes. */
@media(max-width:1023.98px) {
    body {
        padding-bottom: 82px;
    }

    .topbar,
    .navbar,
    .footer {
        display: none !important;
    }

    .store-mobile-header {
        display: flex !important;
    }

    .store-mobile-nav {
        display: grid !important;
    }

    .hero {
        min-height: auto;
        padding: 2.5rem 0 2rem;
    }

    .hero-inner,
    .section,
    .footer-bot {
        width: 100%;
        max-width: 100%;
        padding-inline: 1rem;
    }

    .hero-text h1 {
        font-size: clamp(2rem, 9vw, 3rem);
        line-height: 1.15;
        overflow-wrap: anywhere;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .hero-stats {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: .75rem;
    }

    .cat-grid,
    .p-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: .9rem;
    }

    .cat-card,
    .p-card {
        min-width: 0;
    }

    .pc-img {
        height: clamp(190px, 52vw, 260px);
    }

    .cat-card {
        height: clamp(190px, 52vw, 250px);
    }

    .scroll-top {
        bottom: 86px;
    }
}

@media(max-width:560px) {
    .hero-btns {
        display: grid;
        grid-template-columns: 1fr;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .cat-grid,
    .p-grid {
        grid-template-columns: 1fr;
    }

    .section {
        padding-inline: .85rem;
    }
}
