/* ============================================
   LIGHT BLACK — Premium E-Commerce 2026
   ============================================ */

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

:root {
    --black: #0a0a0a;
    --dark: #1a1a1a;
    --gray: #666;
    --light-gray: #999;
    --border: #e0e0e0;
    --cream: #f5f0eb;
    --off-white: #fafaf8;
    --white: #ffffff;
    --font: 'Plus Jakarta Sans', -apple-system, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
    --header-h: 64px;
    --ease: cubic-bezier(.25, .46, .45, .94);
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.5;
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
}

body.lb-new-body,
body.lb-new-body input,
body.lb-new-body textarea,
body.lb-new-body select,
body.lb-new-body button {
    font-family: var(--font);
}

body.lb-new-body ul,
body.lb-new-body ol,
body.lb-new-body li {
    list-style: none;
    margin: 0;
    padding: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

body.lb-new-body a {
    color: inherit;
    text-decoration: none;
    transition: color .2s var(--ease);
}

body.lb-new-body a.btn-hero-dark,
body.lb-new-body a.btn-dark,
body.lb-new-body a.btn-main-product,
body.lb-new-body a.btn-main,
body.lb-new-body a.cart-checkout-btn,
body.lb-new-body a.cart-empty-btn,
body.lb-new-body a.pd-add-btn {
    color: #fff;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: var(--font);
    color: inherit;
}

body.lb-new-body .header button,
body.lb-new-body .footer button,
body.lb-new-body .mobile-menu button,
body.lb-new-body .cart-drawer button,
body.lb-new-body .search-overlay button,
body.lb-new-body .size-modal button,
body.lb-new-body .qa-modal button {
    padding: 0;
    background: transparent;
    border-radius: 0;
    color: inherit;
    font-family: inherit;
    transition: none;
}

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

.container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 48px);
}

/* ---- ANNOUNCEMENT BAR (Marquee) ---- */
body.lb-new-body .announcement-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    background: var(--black);
    color: #fff;
    overflow: hidden;
    height: 36px;
    display: flex;
    align-items: center;
    transition: transform .35s var(--ease);
}

body.lb-new-body .announcement-bar.hidden {
    transform: translateY(-100%);
}

body.lb-new-body .announcement-track {
    display: flex;
    white-space: nowrap;
    animation: marquee 25s linear infinite;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 600;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

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

/* ---- HEADER ---- */
body.lb-new-body .header {
    position: fixed;
    top: 36px;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-h);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    transition: top .35s var(--ease), background .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
    border-bottom: 1px solid transparent;
}

body.lb-new-body .header.scrolled {
    top: 0;
    background: rgba(255, 255, 255, 0.98);
    border-bottom-color: var(--border);
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.05);
}

body.lb-new-body .header-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
    height: 100%;
    padding: 0 clamp(16px, 4vw, 48px);
    max-width: 1920px;
    margin: 0 auto;
}

body.lb-new-body .header-left {
    display: flex;
    align-items: center;
    gap: 24px;
    justify-self: start;
}

body.lb-new-body .header-right {
    display: flex;
    align-items: center;
    gap: 4px;
    justify-self: end;
    flex-shrink: 0;
}

body.lb-new-body .header-divider {
    width: 1px;
    height: 20px;
    background: var(--border);
    margin: 0 8px;
    flex-shrink: 0;
}

body.lb-new-body .header-support {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 14px 6px 10px;
    border: 1px solid var(--border);
    transition: border-color .2s, background .2s;
    text-decoration: none;
    color: var(--dark);
    margin-right: 4px;
}

body.lb-new-body .header-support:hover {
    border-color: var(--black);
    background: var(--off-white);
}

body.lb-new-body .header-support-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    flex-shrink: 0;
}

body.lb-new-body .header-support-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

body.lb-new-body .header-support-label {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--light-gray);
    line-height: 1;
}

body.lb-new-body .header-support-number {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--black);
    line-height: 1;
    letter-spacing: 0.02em;
}

body.lb-new-body .social-instagram i {
    font-size: 19px;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

body.lb-new-body .social-instagram:hover {
    background: rgba(188, 24, 136, 0.06) !important;
}

body.lb-new-body .social-whatsapp i {
    font-size: 20px;
    color: #25D366;
}

body.lb-new-body .social-whatsapp:hover {
    background: rgba(37, 211, 102, 0.08) !important;
}

body.lb-new-body .nav-main {
    display: flex;
    gap: 22px;
    flex-wrap: nowrap;
    align-items: center;
}

body.lb-new-body .nav-link {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    position: relative;
    white-space: nowrap;
    flex-shrink: 0;
    padding: 4px 0;
}

@media (max-width: 1700px) {
    body.lb-new-body .nav-main {
        gap: 16px;
    }

    body.lb-new-body .nav-link {
        font-size: 0.7rem;
    }
}

@media (max-width: 1500px) {
    body.lb-new-body .nav-main {
        gap: 12px;
    }

    body.lb-new-body .nav-link {
        font-size: 0.62rem;
        letter-spacing: 0.04em;
    }
}

@media (max-width: 1280px) {
    body.lb-new-body .nav-main {
        gap: 8px;
    }

    body.lb-new-body .nav-link {
        font-size: 0.55rem;
        letter-spacing: 0.02em;
    }
}

@media (max-width: 1100px) {
    body.lb-new-body .nav-main {
        gap: 6px;
    }

    body.lb-new-body .nav-link {
        font-size: 0.5rem;
        letter-spacing: 0.01em;
    }
}

body.lb-new-body .nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--black);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .3s var(--ease);
}

body.lb-new-body .nav-link:hover::after {
    transform: scaleX(1);
}

body.lb-new-body .logo {
    display: flex;
    align-items: center;
    justify-self: center;
}

body.lb-new-body .logo-img {
    height: 38px;
    width: auto;
    object-fit: contain;
}

body.lb-new-body .social-btn {
    color: var(--black);
}

body.lb-new-body .social-btn:hover {
    background: var(--cream);
}

body.lb-new-body .icon-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background .2s;
}

body.lb-new-body .icon-btn:hover {
    background: var(--cream);
}

.cart-icon {
    position: relative;
}

body.lb-new-body .cart-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 16px;
    height: 16px;
    background: var(--black);
    color: #fff;
    font-size: 0.55rem;
    font-weight: 700;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

body.lb-new-body .menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    width: 24px;
    z-index: 10;
}

body.lb-new-body .menu-toggle span {
    height: 2px;
    background: var(--black);
    border-radius: 2px;
    transition: all .3s var(--ease);
}

body.lb-new-body .menu-toggle.active span:first-child {
    transform: rotate(45deg) translate(3px, 3px);
}

body.lb-new-body .menu-toggle.active span:last-child {
    transform: rotate(-45deg) translate(3px, -3px);
}

/* ---- MOBILE MENU ---- */
body.lb-new-body .mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .4s var(--ease);
}

body.lb-new-body .mobile-menu.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.mobile-menu-content a {
    font-size: 2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 8px 0;
    transition: color .2s;
}

.mobile-menu-content a:hover {
    color: var(--gray);
}

/* ---- HERO SLIDER ---- */
.hero-slider {
    position: relative;
    height: 100vh;
    min-height: 600px;
    max-height: 1000px;
    margin-top: calc(36px + var(--header-h));
    overflow: hidden;
}

.hero-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .8s var(--ease);
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(0, 0, 0, 0.65) 0%,
            rgba(0, 0, 0, 0.3) 40%,
            rgba(0, 0, 0, 0.05) 100%);
}

.hero-slide-content {
    position: absolute;
    bottom: 15%;
    left: clamp(24px, 6vw, 80px);
    z-index: 2;
    color: #fff;
    max-width: 560px;
}

.hero-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 6px 16px;
    margin-bottom: 20px;
}

.hero-title {
    font-family: var(--font);
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.hero-desc {
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.85;
    line-height: 1.6;
    margin-bottom: 28px;
    max-width: 400px;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    padding: 16px 40px;
    background: #fff;
    color: var(--black);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all .3s var(--ease);
}

.btn-hero:hover {
    background: var(--cream);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

/* Hero Controls */
.hero-controls {
    position: absolute;
    bottom: 32px;
    right: clamp(24px, 6vw, 80px);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 16px;
}

.hero-arrow {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all .3s;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.05);
}

.hero-arrow:hover {
    background: #fff;
    color: var(--black);
    border-color: #fff;
}

.hero-dots {
    display: flex;
    gap: 8px;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.6);
    background: transparent;
    transition: all .3s;
}

.hero-dot.active {
    background: #fff;
    border-color: #fff;
    transform: scale(1.2);
}

/* Hero Motto */
.hero-motto {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    text-align: center;
    font-size: clamp(0.7rem, 1.2vw, 0.85rem);
    font-weight: 800;
    letter-spacing: 0.5em;
    color: rgba(255, 255, 255, 0.5);
    padding: 14px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

/* ---- CATEGORIES ---- */
.categories {
    padding: 100px 0 80px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.cat-card {
    position: relative;
    display: block;
    overflow: hidden;
    background: var(--cream);
    isolation: isolate;
}

.cat-img-wrap {
    aspect-ratio: 4/5;
    overflow: hidden;
    position: relative;
}

.cat-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.2) 65%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
    transition: opacity .5s var(--ease);
}

.cat-card:hover .cat-img-wrap::after {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.35) 50%, rgba(0, 0, 0, 0.85) 100%);
}

.cat-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--ease), filter .6s var(--ease);
}

.cat-card:hover .cat-img-wrap img {
    transform: scale(1.08);
    filter: brightness(1.05);
}

.cat-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 28px 24px;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 4px;
    transition: transform .5s var(--ease);
}

.cat-card:hover .cat-label {
    transform: translateY(-6px);
}

.cat-label h3 {
    font-size: 1.6rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1;
}

.cat-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(8px);
    transition: all .4s var(--ease);
}

.cat-arrow::before {
    content: 'Keşfet';
}

.cat-arrow::after {
    content: '→';
    font-size: 1rem;
    transition: transform .3s;
}

.cat-card:hover .cat-arrow {
    opacity: 1;
    transform: translateY(0);
}

.cat-card:hover .cat-arrow::after {
    transform: translateX(4px);
}

/* ---- SECTION SHARED ---- */
.section-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.6vw, 2.8rem);
    font-weight: 700;
    font-style: italic;
    text-transform: none;
    letter-spacing: -0.01em;
    line-height: 1.05;
    color: var(--black);
}

.section-title.centered {
    text-align: center;
    margin-bottom: 48px;
}

.section-sub {
    font-size: 0.78rem;
    color: var(--gray);
    margin-top: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 500;
}

.section-cta {
    text-align: center;
    margin-top: 48px;
}

.view-all {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: gap .3s;
    display: inline-flex;
    gap: 4px;
}

.view-all:hover {
    gap: 10px;
}

/* ---- PRODUCT CARDS ---- */
.product-card {
    position: relative;
    transition: transform .4s var(--ease);
}

.product-card-media {
    position: relative;
}

.product-img-link {
    display: block;
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: linear-gradient(180deg, #f5f0eb 0%, #ebe5dd 100%);
    isolation: isolate;
}

.product-img-link>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity .5s var(--ease), transform 1.2s var(--ease);
}

.product-card:hover .product-img-link>img {
    transform: scale(1.04);
}

.product-hover-img {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .5s var(--ease);
    z-index: 1;
}

.product-hover-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--ease);
}

.product-card:hover .product-hover-img {
    opacity: 1;
}

.product-card:hover .product-hover-img img {
    transform: scale(1.04);
}

/* Quick action buttons that fade in on hover */
.product-actions {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transform: translateX(8px);
    transition: all .4s var(--ease);
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(0);
}

.product-action {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    transition: all .25s;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.product-action:hover {
    background: var(--black);
    color: #fff;
    transform: scale(1.08);
}

.product-action-wishlist.active,
.product-action-wishlist.is-in-wishlist {
    background: #b91c1c;
    color: #fff;
}

.product-action-wishlist.active svg,
.product-action-wishlist.is-in-wishlist svg {
    fill: currentColor;
    stroke: currentColor;
}

.product-action-wishlist.active:hover,
.product-action-wishlist.is-in-wishlist:hover {
    background: #7f1414;
    color: #fff;
}

.product-action {
    position: relative;
}

.product-action .tooltip {
    position: absolute;
    right: calc(100% + 10px);
    top: 50%;
    transform: translateY(-50%) translateX(4px);
    background: var(--black, #0a0a0a);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 500;
    padding: 7px 11px;
    border-radius: 4px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .2s, visibility .2s, transform .2s;
    z-index: 10;
}

.product-action .tooltip::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translateY(-50%) rotate(45deg);
    margin-left: -4px;
    width: 8px;
    height: 8px;
    background: var(--black, #0a0a0a);
    z-index: -1;
}

.product-action:hover .tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

/* Quick add bar slides up from bottom */
.product-quick-add {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    padding: 14px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    transform: translateY(100%);
    transition: transform .4s var(--ease);
}

.product-card:hover .product-quick-add {
    transform: translateY(0);
}

.product-quick-add button {
    width: 100%;
    padding: 12px;
    background: var(--black);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: background .2s;
}

.product-quick-add button:hover {
    background: #333;
}

.badge {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 6px 14px;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    z-index: 2;
    backdrop-filter: blur(10px);
}

.badge-best {
    background: rgba(10, 10, 10, 0.92);
    color: #fff;
}

.badge-new {
    background: rgba(255, 255, 255, 0.95);
    color: var(--black);
}

.badge-sale {
    background: #b91c1c;
    color: #fff;
}

.product-info {
    padding: 18px 4px 8px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.product-info h3 {
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.005em;
}

.product-info h3 a {
    transition: color .2s;
}

.product-info h3 a:hover {
    color: var(--gray);
}

.price {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--black);
    letter-spacing: -0.01em;
}

.price-old {
    text-decoration: line-through;
    color: var(--light-gray);
    font-weight: 500;
    margin-right: 8px;
    font-size: 0.82rem;
}

.color-options {
    display: flex;
    gap: 7px;
    margin-bottom: 8px;
}

.color-options span {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all .25s var(--ease);
    position: relative;
}

.color-options span:hover {
    transform: scale(1.25);
    box-shadow: 0 0 0 1.5px var(--black);
}

/* ---- PRODUCT SLIDER ---- */
.product-section {
    padding: 80px 0;
}

.product-slider {
    overflow: hidden;
    position: relative;
}

.product-track {
    display: flex;
    gap: 16px;
    transition: transform .5s var(--ease);
}

.product-track .product-card {
    flex: 0 0 calc(25% - 12px);
    min-width: 0;
}

body.lb-new-body .ig-stories-section {
    padding: 80px 0;
}

body.lb-new-body .ig-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 32px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--border);
    flex-wrap: wrap;
}

body.lb-new-body .ig-section-text {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

body.lb-new-body .ig-section-eyebrow {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gray);
}

body.lb-new-body .ig-section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.2vw, 2.6rem);
    font-weight: 700;
    line-height: 1.05;
    color: var(--black);
    margin: 0;
    letter-spacing: -0.01em;
}

body.lb-new-body .ig-section-title em {
    font-style: italic;
    font-weight: 700;
}

body.lb-new-body a.ig-section-handle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--black);
    padding: 10px 18px;
    border: 1px solid var(--black);
    border-radius: 999px;
    transition: background .25s ease, color .25s ease;
    text-decoration: none;
    white-space: nowrap;
}

body.lb-new-body a.ig-section-handle:hover {
    background: var(--black);
    color: #fff;
}

body.lb-new-body .ig-stories-track {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    scroll-behavior: smooth;
    padding: 4px 2px 8px;
}

body.lb-new-body .ig-stories-track::-webkit-scrollbar {
    display: none;
}

body.lb-new-body .ig-bubble-wrap {
    display: flex;
    flex-direction: column;
    gap: 10px;
    cursor: pointer;
    user-select: none;
    flex-shrink: 0;
    text-decoration: none;
    flex: 0 0 calc((100% - 6px * 5) / 6);
    min-width: 0;
}

body.lb-new-body .ig-bubble-ring {
    padding: 0;
    border-radius: 0;
    background: var(--off-white);
    position: relative;
    aspect-ratio: 1/1;
    width: 100%;
    overflow: hidden;
}

body.lb-new-body .ig-bubble-ring::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    opacity: 0;
    transition: opacity .3s ease;
    z-index: 2;
    pointer-events: none;
}

body.lb-new-body .ig-bubble-ring::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 28px;
    height: 28px;
    transform: translate(-50%, -50%) scale(0.8);
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='1.6'><rect x='2' y='2' width='20' height='20' rx='5'/><circle cx='12' cy='12' r='5'/><circle cx='17.5' cy='6.5' r='1.3' fill='white' stroke='none'/></svg>");
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0;
    transition: opacity .3s ease, transform .3s ease;
    z-index: 3;
    pointer-events: none;
}

body.lb-new-body .ig-bubble-wrap:hover .ig-bubble-ring::before {
    opacity: 1;
}

body.lb-new-body .ig-bubble-wrap:hover .ig-bubble-ring::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

body.lb-new-body .ig-bubble-wrap.ig-viewed .ig-bubble-inner {
    opacity: 0.6;
}

body.lb-new-body .ig-bubble-inner {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: var(--off-white);
    transition: opacity .3s ease;
}

body.lb-new-body .ig-bubble-inner img,
body.lb-new-body .ig-bubble-inner video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .8s var(--ease);
}

body.lb-new-body .ig-bubble-wrap:hover .ig-bubble-inner img,
body.lb-new-body .ig-bubble-wrap:hover .ig-bubble-inner video {
    transform: scale(1.04);
}

body.lb-new-body .ig-bubble-title {
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.01em;
    color: var(--gray);
    text-align: left;
    max-width: 100%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    line-height: 1.4;
    text-decoration: none;
    padding: 0 2px;
    text-transform: none;
}

body.lb-new-body .ig-bubble-wrap.ig-viewed .ig-bubble-title {
    color: rgba(0, 0, 0, 0.35);
}

@media (max-width: 1100px) {
    body.lb-new-body .ig-bubble-wrap {
        flex: 0 0 calc((100% - 6px * 4) / 5);
    }
}

@media (max-width: 768px) {
    body.lb-new-body .ig-stories-section {
        padding: 60px 0 50px;
    }

    body.lb-new-body .ig-bubble-wrap {
        flex: 0 0 calc((100% - 6px * 3) / 4);
    }

    body.lb-new-body .ig-section-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    body.lb-new-body .ig-bubble-title {
        font-size: 0.65rem;
    }
}

@media (max-width: 520px) {
    body.lb-new-body .ig-bubble-wrap {
        flex: 0 0 calc((100% - 6px * 2) / 3);
    }
}

.slider-nav {
    display: flex;
    gap: 8px;
}

.slider-btn {
    width: 44px;
    height: 44px;
    border: 2px solid var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s;
}

.slider-btn:hover {
    background: var(--black);
    color: #fff;
}

/* ---- DUAL BANNER ---- */
.dual-banner {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.dual-card {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 3/4;
}

.dual-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s var(--ease);
}

.dual-card:hover img {
    transform: scale(1.04);
}

.dual-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.1) 50%, transparent 100%);
}

.dual-content {
    position: absolute;
    bottom: clamp(24px, 5vw, 56px);
    left: clamp(24px, 5vw, 56px);
    color: #fff;
    z-index: 2;
}

.dual-tag {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0.7;
    margin-bottom: 12px;
}

.dual-content h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.05;
    margin-bottom: 16px;
}

.dual-link {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-bottom: 2px solid #fff;
    padding-bottom: 2px;
    transition: gap .3s;
}

/* ---- MOTTO MARQUEE ---- */
.motto-strip {
    padding: 32px 0;
    overflow: hidden;
    background: var(--black);
}

.motto-marquee {
    display: flex;
    white-space: nowrap;
    animation: marquee 20s linear infinite;
}

.motto-marquee span {
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    font-weight: 800;
    letter-spacing: 0.15em;
    color: #fff;
    text-transform: uppercase;
    padding-right: 0;
}

/* ---- NEW ARRIVALS GRID ---- */
.new-arrivals {
    padding: 80px 0;
}

.arrivals-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

/* ---- BRAND STORY ---- */
.brand-story {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    min-height: 600px;
}

.story-image {
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(40px, 6vw, 80px);
    background: var(--cream);
}

.story-tag {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 20px;
}

.story-content h2 {
    font-family: var(--font);
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.story-content p {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 16px;
    max-width: 440px;
}

.story-link {
    display: inline-block;
    margin-top: 16px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-bottom: 2px solid var(--black);
    padding-bottom: 2px;
    transition: gap .3s;
}

/* ---- REVIEWS ---- */
.reviews {
    padding: 80px 0;
    background: var(--off-white);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.review-card {
    background: var(--white);
    padding: 40px;
    border: 1px solid var(--border);
    transition: all .3s var(--ease);
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.06);
}

.review-stars {
    color: #d4a017;
    font-size: 0.9rem;
    letter-spacing: 3px;
    margin-bottom: 16px;
}

.review-card p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--dark);
}

.review-author strong {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
}

.review-author span {
    font-size: 0.72rem;
    color: var(--light-gray);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* ---- NEWSLETTER ---- */
.newsletter {
    padding: 100px 0;
    background: var(--black);
    color: #fff;
    text-align: center;
}

.newsletter-inner {
    max-width: 540px;
    margin: 0 auto;
}

.newsletter h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    letter-spacing: 0.15em;
    margin-bottom: 12px;
}

.newsletter p {
    font-size: 0.9rem;
    opacity: 0.6;
    margin-bottom: 32px;
    line-height: 1.7;
}

.newsletter-form {
    display: flex;
    max-width: 460px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 16px 20px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    font-family: var(--font);
    font-size: 0.85rem;
    outline: none;
    transition: border-color .2s;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-form input:focus {
    border-color: rgba(255, 255, 255, 0.6);
}

.newsletter-form button {
    padding: 16px 28px;
    background: #fff;
    color: var(--black);
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 2px solid #fff;
    transition: all .2s;
}

.newsletter-form button:hover {
    background: transparent;
    color: #fff;
}

/* ---- BUTTONS ---- */
body.lb-new-body .btn-dark {
    display: inline-flex;
    align-items: center;
    padding: 16px 40px;
    background: var(--black);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all .3s var(--ease);
}

body.lb-new-body .btn-dark:hover {
    background: #333;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* ---- QUICK ADD MODAL ---- */
.qa-overlay {
    position: fixed;
    inset: 0;
    z-index: 1800;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s var(--ease);
}

.qa-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.qa-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 1801;
    transform: translate(-50%, -46%) scale(0.97);
    width: 720px;
    max-width: calc(100vw - 32px);
    max-height: 90vh;
    background: var(--white);
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s var(--ease), transform .3s var(--ease);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.qa-modal.active {
    opacity: 1;
    pointer-events: all;
    transform: translate(-50%, -50%) scale(1);
}

.qa-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 2;
    color: var(--black);
    transition: background .2s;
}

.qa-close:hover {
    background: var(--cream);
}

.qa-body {
    display: grid;
    grid-template-columns: 280px 1fr;
    overflow: auto;
}

.qa-img-wrap {
    position: relative;
    aspect-ratio: 3/4;
    background: var(--cream);
    flex-shrink: 0;
}

.qa-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.qa-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--black);
    color: #fff;
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 5px 12px;
}

.qa-info {
    padding: 36px 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    overflow-y: auto;
}

.qa-name {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.25;
    color: var(--black);
}

.qa-price {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--black);
    margin-top: -8px;
}

.qa-section {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.qa-section-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gray);
}

.qa-section-label strong {
    color: var(--black);
}

.qa-colors {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.qa-color-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid transparent;
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.6), 0 0 0 1px rgba(0, 0, 0, 0.12);
    transition: box-shadow .2s, transform .2s;
    cursor: pointer;
}

.qa-color-btn:hover {
    transform: scale(1.15);
}

.qa-color-btn.active {
    box-shadow: inset 0 0 0 2px #fff, 0 0 0 2px var(--black);
    transform: scale(1.1);
}

.qa-sizes {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.qa-size-btn {
    min-width: 46px;
    height: 40px;
    padding: 0 10px;
    border: 1px solid var(--border);
    font-family: var(--font);
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--black);
    letter-spacing: 0.05em;
    transition: border-color .2s, background .2s;
    cursor: pointer;
}

.qa-size-btn:hover {
    border-color: var(--black);
    background: var(--off-white);
}

.qa-size-btn.active {
    background: var(--black);
    color: #fff;
    border-color: var(--black);
}

.qa-qty {
    display: flex;
    align-items: center;
    border: 1px solid var(--border);
    width: fit-content;
}

.qa-qty button {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--black);
    transition: background .15s;
}

.qa-qty button:hover {
    background: var(--cream);
}

.qa-qty span {
    width: 44px;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 700;
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
    height: 36px;
    line-height: 36px;
}

.qa-add-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--black);
    color: #fff;
    padding: 15px;
    font-family: var(--font);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    margin-top: auto;
    transition: background .2s;
}

.qa-add-btn:hover {
    background: #222;
}

.qa-error {
    font-size: 0.75rem;
    color: #e74c3c;
    font-weight: 600;
    min-height: 18px;
    margin-top: -12px;
}

@media (max-width: 600px) {
    .qa-body {
        grid-template-columns: 1fr;
    }

    .qa-img-wrap {
        aspect-ratio: 4/3;
    }

    .qa-info {
        padding: 24px 20px 20px;
    }
}

/* ---- CART DRAWER ---- */
/* ==============================
   CART DRAWER
   ============================== */
.cart-overlay {
    position: fixed;
    inset: 0;
    z-index: 1900;
    background: rgba(0, 0, 0, .45);
    backdrop-filter: blur(2px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s var(--ease);
}

.cart-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1901;
    width: 440px;
    max-width: 100vw;
    background: #fff;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform .42s var(--ease);
    box-shadow: -16px 0 64px rgba(0, 0, 0, .14);
}

.cart-drawer.active {
    transform: translateX(0);
}

/* ---- Head ---- */
.cart-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 24px 18px;
    flex-shrink: 0;
    border-bottom: 1px solid var(--border);
}

.cart-drawer-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--black);
}

.cart-drawer-count {
    font-size: 0.72rem;
    font-weight: 600;
    color: #aaa;
    letter-spacing: .04em;
    text-transform: none;
    background: #f4f4f4;
    padding: 2px 9px;
    border-radius: 100px;
}

.cart-drawer-close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #888;
    transition: background .2s, color .2s;
}

.cart-drawer-close:hover {
    background: #f4f4f4;
    color: var(--black);
}

/* ---- Progress bar ---- */
.cart-progress-bar {
    padding: 12px 24px 14px;
    background: #fafafa;
    border-bottom: 1px solid var(--border);
    flex-shrink: 0;
}

.cart-progress-msg {
    font-size: 12px;
    color: #666;
    margin-bottom: 8px;
}

.cart-progress-msg strong {
    color: var(--black);
}

.cart-progress-track {
    height: 3px;
    background: #e8e8e8;
    border-radius: 100px;
    overflow: hidden;
}

.cart-progress-fill {
    height: 100%;
    background: var(--black);
    border-radius: 100px;
    transition: width .5s ease;
}

/* ---- Empty state ---- */
.cart-empty {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 48px 32px;
    text-align: center;
}

.cart-empty-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    margin-bottom: 8px;
}

.cart-empty p {
    font-size: 1rem;
    font-weight: 700;
    color: var(--black);
    margin: 0;
}

.cart-empty span {
    font-size: 0.83rem;
    color: #aaa;
    line-height: 1.5;
}

body.lb-new-body .cart-empty-btn {
    margin-top: 12px;
    padding: 12px 28px;
    background: var(--black);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    border-radius: 100px;
    transition: background .2s, transform .2s;
    display: inline-block;
}

body.lb-new-body .cart-empty-btn:hover {
    background: #333;
    color: #fff;
    transform: translateY(-1px);
}

/* ---- Items list ---- */
.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 8px 24px;
    display: none;
}

.cart-items::-webkit-scrollbar {
    width: 3px;
}

.cart-items::-webkit-scrollbar-thumb {
    background: #e0e0e0;
    border-radius: 2px;
}

.cart-item {
    display: grid;
    grid-template-columns: 88px 1fr auto;
    gap: 14px;
    align-items: start;
    padding: 18px 0;
    border-bottom: 1px solid #f2f2f2;
}

.cart-item-img {
    width: 88px;
    aspect-ratio: 3/4;
    height: auto;
    object-fit: cover;
    background: #f5f5f5;
    border-radius: 8px;
    flex-shrink: 0;
    display: block;
}

.cart-item-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.cart-item-name {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--black);
    line-height: 1.35;
}

.cart-item-variant {
    font-size: 0.73rem;
    color: #aaa;
    font-weight: 500;
}

.cart-item-price {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--black);
    margin-top: 6px;
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1.5px solid #e8e8e8;
    border-radius: 8px;
    overflow: hidden;
    width: fit-content;
    margin-top: 10px;
}

.cart-item-qty button {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 500;
    color: #555;
    transition: background .15s;
}

.cart-item-qty button:hover {
    background: #f5f5f5;
}

.cart-item-qty span {
    width: 30px;
    text-align: center;
    font-size: 0.83rem;
    font-weight: 700;
    color: var(--black);
    border-left: 1.5px solid #e8e8e8;
    border-right: 1.5px solid #e8e8e8;
    height: 30px;
    line-height: 30px;
}

.cart-item-remove {
    color: #ccc;
    transition: color .2s;
    padding: 4px;
    border-radius: 4px;
}

.cart-item-remove:hover {
    color: #e53935;
    background: #fff5f5;
}

/* ---- Drawer foot ---- */
.cart-drawer-foot {
    border-top: 1px solid #f0f0f0;
    padding: 20px 24px 28px;
    flex-shrink: 0;
    display: none;
    flex-direction: column;
    gap: 14px;
    background: #fafafa;
}

/* Promo */
.cart-promo {
    display: flex;
    gap: 0;
    border-radius: 10px;
    overflow: hidden;
    border: 1.5px solid #e8e8e8;
    background: #fff;
    transition: border-color .2s;
}

.cart-promo:focus-within {
    border-color: var(--black);
}

.cart-promo input {
    flex: 1;
    padding: 11px 14px;
    border: none;
    background: transparent;
    font-family: var(--font);
    font-size: 0.82rem;
    outline: none;
    color: var(--black);
}

.cart-promo input::placeholder {
    color: #bbb;
}

body.lb-new-body .cart-drawer .cart-promo button,
.cart-promo button {
    padding: 11px 18px;
    background: var(--black);
    color: #fff;
    font-family: var(--font);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    border-radius: 0;
    transition: background .2s;
    border-radius: 0 8px 8px 0;
    flex-shrink: 0;
}

body.lb-new-body .cart-drawer .cart-promo button:hover,
.cart-promo button:hover {
    background: #333;
    color: #fff;
}

/* Summary */
.cart-summary {
    display: flex;
    flex-direction: column;
    gap: 7px;
    background: #fff;
    border: 1px solid #efefef;
    border-radius: 12px;
    padding: 14px 16px;
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.83rem;
    color: #777;
}

.cart-shipping-note {
    color: #2a9d5c;
    font-weight: 600;
}

.cart-summary-total {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--black);
    padding-top: 10px;
    border-top: 1px solid #f0f0f0;
    margin-top: 4px;
}

/* Checkout button */
body.lb-new-body a.cart-checkout-btn,
.cart-checkout-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--black);
    color: #fff;
    padding: 17px 24px;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    border-radius: 12px;
    transition: background .2s, transform .15s;
}

body.lb-new-body a.cart-checkout-btn:hover,
.cart-checkout-btn:hover {
    background: #222;
    color: #fff;
    transform: translateY(-1px);
}

body.lb-new-body a.cart-empty-btn {
    color: #fff;
}

/* Trust row */
.cart-trust {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.cart-trust span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.7rem;
    color: #aaa;
    font-weight: 500;
}

/* ---- FOOTER ---- */
/* ---- FOOTER ---- */
body.lb-new-body .footer {
    background: var(--black);
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.83rem;
}

/* Newsletter Strip */
body.lb-new-body .footer-newsletter-strip {
    background: var(--dark);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    padding: 32px 0;
}

body.lb-new-body .footer .footer-newsletter {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

body.lb-new-body .footer-newsletter-eyebrow {
    display: block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 4px;
}

body.lb-new-body .footer-newsletter-text p {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
}

body.lb-new-body .footer-newsletter-form {
    display: flex;
    gap: 0;
    flex-shrink: 0;
}

body.lb-new-body .footer-newsletter-form input {
    width: 280px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-right: none;
    border-radius: 0;
    color: #fff;
    font-family: var(--font);
    font-size: 0.83rem;
    line-height: 1.4;
    font-weight: 400;
    outline: none;
    box-shadow: none;
    transition: background .2s, border-color .2s;
}

body.lb-new-body .footer-newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

body.lb-new-body .footer-newsletter-form input:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

body.lb-new-body .footer-newsletter-form button {
    padding: 12px 28px;
    background: #fff;
    color: var(--black);
    font-family: var(--font);
    font-size: 0.72rem;
    font-weight: 800;
    line-height: 1.4;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    border-radius: 0;
    transition: background .2s, color .2s;
    white-space: nowrap;
}

body.lb-new-body .footer-newsletter-form button:hover {
    background: var(--cream);
}

/* Main footer body */
body.lb-new-body .footer-main {
    padding: 72px 0 0;
}

/* Big tagline */
body.lb-new-body .footer-tagline {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 900;
    color: rgba(255, 255, 255, 0.04);
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 64px;
    pointer-events: none;
    user-select: none;
}

/* Grid: brand col + 3 link cols */
body.lb-new-body .footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

body.lb-new-body .footer-logo-img {
    height: 34px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    margin-bottom: 16px;
}

body.lb-new-body .footer-brand-desc {
    font-size: 0.82rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 24px;
    max-width: 240px;
}

body.lb-new-body .footer-socials {
    display: flex;
    gap: 10px;
    margin-bottom: 28px;
}

body.lb-new-body .footer-socials a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.55);
    background: transparent;
    transition: transform .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease), background .25s var(--ease);
}

body.lb-new-body .footer-socials a:hover {
    transform: translateY(-2px);
    border-color: #fff;
    color: var(--black);
    background: #fff;
}

body.lb-new-body .footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

body.lb-new-body .footer-contact-info a,
body.lb-new-body .footer-contact-info span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    transition: color .2s;
}

body.lb-new-body .footer-contact-info a:hover {
    color: rgba(255, 255, 255, 0.9);
}

body.lb-new-body .footer-link-col h4 {
    font-family: var(--font);
    font-size: 0.68rem;
    font-weight: 800;
    line-height: 1.4;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 20px 0;
}

body.lb-new-body .footer-link-col a {
    display: block;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.45);
    padding: 5px 0;
    transition: color .2s, padding-left .2s;
}

body.lb-new-body .footer-link-col a:hover {
    color: rgba(255, 255, 255, 0.9);
    padding-left: 6px;
}

/* Bottom bar */
body.lb-new-body .footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 24px 0 32px;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.25);
}

body.lb-new-body .footer-payment {
    display: flex;
    align-items: center;
    gap: 8px;
}

body.lb-new-body .footer-legal {
    display: flex;
    gap: 20px;
}

body.lb-new-body .footer-legal a {
    color: rgba(255, 255, 255, 0.25);
    transition: color .2s;
}

body.lb-new-body .footer-legal a:hover {
    color: rgba(255, 255, 255, 0.7);
}

/* ---- SEARCH OVERLAY ---- */
.search-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(30px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s var(--ease);
}

.search-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.search-close-btn {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background .2s;
}

.search-close-btn:hover {
    background: var(--cream);
}

.search-box {
    width: 100%;
    max-width: 600px;
    padding: 0 24px;
}

.search-box input {
    width: 100%;
    font-size: clamp(1.4rem, 3vw, 2.4rem);
    font-weight: 700;
    border: none;
    border-bottom: 3px solid var(--black);
    background: transparent;
    outline: none;
    padding: 12px 0;
    color: var(--black);
}

.search-box input::placeholder {
    color: var(--light-gray);
}

.search-tags {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.search-tags a {
    padding: 8px 20px;
    border: 1.5px solid var(--border);
    border-radius: 24px;
    font-size: 0.78rem;
    font-weight: 600;
    transition: all .2s;
}

.search-tags a:hover {
    background: var(--black);
    color: #fff;
    border-color: var(--black);
}

/* ---- ANIMATIONS ---- */
[data-animate] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s var(--ease), transform .7s var(--ease);
}

[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
    .product-track .product-card {
        flex: 0 0 calc(33.333% - 11px);
    }

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

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

    body.lb-new-body .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    body.lb-new-body .footer-tagline {
        margin-bottom: 40px;
    }
}

@media (max-width: 1024px) {
    body.lb-new-body .nav-main {
        gap: 16px;
    }

    body.lb-new-body .nav-link {
        font-size: 0.72rem;
    }
}

@media (max-width: 880px) {
    body.lb-new-body .nav-main {
        display: none;
    }

    body.lb-new-body .menu-toggle {
        display: flex;
    }
}

@media (max-width: 768px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-track .product-card {
        flex: 0 0 calc(50% - 8px);
    }

    .dual-banner {
        grid-template-columns: 1fr;
    }

    .dual-card {
        aspect-ratio: 16/10;
    }

    .brand-story {
        grid-template-columns: 1fr;
    }

    .story-image {
        aspect-ratio: 16/9;
    }

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

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 10px;
    }

    body.lb-new-body .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    body.lb-new-body .footer-newsletter-text p {
        white-space: normal;
    }

    body.lb-new-body .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    body.lb-new-body .footer-payment {
        justify-content: center;
    }

    body.lb-new-body .footer-legal {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .categories-grid {
        gap: 10px;
    }
}

/* ============================================
   HERO SPLIT SHOWCASE
   ============================================ */
.hero-split {
    margin-top: calc(36px + var(--header-h));
    background: var(--off-white);
    position: relative;
    overflow: hidden;
}

.hero-split-inner {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    min-height: calc(100vh - 36px - var(--header-h));
    max-height: 880px;
}

/* Left visual */
.hero-visual {
    position: relative;
    background: var(--cream);
    overflow: hidden;
}

.hero-visual-stack {
    position: absolute;
    inset: 0;
}

.hero-visual-item {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s var(--ease), transform 1.4s var(--ease);
    transform: scale(1.06);
}

.hero-visual-item.active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}

.hero-visual-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Floating chip */
.hero-chip {
    position: absolute;
    top: 36px;
    left: 36px;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    animation: chipFloat 4s ease-in-out infinite;
}

@keyframes chipFloat {

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

    50% {
        transform: translateY(-6px);
    }
}

.chip-dot {
    width: 8px;
    height: 8px;
    background: #1a5c3a;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(26, 92, 58, 0.6);
    animation: chipPulse 1.8s ease-in-out infinite;
}

@keyframes chipPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(26, 92, 58, 0.6);
    }

    100% {
        box-shadow: 0 0 0 12px rgba(26, 92, 58, 0);
    }
}

/* Right content */
.hero-content-side {
    position: relative;
    padding: clamp(40px, 5vw, 64px) clamp(40px, 5vw, 64px) clamp(40px, 5vw, 64px) clamp(40px, 5vw, 64px);
    padding-right: clamp(60px, 6vw, 90px);
    display: flex;
    flex-direction: column;
    background: var(--off-white);
    min-height: 0;
}

.hero-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gray);
}

.hero-num {
    font-variant-numeric: tabular-nums;
}

.hero-num #heroNumCurrent {
    color: var(--black);
}

.hero-num-divider {
    opacity: 0.3;
    margin: 0 6px;
}

.hero-text-stack {
    position: relative;
    margin-top: 32px;
    margin-bottom: 32px;
    flex: 1;
    display: grid;
}

.hero-text-item {
    grid-area: 1 / 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .7s var(--ease), transform .7s var(--ease);
    pointer-events: none;
}

.hero-text-item.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.hero-eyebrow {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 20px;
    padding-bottom: 6px;
    border-bottom: 1px solid var(--border);
    width: fit-content;
}

.hero-text-item h1 {
    font-size: clamp(3.5rem, 7vw, 6.5rem);
    font-weight: 800;
    line-height: 0.9;
    letter-spacing: -0.035em;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.hero-text-item h1 em {
    font-style: italic;
    font-family: var(--font-display);
    font-weight: 800;
}

.hero-text-item p {
    font-size: 1rem;
    color: var(--gray);
    max-width: 380px;
    line-height: 1.7;
}

.hero-cta-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

body.lb-new-body a.btn-hero-dark,
.btn-hero-dark {
    display: inline-flex;
    align-items: center;
    padding: 18px 36px;
    background: var(--black);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: all .3s var(--ease);
}

body.lb-new-body a.btn-hero-dark:hover,
.btn-hero-dark:hover {
    background: #333;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.hero-play {
    width: 48px;
    height: 48px;
    border: 1.5px solid var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .25s;
}

.hero-play:hover {
    background: var(--black);
    color: #fff;
}

/* Thumbnails rail */
.hero-thumbs {
    display: flex;
    gap: 12px;
    border-top: 1px solid var(--border);
    padding-top: 24px;
}

.hero-thumb {
    position: relative;
    flex: 1;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--cream);
    text-align: left;
    transition: transform .3s var(--ease);
}

.hero-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.55;
    transition: opacity .4s var(--ease), transform 1s var(--ease);
}

.hero-thumb:hover img {
    opacity: 0.85;
    transform: scale(1.06);
}

.hero-thumb.active img {
    opacity: 1;
}

.hero-thumb-label {
    position: absolute;
    bottom: 10px;
    left: 12px;
    z-index: 2;
    color: #fff;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.6);
    line-height: 1.2;
}

.hero-thumb-label span {
    display: block;
    font-size: 0.55rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0.85;
}

.hero-thumb-label strong {
    font-size: 0.78rem;
    font-weight: 700;
}

.hero-thumb-progress {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 28px;
    height: 28px;
    z-index: 3;
    transform: rotate(-90deg);
}

.hero-thumb-progress circle {
    fill: none;
    stroke: rgba(255, 255, 255, 0.3);
    stroke-width: 4;
}

.hero-thumb.active .hero-thumb-progress circle {
    stroke: #fff;
    stroke-dasharray: 289;
    stroke-dashoffset: 289;
    animation: thumbProgress 5s linear forwards;
}

.hero-thumb.paused .hero-thumb-progress circle {
    animation-play-state: paused;
}

@keyframes thumbProgress {
    to {
        stroke-dashoffset: 0;
    }
}

/* Vertical motto */
.hero-side-motto {
    position: absolute;
    right: 16px;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(180deg);
    writing-mode: vertical-rl;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.45em;
    color: var(--black);
    opacity: 0.35;
    pointer-events: none;
}

@media (max-width: 1024px) {
    .hero-split-inner {
        grid-template-columns: 1fr;
        max-height: none;
    }

    .hero-visual {
        aspect-ratio: 4/5;
        min-height: 400px;
        max-height: 80vh;
    }

    .hero-content-side {
        padding: 40px 24px;
    }

    .hero-side-motto {
        display: none;
    }

    .hero-text-item h1 {
        font-size: clamp(2.8rem, 11vw, 4rem);
    }
}

/* ============================================
   BEFORE / AFTER SLIDER
   ============================================ */
.ba-section {
    padding: 80px 0;
    background: var(--off-white);
}

.ba-header {
    margin-bottom: 48px;
}

.ba-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.ba-slider {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    user-select: none;
    cursor: ew-resize;
    background: #000;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.ba-img {
    position: absolute;
    inset: 0;
}

.ba-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.ba-after {
    z-index: 1;
}

.ba-before {
    z-index: 2;
    clip-path: inset(0 50% 0 0);
}

.ba-label {
    position: absolute;
    top: 24px;
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    color: var(--black);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    z-index: 5;
}

.ba-label-before {
    left: 24px;
}

.ba-label-after {
    right: 24px;
}

.ba-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background: #fff;
    z-index: 4;
    transform: translateX(-50%);
    box-shadow: 0 0 24px rgba(0, 0, 0, 0.4);
    pointer-events: none;
}

.ba-handle-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    color: var(--black);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

/* ============================================
   BLOG — Yazılar & İpuçları
   ============================================ */

.blog-section {
    padding: 80px 0;
    background: var(--white);
}

.blog-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 48px;
    gap: 24px;
}

.blog-header-left {
    flex: 1;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.blog-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: 1px solid var(--border);
    overflow: hidden;
    position: relative;
    transition: box-shadow .3s var(--ease), transform .3s var(--ease);
}

.blog-card:hover {
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.10);
    transform: translateY(-4px);
}

.blog-card-img {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--off-white);
    border-radius: 3px;
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s var(--ease);
}

.blog-card:hover .blog-card-img img {
    transform: scale(1.05);
}

.blog-card-img-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.28) 100%);
    opacity: 0;
    transition: opacity .35s var(--ease);
    pointer-events: none;
}

.blog-card:hover .blog-card-img-gradient {
    opacity: 1;
}

.blog-card-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--black);
    color: #fff;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 5px 12px;
}

.blog-card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 24px;
    gap: 12px;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.7rem;
    color: var(--light-gray);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.blog-card-meta span+span::before {
    content: '·';
    margin-right: 10px;
}

.blog-card-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-style: italic;
    font-weight: 700;
    line-height: 1.3;
    color: var(--black);
    margin: 0;
}

.blog-card-title-link {
    color: inherit;
    text-decoration: none;
    background-image: linear-gradient(currentColor, currentColor);
    background-size: 0 1px;
    background-repeat: no-repeat;
    background-position: 0 100%;
    transition: background-size .35s var(--ease);
}

.blog-card-title-link::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
}

.blog-card:hover .blog-card-title-link {
    background-size: 100% 1px;
}

.blog-card-excerpt {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.65;
    flex: 1;
}

.blog-card-arrow {
    display: inline-block;
    align-self: flex-start;
    margin-top: 4px;
    font-size: 1.15rem;
    line-height: 1;
    color: var(--black);
    transition: transform .25s var(--ease);
}

.blog-card:hover .blog-card-arrow {
    transform: translateX(6px);
}

@media (max-width: 900px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

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

/* ============================================
   LOOKBOOK — Editorial Magazine Layout
   ============================================ */
.lookbook {
    padding: 80px 0;
    background: var(--white);
}

.lookbook-header {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    align-items: end;
    gap: 48px;
    margin-bottom: 56px;
}

.lookbook-header .section-title {
    line-height: 1;
    margin-top: 12px;
}

.lookbook-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding-bottom: 4px;
}

.lookbook-desc {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 420px;
}

.lookbook-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    grid-template-rows: repeat(2, 360px);
    gap: 16px;
}

.look-card {
    position: relative;
    background: var(--cream);
    isolation: isolate;
    cursor: pointer;
    clip-path: inset(0);
    transition: clip-path 0s linear .35s;
}

.look-card:hover {
    z-index: 20;
    clip-path: inset(-200px);
    transition: clip-path 0s linear 0s;
}

.look-1 {
    grid-row: 1 / 3;
    grid-column: 1;
}

.look-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.4s var(--ease), filter .6s var(--ease);
    z-index: 0;
}

.look-card:hover img {
    transform: scale(1.06);
    filter: brightness(0.9);
}

.look-overlay-grad {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.0) 30%, rgba(0, 0, 0, 0.15) 55%, rgba(0, 0, 0, 0.75) 100%);
    transition: background .5s var(--ease);
}

.look-card:hover .look-overlay-grad {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.85) 100%);
}

.look-meta {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 28px;
    color: #fff;
    transition: transform .5s var(--ease);
}

.look-card:hover .look-meta {
    transform: translateY(-44px);
}

.look-num {
    display: block;
    font-family: var(--font-display);
    font-style: italic;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    opacity: 0.85;
    margin-bottom: 8px;
}

.look-title {
    font-size: clamp(1.4rem, 1.8vw, 2rem);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.look-1 .look-title {
    font-size: clamp(2rem, 3vw, 3rem);
}

.look-count {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 4px 10px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(8px);
}

.look-shop {
    position: absolute;
    bottom: 28px;
    left: 28px;
    z-index: 3;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding-bottom: 4px;
    border-bottom: 1.5px solid #fff;
    opacity: 0;
    transform: translateY(8px);
    transition: all .4s var(--ease) .05s;
}

.look-card:hover .look-shop {
    opacity: 1;
    transform: translateY(0);
}

/* ---- Modern Hotspots ---- */
.hotspot {
    position: absolute;
    z-index: 5;
    width: 36px;
    height: 36px;
    padding: 0;
    background: transparent;
    border: none;
    cursor: pointer;
    transform: translate(-50%, -50%);
}

.hotspot-pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(4px);
    animation: hotspotPulse 2.4s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes hotspotPulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }

    70% {
        transform: scale(1.8);
        opacity: 0;
    }

    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

.hotspot-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 14px;
    height: 14px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.35),
        0 4px 16px rgba(0, 0, 0, 0.4);
    transition: all .35s var(--ease);
    z-index: 2;
}

.hotspot-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 5px;
    height: 5px;
    background: var(--black);
    border-radius: 50%;
    transition: all .35s var(--ease);
}

.hotspot:hover .hotspot-dot {
    width: 22px;
    height: 22px;
    background: var(--black);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.6),
        0 6px 20px rgba(0, 0, 0, 0.5);
}

.hotspot:hover .hotspot-dot::before {
    background: #fff;
    width: 10px;
    height: 2px;
    border-radius: 1px;
}

.hotspot:hover .hotspot-pulse {
    animation-play-state: paused;
    opacity: 0;
}

/* Hotspot card */
.hotspot-card {
    position: absolute;
    top: 50%;
    left: calc(100% + 14px);
    transform: translateY(-50%) translateX(-8px);
    width: 220px;
    background: #fff;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    opacity: 0;
    pointer-events: none;
    transition: all .35s var(--ease);
    z-index: 10;
}

.hotspot-card::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 100%;
    transform: translateY(-50%);
    border: 7px solid transparent;
    border-right-color: #fff;
}

.hotspot:hover .hotspot-card {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(-50%) translateX(0);
}

.hotspot-card img {
    position: static;
    width: 56px;
    height: 70px;
    object-fit: cover;
    flex-shrink: 0;
    transform: none !important;
    filter: none !important;
}

.hotspot-info {
    flex: 1;
    min-width: 0;
    text-align: left;
}

.hotspot-cat {
    display: block;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 4px;
}

.hotspot-info strong {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--black);
    line-height: 1.3;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hotspot-price {
    font-size: 0.78rem;
    font-weight: 800;
    color: var(--black);
}

/* Flip card to left when near right edge */
.hotspot[style*="left:6"] .hotspot-card,
.hotspot[style*="left:7"] .hotspot-card,
.hotspot[style*="left:8"] .hotspot-card {
    left: auto;
    right: calc(100% + 14px);
    transform: translateY(-50%) translateX(8px);
}

.hotspot[style*="left:6"] .hotspot-card::before,
.hotspot[style*="left:7"] .hotspot-card::before,
.hotspot[style*="left:8"] .hotspot-card::before {
    right: auto;
    left: 100%;
    border-right-color: transparent;
    border-left-color: #fff;
}

.hotspot[style*="left:6"]:hover .hotspot-card,
.hotspot[style*="left:7"]:hover .hotspot-card,
.hotspot[style*="left:8"]:hover .hotspot-card {
    transform: translateY(-50%) translateX(0);
}

/* Hide hotspots on mobile (cards become non-interactive) */
@media (max-width: 768px) {
    .hotspot {
        display: none;
    }
}

@media (max-width: 1024px) {
    .lookbook-header {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .lookbook-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(3, 320px);
    }

    .look-1 {
        grid-row: 1;
        grid-column: 1 / 3;
    }

    .look-2 {
        grid-row: 2;
        grid-column: 1;
    }

    .look-3 {
        grid-row: 2;
        grid-column: 2;
    }

    .look-4 {
        grid-row: 3;
        grid-column: 1 / 3;
    }
}

@media (max-width: 600px) {
    .lookbook {
        padding: 80px 0;
    }

    .lookbook-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 380px);
        gap: 12px;
    }

    .look-1,
    .look-2,
    .look-3,
    .look-4 {
        grid-row: auto;
        grid-column: 1;
    }
}

/* ============================================
   SIZE GUIDE MODAL
   ============================================ */
.size-modal {
    position: fixed;
    inset: 0;
    z-index: 3000;
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s var(--ease);
}

.size-modal.active {
    opacity: 1;
    pointer-events: all;
}

.size-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.65);
    backdrop-filter: blur(8px);
}

.size-modal-panel {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 600px;
    background: var(--white);
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform .45s var(--ease);
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.2);
}

.size-modal.active .size-modal-panel {
    transform: translateX(0);
}

body.lb-new-body .size-modal .size-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream);
    color: var(--black);
    transition: background .2s, color .2s;
    z-index: 5;
}

body.lb-new-body .size-modal .size-modal-close:hover {
    background: var(--black);
    color: #fff;
}

.size-modal-inner {
    padding: 56px 48px;
}

.size-modal-head {
    margin-bottom: 32px;
}

.size-modal-head .section-eyebrow {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 12px;
}

.size-modal-head h2 {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    font-style: italic;
    letter-spacing: -0.01em;
    line-height: 1.1;
    margin: 0 0 14px 0;
    color: var(--black);
    text-transform: none;
}

.size-modal-head p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.7;
    margin: 0;
}

.size-tabs {
    display: inline-flex;
    gap: 36px;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    border-radius: 0;
    width: fit-content;
    margin-bottom: 28px;
}

body.lb-new-body .size-modal .size-tab {
    position: relative;
    padding: 8px 4px 16px;
    background: transparent;
    color: var(--light-gray, #999);
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    border-radius: 0;
    text-decoration: none;
    transition: color .25s var(--ease);
}

body.lb-new-body .size-modal .size-tab::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: var(--black);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .35s var(--ease);
}

body.lb-new-body .size-modal .size-tab:hover {
    color: var(--black);
}

body.lb-new-body .size-modal .size-tab.active {
    color: var(--black);
}

body.lb-new-body .size-modal .size-tab.active::after {
    transform: scaleX(1);
}

.size-table-wrap {
    overflow-x: auto;
    margin-bottom: 40px;
}

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

.size-table th,
.size-table td {
    padding: 14px 12px;
    text-align: center;
    border-bottom: 1px solid var(--border);
    font-size: 0.85rem;
}

.size-table th {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gray);
    background: var(--off-white);
}

.size-table td strong {
    font-weight: 800;
    font-size: 0.9rem;
}

.size-table tbody tr {
    transition: background .2s;
}

.size-table tbody tr:hover {
    background: var(--cream);
}

.size-finder {
    background: var(--cream);
    padding: 32px 28px;
    margin-bottom: 24px;
}

.size-finder h3 {
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    margin-bottom: 6px;
}

.size-finder p {
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 18px;
}

.size-finder-row {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 12px;
    align-items: end;
}

.size-finder-row label {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.size-finder-row label span {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gray);
}

.size-finder-row input {
    padding: 12px 14px;
    border: 1.5px solid var(--border);
    background: #fff;
    font-family: var(--font);
    font-size: 0.95rem;
    font-weight: 600;
    outline: none;
    transition: border-color .2s;
}

.size-finder-row input:focus {
    border-color: var(--black);
}

body.lb-new-body .size-finder-row button {
    padding: 12px 24px;
    background: var(--black);
    color: #fff;
    font-family: var(--font);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 0;
    transition: background .2s;
}

body.lb-new-body .size-finder-row button:hover {
    background: #333;
}

.size-result {
    margin-top: 16px;
    padding: 14px;
    background: #fff;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
    display: none;
}

.size-result.show {
    display: block;
}

.size-result strong {
    color: var(--black);
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 0.05em;
}

.size-tips {
    font-size: 0.82rem;
    color: var(--gray);
    line-height: 1.6;
    padding: 16px;
    border-left: 3px solid var(--black);
    background: var(--off-white);
}

@media (max-width: 600px) {
    .size-modal-inner {
        padding: 56px 24px;
    }

    .size-finder-row {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   LIVE SALES TOAST
   ============================================ */
.toast-container {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 1500;
    pointer-events: none;
}

.toast {
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
    padding: 14px 16px 14px 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    width: 320px;
    max-width: calc(100vw - 48px);
    transform: translateX(-120%);
    opacity: 0;
    transition: all .5s var(--ease);
    pointer-events: auto;
    border-left: 3px solid #1a5c3a;
}

.toast.show {
    transform: translateX(0);
    opacity: 1;
}

.toast-img {
    width: 48px;
    height: 60px;
    background: var(--cream);
    flex-shrink: 0;
    overflow: hidden;
}

.toast-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.toast-body {
    flex: 1;
    min-width: 0;
}

.toast-body strong {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.toast-body p {
    font-size: 0.7rem;
    color: var(--gray);
    line-height: 1.4;
    margin: 0;
}

.toast-time {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.65rem;
    color: var(--light-gray);
    margin-top: 4px;
}

.toast-time::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #1a5c3a;
    border-radius: 50%;
    animation: chipPulse 2s infinite;
}

.toast-close {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-gray);
    font-size: 1rem;
    line-height: 1;
}

.toast-close:hover {
    color: var(--black);
}

@media (max-width: 600px) {
    .toast-container {
        left: 12px;
        right: 12px;
        bottom: 12px;
    }

    .toast {
        width: 100%;
    }
}

/* ---- Account Menu ---- */
body.lb-new-body .account-menu-wrap {
    position: relative;
}

body.lb-new-body .account-menu-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 180px;
    background: #fff;
    border: 1px solid var(--border, rgba(0, 0, 0, 0.08));
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all .2s var(--ease);
    z-index: 200;
}

body.lb-new-body .account-menu-wrap:hover .account-menu-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

body.lb-new-body .account-menu-dropdown a {
    display: block;
    padding: 10px 18px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--dark);
    text-decoration: none;
    transition: background .15s;
}

body.lb-new-body .account-menu-dropdown a:hover {
    background: var(--off-white, #f9f7f4);
    color: var(--black);
}

body.lb-new-body .account-menu-logout {
    border-top: 1px solid var(--border, rgba(0, 0, 0, 0.08));
    margin-top: 4px;
    color: #b91c1c !important;
}

/* ---- Scroll to Top ---- */
.scroll-to-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--black, #0a0a0a);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: opacity .3s var(--ease), transform .3s var(--ease), background .2s;
    z-index: 90;
}

.scroll-to-top.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.scroll-to-top:hover {
    background: #333;
    transform: translateY(-2px);
}

@media (max-width: 640px) {
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 880px) {
    body.lb-new-body .header-support {
        display: none;
    }

    body.lb-new-body .header-divider {
        display: none;
    }

    body.lb-new-body .header-right {
        gap: 2px;
    }
}

@media (max-width: 640px) {
    body.lb-new-body .announcement-bar {
        font-size: 0.65rem;
    }

    .cart-drawer {
        width: 100vw;
        max-width: 100vw;
    }

    .product-track .product-card {
        flex: 0 0 calc(75% - 8px);
    }

    .arrivals-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .pd-related-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .ba-section,
    .blog-section,
    .reviews,
    .brand-story,
    .new-arrivals,
    .product-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: clamp(1.6rem, 6vw, 2.4rem);
    }

    body.lb-new-body .footer .footer-newsletter {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    body.lb-new-body .footer-newsletter-form {
        width: 100%;
        flex-direction: row;
    }

    body.lb-new-body .footer-newsletter-form input {
        width: 100%;
        flex: 1;
    }

    .product-actions {
        opacity: 1;
        transform: none;
    }

    .product-action {
        width: 34px;
        height: 34px;
    }

    body.lb-new-body .icon-btn {
        padding: 6px;
    }

    body.lb-new-body .logo-img {
        max-height: 32px;
    }
}

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

    .pd-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .pd-thumbs {
        order: 2;
    }
}

/* ==========================================================================
   SHARED PAGE LAYOUT (account/auth/commerce/blog/page/contact)
   ========================================================================== */

body.lb-new-body .page-hero {
    padding: calc(var(--header-h) + 56px) 0 40px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 56px;
    background: var(--off-white, #f5f0eb);
}

body.lb-new-body .page-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 18px;
}

body.lb-new-body .page-breadcrumb a {
    color: var(--gray);
    transition: color .2s;
}

body.lb-new-body .page-breadcrumb a:hover {
    color: var(--black);
}

body.lb-new-body .page-breadcrumb span.sep {
    opacity: 0.4;
}

body.lb-new-body .page-breadcrumb .current {
    color: var(--black);
}

body.lb-new-body .page-title-h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.2vw, 3rem);
    font-weight: 700;
    font-style: italic;
    letter-spacing: -0.01em;
    line-height: 1.1;
    color: var(--black);
    margin: 0;
}

body.lb-new-body .page-subtitle {
    font-size: 0.92rem;
    color: var(--gray);
    line-height: 1.6;
    margin-top: 12px;
    max-width: 620px;
}

body.lb-new-body .page-hero-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray);
}

body.lb-new-body .page-hero-meta span+span::before {
    content: '·';
    margin-right: 10px;
    opacity: 0.5;
}

body.lb-new-body .page-section {
    padding-bottom: 100px;
}

body.lb-new-body .blog-detail-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 64px;
    align-items: start;
}

@media (max-width: 992px) {
    body.lb-new-body .blog-detail-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

body.lb-new-body .blog-cover {
    margin-bottom: 32px;
    overflow: hidden;
    border-radius: 4px;
    background: var(--off-white, #f5f0eb);
}

body.lb-new-body .blog-cover img {
    width: 100%;
    height: auto;
    display: block;
}

body.lb-new-body .blog-lead {
    font-size: 1.15rem;
    line-height: 1.65;
    color: var(--black);
    font-weight: 500;
    margin: 0 0 32px;
    padding-left: 16px;
    border-left: 3px solid var(--black);
}

body.lb-new-body .blog-prose {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--dark, #1a1a1a);
}

body.lb-new-body .blog-prose>*:first-child {
    margin-top: 0;
}

body.lb-new-body .blog-prose p {
    margin: 0 0 1.4em;
}

body.lb-new-body .blog-prose h1,
body.lb-new-body .blog-prose h2,
body.lb-new-body .blog-prose h3,
body.lb-new-body .blog-prose h4,
body.lb-new-body .blog-prose h5,
body.lb-new-body .blog-prose h6 {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--black);
    line-height: 1.3;
    margin: 2em 0 0.6em;
}

body.lb-new-body .blog-prose h2 {
    font-size: 1.6rem;
}

body.lb-new-body .blog-prose h3 {
    font-size: 1.3rem;
}

body.lb-new-body .blog-prose h4 {
    font-size: 1.1rem;
}

body.lb-new-body .blog-prose ul,
body.lb-new-body .blog-prose ol {
    margin: 0 0 1.4em;
    padding-left: 1.5em;
}

body.lb-new-body .blog-prose li {
    margin: 0.4em 0;
}

body.lb-new-body .blog-prose blockquote {
    margin: 1.6em 0;
    padding: 16px 20px;
    border-left: 3px solid var(--black);
    background: var(--off-white, #f5f0eb);
    font-style: italic;
    color: var(--gray);
}

body.lb-new-body .blog-prose img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 1.5em auto;
    border-radius: 3px;
}

body.lb-new-body .blog-prose a {
    color: var(--black);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    transition: text-decoration-thickness .2s var(--ease);
}

body.lb-new-body .blog-prose a:hover {
    text-decoration-thickness: 2px;
}

body.lb-new-body .blog-prose strong,
body.lb-new-body .blog-prose b {
    font-weight: 700;
    color: var(--black);
}

body.lb-new-body .blog-prose figure {
    margin: 1.5em 0;
}

body.lb-new-body .blog-prose figcaption {
    font-size: 0.85rem;
    color: var(--gray);
    text-align: center;
    margin-top: 8px;
}

body.lb-new-body .blog-prose iframe,
body.lb-new-body .blog-prose video {
    max-width: 100%;
    margin: 1.5em 0;
    border-radius: 3px;
}

body.lb-new-body .blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

body.lb-new-body .blog-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

body.lb-new-body .blog-tags-label,
body.lb-new-body .blog-share-label {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray);
    margin-right: 4px;
}

body.lb-new-body .blog-tag {
    display: inline-block;
    padding: 6px 14px;
    background: var(--off-white, #f5f0eb);
    border: 1px solid var(--border);
    color: var(--black);
    font-size: 0.78rem;
    border-radius: 100px;
}

body.lb-new-body .blog-share {
    display: flex;
    align-items: center;
    gap: 10px;
}

body.lb-new-body .blog-share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--off-white, #f5f0eb);
    color: var(--black);
    transition: background .2s var(--ease), color .2s var(--ease), transform .2s var(--ease);
    text-decoration: none;
}

body.lb-new-body .blog-share-btn:hover {
    background: var(--black);
    color: var(--white);
    transform: translateY(-2px);
}

body.lb-new-body .blog-share-btn i {
    font-size: 0.85rem;
}

body.lb-new-body .blog-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 56px;
}

body.lb-new-body .blog-nav-link {
    display: block;
    padding: 24px;
    border: 1px solid var(--border);
    color: var(--black);
    text-decoration: none;
    transition: border-color .2s var(--ease), background .2s var(--ease);
    border-radius: 3px;
}

body.lb-new-body .blog-nav-link:hover {
    border-color: var(--black);
    background: var(--off-white, #f5f0eb);
}

body.lb-new-body .blog-nav-link.next {
    text-align: right;
}

body.lb-new-body .blog-nav-label {
    display: block;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 8px;
}

body.lb-new-body .blog-nav-title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.4;
    margin: 0;
    color: var(--black);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (max-width: 600px) {
    body.lb-new-body .blog-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    body.lb-new-body .blog-nav {
        grid-template-columns: 1fr;
    }

    body.lb-new-body .blog-nav-link.next {
        text-align: left;
    }
}

body.lb-new-body .blog-sidebar-heading {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--black);
    padding-bottom: 14px;
    margin: 0 0 20px;
    border-bottom: 1px solid var(--border);
}

body.lb-new-body .blog-sidebar-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

body.lb-new-body .blog-card-compact {
    display: grid;
    grid-template-columns: 96px 1fr;
    gap: 14px;
    align-items: center;
    text-decoration: none;
    color: inherit;
    padding: 6px;
    margin: -6px;
    border-radius: 3px;
    transition: background .2s var(--ease);
}

body.lb-new-body .blog-card-compact:hover {
    background: var(--off-white, #f5f0eb);
}

body.lb-new-body .blog-card-compact-img {
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: 3px;
    background: var(--off-white, #f5f0eb);
}

body.lb-new-body .blog-card-compact-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s var(--ease);
}

body.lb-new-body .blog-card-compact:hover .blog-card-compact-img img {
    transform: scale(1.05);
}

body.lb-new-body .blog-card-compact-meta {
    display: block;
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 4px;
}

body.lb-new-body .blog-card-compact-title {
    font-family: var(--font-display);
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.4;
    color: var(--black);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

body.lb-new-body .pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 56px;
}

body.lb-new-body .page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 14px;
    border: 1px solid var(--border);
    color: var(--black);
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 3px;
    background: transparent;
    transition: background .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease);
}

body.lb-new-body a.page-link:hover {
    border-color: var(--black);
    background: var(--off-white);
}

body.lb-new-body .page-link.active {
    background: var(--black);
    border-color: var(--black);
    color: var(--white);
    cursor: default;
}

body.lb-new-body .page-link.disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

/* ==========================================================================
   ACCOUNT LAYOUT
   ========================================================================== */

body.lb-new-body .account-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 48px;
}

body.lb-new-body .account-sidebar {
    position: sticky;
    top: calc(var(--header-h) + 24px);
    align-self: start;
}

body.lb-new-body .account-user {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 18px;
    background: var(--off-white, #f5f0eb);
    border-radius: 4px;
    margin-bottom: 24px;
}

body.lb-new-body .account-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--black);
    color: #fff;
    font-size: 1.05rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

body.lb-new-body .account-user-info {
    min-width: 0;
    flex: 1;
}

body.lb-new-body .account-user-name {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--black);
    line-height: 1.2;
    margin-bottom: 3px;
}

body.lb-new-body .account-user-email {
    font-size: 0.75rem;
    color: var(--gray);
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

body.lb-new-body .account-nav {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

body.lb-new-body .account-nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 14px;
    font-size: 0.83rem;
    font-weight: 500;
    color: var(--dark);
    border-radius: 4px;
    transition: background .15s var(--ease), color .15s var(--ease);
}

body.lb-new-body .account-nav-item svg {
    color: var(--gray);
    flex-shrink: 0;
    transition: color .15s var(--ease);
}

body.lb-new-body .account-nav-item:hover {
    background: var(--off-white, #f5f0eb);
    color: var(--black);
}

body.lb-new-body .account-nav-item:hover svg {
    color: var(--black);
}

body.lb-new-body .account-nav-item.active {
    background: var(--black);
    color: #fff;
}

body.lb-new-body .account-nav-item.active svg {
    color: #fff;
}

body.lb-new-body .account-nav-logout {
    margin-top: 12px;
    border-top: 1px solid var(--border);
    border-radius: 0;
    padding-top: 16px;
    padding-bottom: 16px;
    color: var(--gray);
}

body.lb-new-body .account-nav-logout:hover {
    background: transparent;
    color: #b91c1c;
}

body.lb-new-body .account-nav-logout:hover svg {
    color: #b91c1c;
}

body.lb-new-body .account-content {
    min-width: 0;
}

body.lb-new-body .account-greeting {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 2.4vw, 1.8rem);
    font-weight: 700;
    font-style: italic;
    color: var(--black);
    line-height: 1.2;
    margin: 0 0 10px;
}

body.lb-new-body .account-greeting-desc {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0 0 32px;
}

body.lb-new-body .account-h2 {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--black);
    margin: 0 0 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

body.lb-new-body .account-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}

body.lb-new-body .account-card {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 24px 22px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 4px;
    transition: border-color .2s, transform .2s var(--ease), box-shadow .2s var(--ease);
    color: var(--dark);
}

body.lb-new-body .account-card:hover {
    border-color: var(--black);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

body.lb-new-body .account-card-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--off-white, #f5f0eb);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
}

body.lb-new-body .account-card-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--black);
    margin: 0;
}

body.lb-new-body .account-card-sub {
    font-size: 0.78rem;
    color: var(--gray);
    margin: 0;
}

/* ---- Account form (shared with addresses, security, checkout shipping) ---- */

body.lb-new-body .acc-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 18px;
}

body.lb-new-body .acc-form.single {
    grid-template-columns: 1fr;
    max-width: 520px;
}

body.lb-new-body .acc-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

body.lb-new-body .acc-field.full {
    grid-column: 1 / -1;
}

body.lb-new-body .acc-field label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gray);
}

body.lb-new-body .acc-field input,
body.lb-new-body .acc-field select,
body.lb-new-body .acc-field textarea {
    padding: 12px 14px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 3px;
    font-family: var(--font);
    font-size: 0.9rem;
    color: var(--dark);
    outline: none;
    line-height: 1.4;
    transition: border-color .2s;
}

body.lb-new-body .acc-field textarea {
    min-height: 100px;
    resize: vertical;
}

body.lb-new-body .acc-field input:focus,
body.lb-new-body .acc-field select:focus,
body.lb-new-body .acc-field textarea:focus {
    border-color: var(--black);
}

body.lb-new-body .acc-form-actions {
    grid-column: 1 / -1;
    display: flex;
    gap: 12px;
    margin-top: 12px;
}

body.lb-new-body .acc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    background: var(--black);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 0;
    border: 1px solid var(--black);
    cursor: pointer;
    transition: background .2s, color .2s;
    font-family: var(--font);
}

body.lb-new-body .acc-btn:hover {
    background: #222;
}

body.lb-new-body .acc-btn.ghost {
    background: transparent;
    color: var(--black);
}

body.lb-new-body .acc-btn.ghost:hover {
    background: var(--black);
    color: #fff;
}

body.lb-new-body .acc-btn.danger {
    background: transparent;
    border-color: #b91c1c;
    color: #b91c1c;
}

body.lb-new-body .acc-btn.danger:hover {
    background: #b91c1c;
    color: #fff;
}

/* ---- Empty state ---- */

body.lb-new-body .empty-state {
    text-align: center;
    padding: 60px 20px;
    background: var(--off-white, #f5f0eb);
    border-radius: 4px;
}

body.lb-new-body .empty-state-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    color: var(--gray);
    opacity: 0.6;
}

body.lb-new-body .empty-state-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-style: italic;
    color: var(--black);
    margin: 0 0 6px;
}

body.lb-new-body .empty-state-desc {
    font-size: 0.88rem;
    color: var(--gray);
    margin: 0 0 20px;
}

/* ---- Orders table ---- */

body.lb-new-body .orders-table-wrap {
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
}

body.lb-new-body .orders-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.87rem;
}

body.lb-new-body .orders-table th {
    padding: 14px 18px;
    text-align: left;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gray);
    background: var(--off-white, #f5f0eb);
    border-bottom: 1px solid var(--border);
}

body.lb-new-body .orders-table td {
    padding: 16px 18px;
    border-bottom: 1px solid var(--border);
    color: var(--dark);
    vertical-align: middle;
}

body.lb-new-body .orders-table tr:last-child td {
    border-bottom: none;
}

body.lb-new-body .orders-table tr:hover td {
    background: rgba(0, 0, 0, 0.02);
}

body.lb-new-body .order-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 999px;
    background: var(--off-white, #f5f0eb);
    color: var(--dark);
}

body.lb-new-body .order-status.shipped {
    background: #dbeafe;
    color: #1e40af;
}

body.lb-new-body .order-status.delivered {
    background: #dcfce7;
    color: #166534;
}

body.lb-new-body .order-status.cancelled {
    background: #fee2e2;
    color: #991b1b;
}

body.lb-new-body .order-status.preparing {
    background: #fef3c7;
    color: #92400e;
}

body.lb-new-body .order-status.returned {
    background: #f3e8ff;
    color: #6b21a8;
}

body.lb-new-body .orders-table .order-action {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--black);
    padding: 6px 0;
    border-bottom: 1px solid transparent;
    transition: border-color .2s;
}

body.lb-new-body .orders-table .order-action:hover {
    border-bottom-color: var(--black);
}

/* ---- Order detail (account/order/{id}) ---- */

body.lb-new-body .order-detail-summary {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 32px;
}

body.lb-new-body .order-detail-box {
    padding: 22px 24px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 4px;
}

body.lb-new-body .order-detail-box h3 {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gray);
    margin: 0 0 14px;
}

body.lb-new-body .order-detail-box p {
    font-size: 0.88rem;
    color: var(--dark);
    line-height: 1.55;
    margin: 0 0 4px;
}

body.lb-new-body .order-detail-box .muted {
    color: var(--gray);
    font-size: 0.82rem;
}

body.lb-new-body .order-summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.88rem;
    color: var(--dark);
    margin-bottom: 8px;
}

body.lb-new-body .order-summary-row.total {
    padding-top: 12px;
    margin-top: 12px;
    border-top: 1px solid var(--border);
    font-weight: 700;
    font-size: 0.98rem;
}

body.lb-new-body .order-items-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.87rem;
    margin-bottom: 32px;
}

body.lb-new-body .order-items-table th {
    padding: 14px 14px;
    text-align: left;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gray);
    background: var(--off-white, #f5f0eb);
    border-bottom: 1px solid var(--border);
}

body.lb-new-body .order-items-table td {
    padding: 14px 14px;
    border-bottom: 1px solid var(--border);
    vertical-align: top;
}

body.lb-new-body .order-items-table td.right {
    text-align: right;
}

body.lb-new-body .order-items-table td.center {
    text-align: center;
}

body.lb-new-body .order-meta-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    font-size: 0.72rem;
    color: var(--gray);
    background: var(--off-white, #f5f0eb);
    border-radius: 999px;
    margin-right: 8px;
}

/* ==========================================================================
   AUTH (sign-in / sign-up)
   ========================================================================== */

body.lb-new-body .auth-page {
    min-height: calc(100vh - var(--header-h));
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-top: var(--header-h);
}

body.lb-new-body .auth-hero {
    position: relative;
    background-color: var(--black);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 400px;
    overflow: hidden;
}

body.lb-new-body .auth-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.65) 100%);
    pointer-events: none;
}

body.lb-new-body .auth-hero-content {
    position: relative;
    padding: 60px 48px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    min-height: 400px;
}

body.lb-new-body .auth-hero h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.4vw, 2.6rem);
    font-style: italic;
    font-weight: 700;
    line-height: 1.15;
    margin: 0 0 12px;
}

body.lb-new-body .auth-hero p {
    font-size: 0.92rem;
    opacity: 0.8;
    max-width: 400px;
    line-height: 1.6;
}

body.lb-new-body .auth-form-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 48px;
}

body.lb-new-body .auth-form-inner {
    width: 100%;
    max-width: 420px;
}

body.lb-new-body .auth-eyebrow {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--gray);
    margin: 0 0 14px;
}

body.lb-new-body .auth-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.3rem);
    font-style: italic;
    font-weight: 700;
    line-height: 1.1;
    color: var(--black);
    margin: 0 0 10px;
}

body.lb-new-body .auth-desc {
    font-size: 0.88rem;
    color: var(--gray);
    margin: 0 0 32px;
    line-height: 1.6;
}

body.lb-new-body .auth-switch {
    margin-top: 28px;
    font-size: 0.85rem;
    color: var(--gray);
    text-align: center;
}

body.lb-new-body .auth-switch a {
    color: var(--black);
    font-weight: 700;
    border-bottom: 1px solid var(--black);
    padding-bottom: 1px;
    margin-left: 4px;
}

body.lb-new-body .auth-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: -4px;
    margin-bottom: 24px;
    font-size: 0.78rem;
}

body.lb-new-body .auth-remember {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--dark);
    cursor: pointer;
    user-select: none;
}

body.lb-new-body .auth-remember input {
    accent-color: var(--black);
    width: 15px;
    height: 15px;
}

body.lb-new-body .auth-forgot {
    color: var(--dark);
    border-bottom: 1px solid transparent;
    transition: border-color .2s;
}

body.lb-new-body .auth-forgot:hover {
    border-bottom-color: var(--black);
}

/* ==========================================================================
   CART
   ========================================================================== */

body.lb-new-body .cart-page {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 48px;
    align-items: start;
}

body.lb-new-body .cart-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

body.lb-new-body .cart-row {
    display: grid;
    grid-template-columns: 100px 1fr auto;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
    align-items: center;
}

body.lb-new-body .cart-row-img {
    width: 100px;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: 3px;
    background: var(--off-white);
}

body.lb-new-body .cart-row-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
}

body.lb-new-body .cart-row-name {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--black);
    text-decoration: none;
    line-height: 1.3;
}

body.lb-new-body .cart-row-name:hover {
    text-decoration: underline;
}

body.lb-new-body .cart-row-variant {
    font-size: 0.78rem;
    color: var(--gray);
}

body.lb-new-body .cart-row-bottom {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 4px;
}

body.lb-new-body .cart-qty {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: 3px;
    overflow: hidden;
}

body.lb-new-body .cart-qty button {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: var(--dark);
    font-size: 1rem;
    transition: background .2s;
}

body.lb-new-body .cart-qty button:hover {
    background: var(--off-white);
}

body.lb-new-body .cart-qty input,
body.lb-new-body .cart-qty span {
    width: 36px;
    text-align: center;
    font-size: 0.88rem;
    font-weight: 600;
    border: none;
    background: transparent;
    outline: none;
    pointer-events: none;
}

body.lb-new-body .cart-row-remove {
    font-size: 0.78rem;
    color: var(--gray);
    border-bottom: 1px solid transparent;
    transition: color .2s, border-color .2s;
}

body.lb-new-body .cart-row-remove:hover {
    color: #b91c1c;
    border-bottom-color: #b91c1c;
}

body.lb-new-body .cart-row-price {
    font-size: 1rem;
    font-weight: 700;
    color: var(--black);
    text-align: right;
    min-width: 90px;
}

body.lb-new-body .cart-aside {
    background: var(--off-white, #f5f0eb);
    padding: 28px;
    border-radius: 4px;
    position: sticky;
    top: calc(var(--header-h) + 24px);
}

body.lb-new-body .cart-aside h3 {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--black);
    margin: 0 0 20px;
}

body.lb-new-body .cart-aside-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.88rem;
    color: var(--dark);
    margin-bottom: 10px;
}

body.lb-new-body .cart-aside-row.total {
    padding-top: 14px;
    margin-top: 14px;
    border-top: 1px solid rgba(0, 0, 0, 0.12);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--black);
}

body.lb-new-body .cart-aside-btn {
    display: block;
    width: 100%;
    padding: 16px;
    background: var(--black);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-align: center;
    margin-top: 20px;
    transition: background .2s;
}

body.lb-new-body .cart-aside-btn:hover {
    background: #222;
}

body.lb-new-body .cart-coupon {
    display: flex;
    gap: 6px;
    margin-bottom: 20px;
}

body.lb-new-body .cart-coupon input {
    flex: 1;
    padding: 10px 12px;
    background: #fff;
    border: 1px solid var(--border);
    font-family: var(--font);
    font-size: 0.85rem;
    outline: none;
    border-radius: 3px;
}

body.lb-new-body .cart-coupon input:focus {
    border-color: var(--black);
}

body.lb-new-body .cart-coupon button {
    padding: 10px 18px;
    background: var(--black);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* ==========================================================================
   CHECKOUT
   ========================================================================== */

body.lb-new-body .checkout-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 48px;
    align-items: start;
}

body.lb-new-body .checkout-step {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 28px;
    margin-bottom: 20px;
}

body.lb-new-body .checkout-step h2 {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--black);
    margin: 0 0 22px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
}

body.lb-new-body .checkout-step h2 .step-num {
    display: inline-flex;
    width: 22px;
    height: 22px;
    background: var(--black);
    color: #fff;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1;
    margin-right: 10px;
    vertical-align: middle;
    padding-top: 1px;
    box-sizing: border-box;
}

body.lb-new-body .pay-method {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

body.lb-new-body .pay-method label {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    border: 1.5px solid var(--border);
    border-radius: 3px;
    cursor: pointer;
    transition: border-color .2s, background .2s;
    font-size: 0.9rem;
    color: var(--dark);
}

body.lb-new-body .pay-method label:hover {
    border-color: var(--black);
}

body.lb-new-body .pay-method input {
    accent-color: var(--black);
}

body.lb-new-body .pay-method label:has(input:checked) {
    border-color: var(--black);
    background: var(--off-white);
}

body.lb-new-body .ship-method {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

body.lb-new-body .ship-method label {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    border: 1.5px solid var(--border);
    border-radius: 3px;
    cursor: pointer;
    transition: border-color .2s, background .2s;
    font-size: 0.9rem;
}

body.lb-new-body .ship-method label:hover {
    border-color: var(--black);
}

body.lb-new-body .ship-method input {
    accent-color: var(--black);
}

body.lb-new-body .ship-method label:has(input:checked) {
    border-color: var(--black);
    background: var(--off-white);
}

body.lb-new-body .ship-method-name {
    font-weight: 600;
    color: var(--dark);
}

body.lb-new-body .ship-method-price {
    font-weight: 700;
    color: var(--black);
}

body.lb-new-body .checkout-aside {
    position: sticky;
    top: calc(var(--header-h) + 24px);
    background: var(--off-white);
    padding: 28px;
    border-radius: 4px;
}

body.lb-new-body .checkout-aside-items {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-height: 320px;
    overflow-y: auto;
    padding-bottom: 18px;
    margin-bottom: 18px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

body.lb-new-body .checkout-aside-item {
    display: grid;
    grid-template-columns: 60px 1fr auto;
    gap: 14px;
    align-items: center;
    font-size: 0.82rem;
}

body.lb-new-body .checkout-aside-item-thumb {
    position: relative;
    display: block;
    width: 60px;
    aspect-ratio: 3/4;
    overflow: hidden;
    border-radius: 4px;
    background: #f1ece5;
    flex-shrink: 0;
}

body.lb-new-body .checkout-aside-item-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

body.lb-new-body .checkout-aside-item-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

body.lb-new-body .checkout-aside-item-title {
    font-weight: 600;
    color: var(--black);
    font-size: 0.82rem;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

body.lb-new-body .checkout-aside-item-variant {
    font-size: 0.72rem;
    color: var(--gray);
}

body.lb-new-body .checkout-aside-item-price {
    font-weight: 700;
    color: var(--black);
    font-size: 0.85rem;
    white-space: nowrap;
}

/* ==========================================================================
   PAGE / SSS (page.php) & BLOG
   ========================================================================== */

body.lb-new-body .content-page {
    max-width: 780px;
    margin: 0 auto;
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--dark);
}

body.lb-new-body .content-page>*:first-child {
    margin-top: 0;
}

body.lb-new-body .content-page>*:last-child {
    margin-bottom: 0;
}

body.lb-new-body .content-page h1,
body.lb-new-body .content-page h2,
body.lb-new-body .content-page h3,
body.lb-new-body .content-page h4,
body.lb-new-body .content-page h5,
body.lb-new-body .content-page h6 {
    color: var(--black);
    line-height: 1.3;
    letter-spacing: -0.01em;
}

body.lb-new-body .content-page h1 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    margin: 44px 0 18px;
}

body.lb-new-body .content-page h2 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    margin: 40px 0 16px;
}

body.lb-new-body .content-page h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 30px 0 12px;
}

body.lb-new-body .content-page h4 {
    font-size: 1rem;
    font-weight: 700;
    margin: 22px 0 10px;
}

body.lb-new-body .content-page h5,
body.lb-new-body .content-page h6 {
    font-size: 0.92rem;
    font-weight: 700;
    margin: 18px 0 8px;
}

body.lb-new-body .content-page p {
    color: var(--dark);
    margin: 0 0 14px;
}

body.lb-new-body .content-page strong,
body.lb-new-body .content-page b {
    color: var(--black);
    font-weight: 600;
}

body.lb-new-body .content-page ul,
body.lb-new-body .content-page ol {
    padding-left: 0;
    margin: 0 0 18px;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

body.lb-new-body .content-page ol {
    counter-reset: content-page-ol;
}

body.lb-new-body .content-page ul li,
body.lb-new-body .content-page ol li {
    position: relative;
    padding-left: 22px;
    color: var(--dark);
    line-height: 1.65;
}

body.lb-new-body .content-page ul li::before {
    content: '';
    position: absolute;
    left: 4px;
    top: 12px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--black);
}

body.lb-new-body .content-page ol li {
    counter-increment: content-page-ol;
}

body.lb-new-body .content-page ol li::before {
    content: counter(content-page-ol) '.';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--black);
    font-weight: 600;
    min-width: 18px;
}

body.lb-new-body .content-page ul ul,
body.lb-new-body .content-page ol ol,
body.lb-new-body .content-page ul ol,
body.lb-new-body .content-page ol ul {
    margin: 8px 0 4px 8px;
}

body.lb-new-body .content-page a {
    color: var(--black);
    border-bottom: 1px solid var(--black);
    transition: opacity .2s;
}

body.lb-new-body .content-page a:hover {
    opacity: 0.6;
}

body.lb-new-body .content-page blockquote {
    margin: 20px 0;
    padding: 14px 20px;
    border-left: 3px solid var(--black);
    background: var(--off-white);
    font-style: italic;
    color: var(--black);
}

body.lb-new-body .content-page blockquote p:last-child {
    margin-bottom: 0;
}

body.lb-new-body .content-page hr {
    border: none;
    border-top: 1px solid var(--border);
    margin: 32px 0;
}

body.lb-new-body .content-page table {
    width: 100%;
    border-collapse: collapse;
    margin: 18px 0;
    font-size: 0.9rem;
}

body.lb-new-body .content-page table th,
body.lb-new-body .content-page table td {
    border: 1px solid var(--border);
    padding: 10px 14px;
    text-align: left;
}

body.lb-new-body .content-page table th {
    background: var(--off-white);
    font-weight: 600;
    color: var(--black);
}

body.lb-new-body .content-page img {
    max-width: 100%;
    height: auto;
    margin: 24px 0;
    border-radius: 4px;
}

/* ==========================================================================
   CONTACT
   ========================================================================== */

body.lb-new-body .contact-layout {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 48px;
    align-items: start;
}

body.lb-new-body .contact-map {
    width: 100%;
    height: 380px;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 48px;
}

body.lb-new-body .contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

body.lb-new-body .contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 28px;
    background: var(--off-white);
    border-radius: 4px;
}

body.lb-new-body .contact-info-item h4 {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gray);
    margin: 0 0 6px;
}

body.lb-new-body .contact-info-item p,
body.lb-new-body .contact-info-item a {
    font-size: 0.9rem;
    color: var(--dark);
    line-height: 1.55;
    margin: 0;
}

body.lb-new-body .contact-info-item a:hover {
    border-bottom: 1px solid var(--black);
}

/* ==========================================================================
   ERROR (404)
   ========================================================================== */

body.lb-new-body .error-page {
    min-height: calc(100vh - var(--header-h));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
}

body.lb-new-body .error-page-inner {
    max-width: 520px;
}

body.lb-new-body .error-code {
    font-family: var(--font-display);
    font-size: clamp(5rem, 12vw, 9rem);
    font-style: italic;
    font-weight: 700;
    line-height: 1;
    color: var(--black);
    margin-bottom: 16px;
}

body.lb-new-body .error-title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.6vw, 2rem);
    font-style: italic;
    font-weight: 700;
    color: var(--black);
    margin: 0 0 12px;
}

body.lb-new-body .error-desc {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.6;
    margin: 0 0 28px;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 960px) {
    body.lb-new-body .account-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    body.lb-new-body .account-sidebar {
        position: static;
    }

    body.lb-new-body .account-cards {
        grid-template-columns: 1fr;
    }

    body.lb-new-body .cart-page,
    body.lb-new-body .checkout-grid,
    body.lb-new-body .contact-layout {
        grid-template-columns: 1fr;
    }

    body.lb-new-body .blogs-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    body.lb-new-body .auth-page {
        grid-template-columns: 1fr;
    }

    body.lb-new-body .auth-hero {
        display: none;
    }

    body.lb-new-body .acc-form {
        grid-template-columns: 1fr;
    }

    body.lb-new-body .order-detail-summary {
        grid-template-columns: 1fr;
    }

    body.lb-new-body .orders-table th,
    body.lb-new-body .orders-table td {
        padding: 10px 12px;
        font-size: 0.82rem;
    }
}

@media (max-width: 560px) {
    body.lb-new-body .blogs-grid {
        grid-template-columns: 1fr;
    }

    body.lb-new-body .cart-row {
        grid-template-columns: 80px 1fr;
    }

    body.lb-new-body .cart-row-price {
        grid-column: 1 / -1;
        text-align: left;
    }
}