/* =============================================
   AURÉA — Fashion Brand  |  v3 PERFECT
   ============================================= */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Palette */
    --bg: #faf9f7;
    --bg-2: #f4f1ec;
    --cream: #eeebe4;
    --warm: #e5dfd5;
    --border: rgba(0, 0, 0, 0.09);
    --border-2: rgba(0, 0, 0, 0.16);
    --dark: #111111;
    --dark-2: #2a2a2a;
    --t1: #1c1a18;
    --t2: #6b6358;
    --t3: #b0a89c;
    --accent: #9d7855;
    --accent-2: #c49a74;
    --gold: #c9a96e;
    --gold-2: #dfc18e;
    --green: #3a7d44;

    /* Type */
    --serif: 'Cormorant Garamond', Georgia, serif;
    --sans: 'Inter', system-ui, -apple-system, sans-serif;

    /* Misc */
    --nav-h: 70px;
    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-out: cubic-bezier(0.0, 0.0, 0.2, 1);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.07);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.14);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--sans);
    background: var(--bg);
    color: var(--t1);
    overflow-x: hidden;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    display: block;
    max-width: 100%;
}

svg {
    display: block;
    flex-shrink: 0;
}

button {
    cursor: pointer;
    font-family: var(--sans);
    border: none;
    background: none;
}

/* ── Layout ── */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 48px;
}

/* ── Section shared ── */
.sec-eye {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 14px;
    display: block;
}

.sec-title {
    font-family: var(--serif);
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 300;
    letter-spacing: 0.01em;
    line-height: 1.1;
    color: var(--t1);
}

.sec-head {
    text-align: center;
    margin-bottom: 60px;
}

/* ── Reveal animation ── */
.will-reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .65s var(--ease), transform .65s var(--ease);
}

.will-reveal.visible {
    opacity: 1;
    transform: none;
}

/* =============================================
   OVERLAY STATES
   ============================================= */
.cart-overlay {
    position: fixed;
    inset: 0;
    z-index: 900;
    background: rgba(0, 0, 0, 0.42);
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s var(--ease);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

.cart-overlay.active {
    opacity: 1;
    pointer-events: all;
}

/* =============================================
   CART SIDEBAR
   ============================================= */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(440px, 100vw);
    z-index: 950;
    background: #fff;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform .45s var(--ease-out);
    box-shadow: -8px 0 60px rgba(0, 0, 0, 0.12);
}

.cart-sidebar.open {
    transform: translateX(0);
}

.cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 32px 22px;
    border-bottom: 1px solid var(--border);
}

.cart-header h2 {
    font-family: var(--serif);
    font-size: 1.7rem;
    font-weight: 400;
    letter-spacing: 0.04em;
}

.cart-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
}

.cart-close:hover {
    background: var(--cream);
}

.cart-close svg {
    width: 18px;
    height: 18px;
    stroke: var(--t2);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 8px 0;
}

.cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    height: 100%;
    padding: 40px;
    color: var(--t3);
}

.cart-empty svg {
    width: 52px;
    height: 52px;
    opacity: .35;
    stroke: var(--t3);
}

.cart-empty p {
    font-size: 0.88rem;
}

.cart-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 18px 32px;
    border-bottom: 1px solid var(--border);
    animation: slideIn .3s var(--ease);
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(16px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.cart-item-img {
    width: 72px;
    height: 88px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    background: var(--cream);
    flex-shrink: 0;
}

.cart-item-info {
    flex: 1;
    min-width: 0;
}

.cart-item-name {
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cart-item-price {
    font-size: 0.82rem;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 12px;
}

.cart-qty {
    display: flex;
    align-items: center;
    gap: 12px;
}

.qty-btn {
    width: 30px;
    height: 30px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--t1);
    transition: border-color .2s, background .2s;
}

.qty-btn:hover {
    border-color: var(--t1);
    background: var(--bg-2);
}

.qty-n {
    font-size: 0.875rem;
    font-weight: 600;
    min-width: 18px;
    text-align: center;
}

.cart-del {
    padding: 4px;
    color: var(--t3);
    font-size: 1rem;
    line-height: 1;
    flex-shrink: 0;
    transition: color .2s;
    margin-top: 2px;
}

.cart-del:hover {
    color: #c0392b;
}

.cart-footer {
    padding: 20px 32px 32px;
    border-top: 1px solid var(--border);
}

.cart-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.84rem;
    color: var(--t2);
    margin-bottom: 10px;
}

.cart-grand {
    font-size: 1rem;
    font-weight: 700;
    color: var(--t1);
    padding-top: 14px;
    border-top: 1px solid var(--border);
    margin-top: 12px;
}

.btn-checkout-now {
    width: 100%;
    margin-top: 20px;
    padding: 16px 24px;
    background: var(--dark);
    color: #fff;
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background .25s, transform .2s var(--ease);
}

.btn-checkout-now:hover {
    background: var(--dark-2);
    transform: translateY(-1px);
}

.btn-checkout-now svg {
    width: 16px;
    height: 16px;
}

/* =============================================
   CHECKOUT MODAL
   ============================================= */
.modal-bg {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    animation: fadeIn .3s var(--ease);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.checkout-box {
    background: #fff;
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 920px;
    max-height: 92vh;
    overflow-y: auto;
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    animation: scaleUp .35s var(--ease);
}

@keyframes scaleUp {
    from {
        opacity: 0;
        transform: scale(.96) translateY(16px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.modal-x {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 5;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
}

.modal-x:hover {
    background: var(--warm);
}

.modal-x svg {
    width: 16px;
    height: 16px;
    stroke: var(--t2);
}

.co-left {
    padding: 52px 44px;
    background: var(--bg-2);
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}

.co-brand {
    font-family: var(--serif);
    font-size: 1.1rem;
    letter-spacing: 0.15em;
    color: var(--accent);
    margin-bottom: 28px;
}

.co-left h2 {
    font-family: var(--serif);
    font-size: 2.1rem;
    font-weight: 400;
    margin-bottom: 6px;
}

.co-left>p {
    font-size: 0.84rem;
    color: var(--t2);
    margin-bottom: 32px;
}

.co-items {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 24px;
}

.co-item {
    display: flex;
    gap: 14px;
    align-items: center;
}

.co-item-img {
    width: 54px;
    height: 66px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    background: var(--cream);
    flex-shrink: 0;
}

.co-item-info h4 {
    font-size: 0.84rem;
    font-weight: 500;
    margin-bottom: 3px;
}

.co-item-info span {
    font-size: 0.78rem;
    color: var(--accent);
    font-weight: 600;
}

.co-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 18px;
    border-top: 1px solid var(--border);
    font-weight: 700;
    font-size: 0.95rem;
}

.co-right {
    padding: 52px 48px;
}

.form-eyebrow {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--t3);
    margin-bottom: 18px;
    display: block;
}

.f-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.f-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 14px;
}

.f-group label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--t2);
    letter-spacing: 0.04em;
}

.f-group input {
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 13px 16px;
    font-size: 0.88rem;
    font-family: var(--sans);
    background: var(--bg);
    color: var(--t1);
    outline: none;
    transition: border-color .25s, box-shadow .25s;
}

.f-group input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(157, 120, 85, 0.12);
}

.f-group input.err {
    border-color: #c0392b;
    box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.1);
}

.pay-row {
    display: flex;
    gap: 10px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.pay-opt input {
    display: none;
}

.pay-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    padding: 14px 20px;
    font-size: 0.76rem;
    font-weight: 600;
    color: var(--t2);
    cursor: pointer;
    min-width: 90px;
    transition: all .25s;
}

.pay-box svg {
    width: 22px;
    height: 22px;
}

.pay-opt input:checked+.pay-box {
    border-color: var(--accent);
    background: rgba(157, 120, 85, 0.07);
    color: var(--accent);
}

.btn-order {
    width: 100%;
    padding: 17px;
    background: var(--dark);
    color: #fff;
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background .25s, transform .2s;
}

.btn-order:hover {
    background: var(--dark-2);
    transform: translateY(-1px);
}

.btn-order svg {
    width: 16px;
    height: 16px;
}

/* SUCCESS */
.success-box {
    background: #fff;
    border-radius: var(--radius-lg);
    max-width: 460px;
    width: 100%;
    padding: 64px 52px;
    text-align: center;
    animation: scaleUp .35s var(--ease);
}

.success-ring {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d1f5d3, #a8e6b0);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
}

.success-ring svg {
    width: 36px;
    height: 36px;
    stroke: #2e7d32;
    stroke-width: 2.5;
}

.success-box h2 {
    font-family: var(--serif);
    font-size: 2.2rem;
    font-weight: 400;
    margin-bottom: 14px;
}

.success-box p {
    font-size: 0.88rem;
    color: var(--t2);
    line-height: 1.8;
    margin-bottom: 10px;
}

.order-id {
    font-size: 0.9rem;
    color: var(--t1);
    font-weight: 600;
}

.btn-continue {
    margin-top: 32px;
    padding: 14px 36px;
    background: var(--dark);
    color: #fff;
    border-radius: var(--radius-sm);
    font-size: 0.84rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    display: inline-block;
    transition: background .25s;
}

.btn-continue:hover {
    background: var(--dark-2);
}

/* =============================================
   NAVBAR
   ============================================= */
#nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 800;
    height: var(--nav-h);
    transition: background .4s var(--ease), border-color .4s;
    border-bottom: 1px solid transparent;
}

#nav.scrolled {
    background: rgba(250, 249, 247, 0.94);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom-color: var(--border);
}

.nav-wrap {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 48px;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

.nav-left {
    display: flex;
    align-items: center;
}

.nav-center {
    text-align: center;
}

.nav-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.nav-brand {
    font-family: var(--serif);
    font-size: 1.5rem;
    letter-spacing: 0.18em;
    font-weight: 400;
    color: var(--t1);
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 38px;
    list-style: none;
}

.nav-a {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--t2);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    position: relative;
    transition: color .25s;
}

.nav-a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width .3s var(--ease);
}

.nav-a:hover {
    color: var(--t1);
}

.nav-a:hover::after {
    width: 100%;
}

.nav-cart {
    position: relative;
    padding: 8px;
    color: var(--t1);
    transition: opacity .2s;
}

.nav-cart:hover {
    opacity: 0.7;
}

.nav-cart svg {
    width: 22px;
    height: 22px;
}

.cart-count {
    position: absolute;
    top: 2px;
    right: 2px;
    min-width: 17px;
    height: 17px;
    background: var(--dark);
    color: #fff;
    border-radius: 100px;
    font-size: 0.6rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
}

/* Hamburger */
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.burger span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--t1);
    transform-origin: center;
    transition: transform .3s var(--ease), opacity .3s;
}

.burger.is-open span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

.burger.is-open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.burger.is-open span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile menu */
.mobile-nav {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    z-index: 799;
    background: rgba(250, 249, 247, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transform: translateY(-105%);
    transition: transform .4s var(--ease-out);
    padding: 8px 0 20px;
}

.mobile-nav.is-open {
    transform: translateY(0);
}

.mobile-nav a {
    display: block;
    padding: 15px 28px;
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--t2);
    border-bottom: 1px solid var(--border);
    transition: color .2s, background .2s;
}

.mobile-nav a:last-child {
    border-bottom: none;
}

.mobile-nav a:hover {
    color: var(--t1);
    background: var(--bg-2);
}

/* =============================================
   HERO
   ============================================= */
#hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    transform: scale(1.06);
    animation: heroZoom 8s var(--ease) forwards;
}

@keyframes heroZoom {
    to {
        transform: scale(1);
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg,
            rgba(12, 10, 8, 0.7) 0%,
            rgba(12, 10, 8, 0.45) 55%,
            rgba(12, 10, 8, 0.15) 100%);
}

.hero-body {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 80px;
    padding-top: var(--nav-h);
    max-width: 760px;
}

.hero-season {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold-2);
    margin-bottom: 22px;
    animation: revealUp .7s var(--ease) .1s both;
}

.hero-h1 {
    font-family: var(--serif);
    font-size: clamp(3.2rem, 7vw, 6.5rem);
    font-weight: 300;
    line-height: 1.02;
    color: #fff;
    margin-bottom: 22px;
    animation: revealUp .7s var(--ease) .2s both;
}

.hero-h1 em {
    font-style: italic;
    color: var(--gold-2);
}

@keyframes revealUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.hero-desc {
    font-size: clamp(0.88rem, 1.4vw, 1rem);
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.75;
    max-width: 420px;
    margin-bottom: 38px;
    animation: revealUp .7s var(--ease) .3s both;
}

.hero-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    animation: revealUp .7s var(--ease) .4s both;
}

.btn-h-fill {
    padding: 15px 36px;
    background: #fff;
    color: var(--t1);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 3px;
    transition: background .25s, transform .2s;
}

.btn-h-fill:hover {
    background: var(--cream);
    transform: translateY(-1px);
}

.btn-h-ghost {
    padding: 15px 36px;
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    color: #fff;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 3px;
    transition: border-color .25s, background .25s;
}

.btn-h-ghost:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.hero-scroll {
    position: absolute;
    bottom: 44px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.6rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.scroll-bar {
    width: 1px;
    height: 44px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4), transparent);
    animation: scrollAnim 2s ease-in-out infinite;
}

@keyframes scrollAnim {
    0% {
        transform: scaleY(0);
        transform-origin: top;
        opacity: 0;
    }

    40% {
        transform: scaleY(1);
        transform-origin: top;
        opacity: 1;
    }

    60% {
        transform: scaleY(1);
        transform-origin: bottom;
        opacity: 1;
    }

    100% {
        transform: scaleY(0);
        transform-origin: bottom;
        opacity: 0;
    }
}

/* =============================================
   MARQUEE
   ============================================= */
.marquee {
    background: var(--dark);
    overflow: hidden;
    padding: 15px 0;
}

.marquee-track {
    display: flex;
    gap: 56px;
    width: max-content;
    animation: marquee 30s linear infinite;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}

.mq-dot {
    color: var(--gold);
    font-size: 0.5rem;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* =============================================
   NEW ARRIVALS
   ============================================= */
#new {
    padding: 120px 0 100px;
    background: var(--bg);
}

.arrivals-grid {
    display: grid;
    grid-template-columns: 1fr 1.25fr 1fr;
    gap: 18px;
    align-items: start;
}

.arr-card {
    cursor: pointer;
}

.arr-img-wrap {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    background: var(--cream);
}

.arr-card:nth-child(1) .arr-img-wrap {
    aspect-ratio: 4/5;
}

.arr-card:nth-child(2) .arr-img-wrap {
    aspect-ratio: 3/4.6;
}

.arr-card:nth-child(3) .arr-img-wrap {
    aspect-ratio: 4/5;
}

.arr-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s var(--ease);
    display: block;
}

.arr-card:hover .arr-img-wrap img {
    transform: scale(1.05);
}

.arr-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.35) 0%, transparent 50%);
    opacity: 0;
    transition: opacity .35s var(--ease);
}

.arr-card:hover .arr-overlay {
    opacity: 1;
}

.btn-add-quick {
    width: 100%;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-sm);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--t1);
    transform: translateY(8px);
    transition: transform .3s var(--ease), background .2s;
}

.arr-card:hover .btn-add-quick {
    transform: translateY(0);
}

.btn-add-quick:hover {
    background: #fff;
}

.arr-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #fff;
    background: var(--dark);
    padding: 5px 12px;
    border-radius: 100px;
}

.arr-badge.gold {
    background: var(--accent);
}

.arr-info {
    padding: 16px 4px 0;
}

.arr-info h3 {
    font-family: var(--serif);
    font-size: 1.15rem;
    font-weight: 400;
    margin-bottom: 5px;
    letter-spacing: 0.02em;
    transition: color .2s;
}

.arr-card:hover .arr-info h3 {
    color: var(--accent);
}

.arr-price {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--t1);
}

/* =============================================
   CATALOG
   ============================================= */
#catalog {
    padding: 100px 0;
    background: var(--bg-2);
}

.filter-bar {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.f-btn {
    padding: 9px 24px;
    border: 1.5px solid var(--border);
    border-radius: 100px;
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--t2);
    background: #fff;
    transition: all .25s;
}

.f-btn:hover {
    border-color: var(--t2);
    color: var(--t1);
}

.f-btn.active {
    background: var(--dark);
    border-color: var(--dark);
    color: #fff;
}

.cat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.cat-card {
    cursor: pointer;
    animation: fadeUp .4s var(--ease) both;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.cat-img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    border-radius: var(--radius-md);
    background: var(--cream);
}

.cat-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .55s var(--ease);
}

.cat-card:hover .cat-img-wrap img {
    transform: scale(1.06);
}

.cat-hover-layer {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 16px;
    background: linear-gradient(to top, rgba(0, 0, 0, .3) 0%, transparent 55%);
    opacity: 0;
    transition: opacity .3s;
}

.cat-card:hover .cat-hover-layer {
    opacity: 1;
}

.btn-cat-add {
    width: 100%;
    padding: 11px;
    background: rgba(255, 255, 255, 0.96);
    border-radius: var(--radius-sm);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--t1);
    transform: translateY(6px);
    transition: transform .3s var(--ease), background .2s;
}

.cat-card:hover .btn-cat-add {
    transform: translateY(0);
}

.btn-cat-add:hover {
    background: #fff;
}

.cat-info {
    padding: 13px 2px 0;
}

.cat-info h3 {
    font-family: var(--serif);
    font-size: 1.05rem;
    font-weight: 400;
    margin-bottom: 4px;
    transition: color .2s;
}

.cat-card:hover .cat-info h3 {
    color: var(--accent);
}

.cat-price {
    font-size: 0.85rem;
    font-weight: 600;
}

/* =============================================
   ABOUT BANNER
   ============================================= */
#about {
    background: var(--cream);
    padding: 0;
}

.about-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 620px;
}

.about-txt {
    padding: 100px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-txt h2 {
    font-family: var(--serif);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 300;
    line-height: 1.25;
    margin-bottom: 22px;
}

.about-txt h2 em {
    font-style: italic;
    color: var(--accent);
}

.about-txt p {
    font-size: 0.94rem;
    color: var(--t2);
    line-height: 1.85;
    max-width: 420px;
    margin-bottom: 44px;
}

.about-stats {
    display: flex;
    gap: 40px;
}

.a-stat {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.a-n {
    font-family: var(--serif);
    font-size: 2.4rem;
    font-weight: 300;
    color: var(--t1);
    line-height: 1;
}

.a-l {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--t3);
}

.about-photo {
    position: relative;
    overflow: hidden;
    min-height: 500px;
}

.about-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform .6s var(--ease);
}

.about-photo:hover img {
    transform: scale(1.03);
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testi {
    padding: 110px 0;
    background: var(--bg);
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.testi-card {
    padding: 36px 32px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: #fff;
    transition: transform .35s var(--ease), box-shadow .35s, border-color .3s;
}

.testi-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--border-2);
}

.testi-card.feat {
    background: var(--cream);
    border-color: var(--warm);
}

.stars {
    color: var(--gold);
    font-size: 0.88rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testi-quote {
    font-family: var(--serif);
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.7;
    color: var(--t2);
    margin-bottom: 24px;
}

.testi-person {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testi-person img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
}

.testi-person strong {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.testi-person span {
    font-size: 0.76rem;
    color: var(--t3);
}

/* =============================================
   FOOTER
   ============================================= */
footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.65);
    padding: 88px 0 0;
}

.foot-grid {
    display: grid;
    grid-template-columns: 2.2fr 1fr 1fr 1fr;
    gap: 64px;
    padding-bottom: 64px;
}

.foot-logo {
    font-family: var(--serif);
    font-size: 2rem;
    letter-spacing: 0.18em;
    color: #fff;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.foot-tagline {
    font-size: 0.85rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.45);
    max-width: 270px;
    margin-bottom: 28px;
}

.foot-tagline em {
    font-style: italic;
    color: var(--gold-2);
}

.foot-socials {
    display: flex;
    gap: 16px;
}

.foot-socials a {
    color: rgba(255, 255, 255, 0.35);
    transition: color .25s, transform .25s;
}

.foot-socials a:hover {
    color: var(--gold-2);
    transform: translateY(-2px);
}

.foot-socials svg {
    width: 20px;
    height: 20px;
}

.foot-col h5 {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 22px;
}

.foot-col a {
    display: block;
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 13px;
    transition: color .25s;
}

.foot-col a:hover {
    color: #fff;
}

.foot-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding: 24px 0;
}

.foot-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.foot-bottom span {
    font-size: 0.76rem;
    color: rgba(255, 255, 255, 0.28);
}

/* =============================================
   TOAST
   ============================================= */
.toast-msg {
    position: fixed;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%) translateY(80px);
    background: var(--dark);
    color: #fff;
    padding: 14px 30px;
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    z-index: 2000;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: transform .4s var(--ease), opacity .4s;
    box-shadow: var(--shadow-lg);
}

.toast-msg.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

/* =============================================
   RESPONSIVE — TABLET (≤1024px)
   ============================================= */
@media (max-width: 1024px) {
    .container {
        padding: 0 36px;
    }

    .nav-wrap {
        padding: 0 36px;
    }

    .foot-grid {
        grid-template-columns: 1fr 1fr;
        gap: 44px;
    }

    .cat-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .arrivals-grid {
        gap: 14px;
    }

    .about-txt {
        padding: 80px 52px;
    }

    .checkout-box {
        grid-template-columns: 1fr;
    }

    .co-left {
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
        padding: 44px 40px 36px;
    }

    .co-right {
        padding: 36px 40px 44px;
    }
}

/* =============================================
   RESPONSIVE — TABLET SMALL (≤768px)
   ============================================= */
@media (max-width: 768px) {
    :root {
        --nav-h: 62px;
    }

    .container {
        padding: 0 24px;
    }

    /* Nav — hide desktop links, show burger */
    .nav-links {
        display: none;
    }

    .burger {
        display: flex;
    }

    .nav-wrap {
        padding: 0 20px;
    }

    /* Hero */
    .hero-body {
        padding: 0 28px;
        padding-top: var(--nav-h);
        max-width: 100%;
    }

    .hero-h1 {
        font-size: clamp(2.8rem, 10vw, 4rem);
    }

    .hero-cta {
        gap: 10px;
    }

    .btn-h-fill,
    .btn-h-ghost {
        padding: 13px 26px;
        font-size: 0.72rem;
    }

    /* New Arrivals */
    #new {
        padding: 80px 0 60px;
    }

    .arrivals-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .arr-card:nth-child(2) {
        display: none;
    }

    /* hide tall center card */
    .arr-card:nth-child(1) .arr-img-wrap,
    .arr-card:nth-child(3) .arr-img-wrap {
        aspect-ratio: 3/4;
    }

    /* Catalog */
    #catalog {
        padding: 64px 0;
    }

    .cat-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .filter-bar {
        gap: 6px;
        margin-bottom: 40px;
    }

    /* About */
    .about-wrap {
        grid-template-columns: 1fr;
    }

    .about-photo {
        min-height: 340px;
        order: -1;
    }

    .about-txt {
        padding: 60px 28px;
    }

    .about-stats {
        gap: 28px;
    }

    /* Testimonials */
    .testi {
        padding: 72px 0;
    }

    .testi-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    /* Footer */
    .foot-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    /* Checkout */
    .checkout-box {
        max-height: 85vh;
    }

    .co-left {
        padding: 36px 28px 28px;
    }

    .co-right {
        padding: 28px 28px 36px;
    }

    .f-grid {
        grid-template-columns: 1fr;
    }

    .pay-row {
        justify-content: flex-start;
    }
}

/* =============================================
   RESPONSIVE — MOBILE (≤480px)
   ============================================= */
@media (max-width: 480px) {
    .container {
        padding: 0 18px;
    }

    .nav-wrap {
        padding: 0 16px;
    }

    .hero-body {
        padding: 0 20px;
        padding-top: var(--nav-h);
    }

    .hero-h1 {
        font-size: clamp(2.4rem, 11vw, 3rem);
        letter-spacing: 0;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn-h-fill,
    .btn-h-ghost {
        text-align: center;
        justify-content: center;
    }

    #new {
        padding: 64px 0 48px;
    }

    .arrivals-grid {
        grid-template-columns: 1fr;
    }

    .arr-card:nth-child(2) {
        display: block;
    }

    .arr-card:nth-child(2) .arr-img-wrap {
        aspect-ratio: 4/5;
    }

    .cat-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .sec-title {
        font-size: 2rem;
    }

    .foot-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .foot-bottom .container {
        justify-content: center;
        text-align: center;
    }

    .pay-row {
        flex-direction: column;
    }

    .pay-box {
        flex-direction: row;
        justify-content: flex-start;
        width: 100%;
    }
}

/* =============================================
   UTILITY — NO-SELECT on interactive
   ============================================= */
.arr-card,
.cat-card,
.testi-card,
.btn-add-quick,
.btn-cat-add,
.qty-btn,
.cart-del {
    user-select: none;
    -webkit-user-select: none;
}