:root {
    --navy: #121417;
    --navy-mid: #1c1f25;
    --navy-soft: #262a32;
    --ink: #1f2937;
    --muted: #6b7280;
    --brand: #e1262d;
    --brand-2: #b51b21;
    --gold: #e1262d;
    --cream: #f4f5f7;
    --paper: #ffffff;
    --line: rgba(15, 23, 42, .08);
    --danger: #e1262d;
    --success: #1f9d55;
    --whatsapp: #25d366;
    --shadow: 0 18px 50px rgba(18, 20, 23, .12);
    --shadow-sm: 0 8px 24px rgba(18, 20, 23, .08);
    --radius: 12px;
    --radius-sm: 8px;
    --header-h: 88px;
    --topbar-h: 38px;
    --font-head: "Playfair Display", Georgia, serif;
    --font-body: Outfit, system-ui, sans-serif;
    --silver: #c8ccd4;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

body.no-scroll {
    overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-head);
    font-weight: 600;
    text-transform: none;
    letter-spacing: .01em;
    line-height: 1.12;
    margin: 0 0 .7em;
    color: var(--ink);
}

h1 { font-size: clamp(2.4rem, 5.4vw, 4.8rem); }
h2 { font-size: clamp(1.85rem, 3.6vw, 3.15rem); }
h3 { font-size: 1.28rem; }
h4 { font-size: 1.05rem; }

p {
    margin: 0 0 1.2rem;
    color: var(--muted);
}

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

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

button, input, select, textarea {
    font: inherit;
}

:focus-visible {
    outline: 2px solid var(--brand);
    outline-offset: 3px;
}

.shell {
    width: min(1240px, calc(100% - 40px));
    margin: auto;
}

.section {
    padding: 92px 0;
}

.section-soft {
    background: var(--cream);
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 30px;
    margin-bottom: 38px;
}

.section-head > div {
    max-width: 680px;
}

.section-head h2 {
    margin-bottom: .35em;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: .18em;
    font-family: var(--font-body);
    font-size: .72rem;
    font-weight: 700;
    color: var(--brand);
    margin-bottom: 14px;
}

.eyebrow::before {
    content: "";
    width: 26px;
    height: 2px;
    background: var(--brand);
}

.eyebrow.light {
    color: #ff6b7d;
}

.eyebrow.light::before {
    background: var(--brand);
}

.lead {
    font-size: 1.08rem;
    line-height: 1.85;
}

.text-link {
    font-weight: 600;
    color: var(--navy);
    display: inline-flex;
    gap: 9px;
    align-items: center;
    font-size: .92rem;
}

.text-link i {
    color: var(--brand);
    transition: transform .25s;
}

.text-link:hover {
    color: var(--brand);
}

.text-link:hover i {
    transform: translateX(5px);
}

.btn {
    border: 0;
    border-radius: 7px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 22px;
    font-family: var(--font-head);
    font-size: .95rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: .25s ease;
    white-space: nowrap;
    line-height: 1;
}

.btn-primary,
.btn-gold {
    background: var(--brand);
    color: #fff;
    box-shadow: 0 10px 22px rgba(224, 30, 55, .28);
}

.btn-primary:hover,
.btn-gold:hover {
    background: var(--brand-2);
    transform: translateY(-2px);
    color: #fff;
}

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

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

.btn-outline {
    border: 1px solid var(--line);
    background: #fff;
    color: var(--ink);
}

.btn-outline:hover {
    border-color: var(--navy);
    color: var(--navy);
}

.btn-danger {
    background: #fff1f3;
    color: var(--danger);
    border: 1px solid #ffd4da;
}

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

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

.btn-secondary:hover {
    background: var(--navy-mid);
}

.btn:disabled {
    background: #b8c0cc;
    color: #fff;
    box-shadow: none;
    cursor: not-allowed;
    transform: none;
    border-color: transparent;
}

.top-bar,
.announcement-bar {
    background: var(--navy);
    color: rgba(255, 255, 255, .82);
    font-size: .75rem;
    font-weight: 500;
    letter-spacing: .02em;
}

.top-bar-inner,
.announcement-inner {
    min-height: var(--topbar-h);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.top-bar-inner > span,
.announcement-inner > span {
    color: #fff;
}

.top-bar-inner > span::before,
.announcement-inner > span::before {
    content: "";
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--brand);
    margin-right: 9px;
    vertical-align: middle;
}

.top-bar-links,
.announcement-inner div {
    display: flex;
    align-items: center;
    gap: 22px;
}

.top-bar-inner a,
.announcement-inner a,
.announcement-inner span {
    display: flex;
    align-items: center;
    gap: 7px;
    color: rgba(255, 255, 255, .82);
}

.top-bar-inner a:hover,
.announcement-inner a:hover {
    color: #fff;
}

.top-bar-inner i,
.announcement-inner i {
    color: var(--brand);
    font-size: .85rem;
}

.site-header {
    background: rgba(255, 255, 255, .97);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid transparent;
    transition: .3s;
    backdrop-filter: blur(12px);
    overflow: visible;
}

.site-header.scrolled {
    box-shadow: 0 8px 28px rgba(3, 15, 39, .08);
    border-color: var(--line);
}

.header-main {
    height: var(--header-h);
    display: flex;
    align-items: center;
    gap: 28px;
    min-height: 88px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    color: var(--navy);
    text-transform: none;
}

.brand-logo {
    display: block;
    height: 58px;
    width: auto;
    max-width: min(200px, 42vw);
    object-fit: contain;
    background: transparent !important;
    box-shadow: none;
    border: 0;
    border-radius: 0;
}

.brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    color: #fff;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 10px 20px rgba(225, 38, 45, .28);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.brand-text small {
    color: var(--brand);
    font-size: .62rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    font-weight: 700;
    font-family: var(--font-body);
}

.brand-text strong {
    font-family: var(--font-head);
    font-size: 1.15rem;
    font-weight: 600;
    color: inherit;
}

.brand img,
.site-logo,
.brand-logo,
.panel-logo {
    border-radius: 0;
}

.brand img {
    display: block;
}

.header-search {
    height: 42px;
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 7px;
    display: flex;
    align-items: center;
    padding-left: 12px;
    overflow: hidden;
    min-width: 180px;
    max-width: 240px;
}

.header-search i {
    color: #8a94a3;
}

.header-search input {
    min-width: 0;
    flex: 1;
    border: 0;
    outline: 0;
    background: transparent;
    padding: 0 12px;
    color: var(--ink);
    font-size: .85rem;
}

.header-search button {
    height: 100%;
    border: 0;
    background: var(--brand);
    color: #fff;
    padding: 0 16px;
    font-weight: 700;
    cursor: pointer;
}

.header-actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 14px;
    margin-left: auto;
    flex-shrink: 0;
}

.header-catalogues {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-catalogue-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 38px;
    padding: 0 12px;
    border: 1px solid var(--line);
    border-radius: 7px;
    background: var(--cream);
    color: var(--navy);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    white-space: nowrap;
    transition: .2s ease;
}

.header-catalogue-btn i {
    font-size: .85rem;
}

.header-catalogue-btn .cat-short {
    display: none;
}

.header-catalogue-btn:hover {
    background: var(--brand);
    border-color: var(--brand);
    color: #fff;
}

.header-action {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    font-size: .68rem;
    font-weight: 600;
    color: var(--navy);
    border-radius: 7px;
    transition: .2s;
}

.header-action i {
    font-size: 1.2rem;
    color: var(--navy);
}

.header-action:hover,
.cart-link:hover {
    background: var(--cream);
}

.cart-count {
    position: absolute;
    top: 2px;
    right: 2px;
    background: var(--brand);
    color: #fff;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    border-radius: 10px;
    font-size: .62rem;
    font-weight: 700;
    display: grid;
    place-items: center;
    font-family: var(--font-body);
}

.header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--brand);
    color: #fff;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: .88rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 11px 20px;
    border-radius: 999px;
    box-shadow: 0 8px 18px rgba(224, 30, 55, .28);
    transition: .25s ease;
    white-space: nowrap;
}

.header-cta:hover {
    background: var(--brand-2);
    transform: translateY(-1px);
    color: #fff;
}

.mobile-toggle {
    display: none;
    border: 0;
    background: none;
    font-size: 1.7rem;
    color: var(--navy);
    cursor: pointer;
    width: 42px;
    height: 42px;
    border-radius: 7px;
}

.mobile-toggle:hover {
    background: var(--cream);
}

.nav-wrap {
    display: none;
    border-top: 1px solid var(--line);
}

.nav-wrap.open {
    display: block;
}

.main-nav,
.desktop-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-head);
    font-size: .92rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    flex: 1;
    justify-content: center;
}

.main-nav .nav-link,
.desktop-nav .nav-link,
.mobile-nav > a,
.mobile-nav-toggle {
    position: relative;
    color: var(--navy);
    padding: 10px 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.main-nav .nav-link::after,
.desktop-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 4px;
    height: 2px;
    background: var(--brand);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform .25s ease;
}

.main-nav .nav-link:hover,
.main-nav .nav-link.active,
.desktop-nav .nav-link:hover,
.desktop-nav .nav-link.active,
.nav-item.has-menu:hover > .nav-link,
.nav-item.has-menu.is-active > .nav-link,
.mobile-nav > a:hover,
.mobile-nav > a.active,
.mobile-nav-toggle:hover {
    color: var(--brand);
}

.main-nav .nav-link:hover::after,
.main-nav .nav-link.active::after,
.desktop-nav .nav-link:hover::after,
.desktop-nav .nav-link.active::after,
.nav-item.has-menu:hover > .nav-link::after,
.nav-item.has-menu.is-active > .nav-link::after {
    transform: scaleX(1);
}

.nav-trigger .bi-chevron-down {
    font-size: .7rem;
    transition: transform .25s ease;
}

.nav-item.has-menu:hover .nav-trigger .bi-chevron-down,
.nav-item.has-menu:focus-within .nav-trigger .bi-chevron-down {
    transform: rotate(180deg);
}

.nav-item.has-menu {
    position: relative;
}

.nav-dropdown {
    position: absolute;
    top: calc(100% - 2px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 320px;
    padding-top: 14px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .28s ease, transform .28s ease, visibility .28s ease;
    z-index: 1200;
}

.nav-item.has-menu:hover .nav-dropdown,
.nav-item.has-menu:focus-within .nav-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-panel {
    background: #fff;
    border: 1px solid rgba(18, 20, 23, .08);
    border-radius: 18px;
    box-shadow: 0 22px 50px rgba(18, 20, 23, .14);
    overflow: hidden;
    position: relative;
}

.nav-dropdown-panel::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 3px;
    background: linear-gradient(180deg, var(--brand), var(--brand-2));
}

.nav-dropdown-head {
    padding: 18px 20px 14px;
    background: linear-gradient(135deg, #fafafa 0%, #f3f4f6 100%);
    border-bottom: 1px solid rgba(18, 20, 23, .06);
}

.nav-dropdown-kicker {
    display: block;
    font-family: var(--font-body);
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--brand);
    margin-bottom: 6px;
}

.nav-dropdown-head strong {
    display: block;
    font-family: var(--font-head);
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: none;
    color: var(--navy);
    margin-bottom: 4px;
}

.nav-dropdown-head p {
    margin: 0;
    font-family: var(--font-body);
    font-size: .82rem;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
    color: var(--muted);
    line-height: 1.45;
    max-width: 26ch;
}

.nav-dropdown-list {
    list-style: none;
    margin: 0;
    padding: 8px;
}

.nav-dropdown-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 11px 12px;
    border-radius: 12px;
    color: var(--navy);
    font-family: var(--font-body);
    font-size: .9rem;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
    transition: background .2s ease, color .2s ease, transform .2s ease;
}

.nav-dropdown-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.nav-dropdown-label .bi {
    font-size: .75rem;
    color: var(--brand);
    opacity: .55;
    transition: transform .2s ease, opacity .2s ease;
}

.nav-dropdown-count {
    min-width: 28px;
    height: 22px;
    padding: 0 8px;
    border-radius: 999px;
    display: inline-grid;
    place-items: center;
    background: rgba(18, 20, 23, .06);
    color: var(--muted);
    font-size: .72rem;
    font-weight: 700;
}

.nav-dropdown-list a:hover,
.nav-dropdown-list a.is-current {
    background: rgba(225, 38, 45, .07);
    color: var(--brand);
}

.nav-dropdown-list a:hover .bi,
.nav-dropdown-list a.is-current .bi {
    opacity: 1;
    transform: translate(1px, -1px);
}

.nav-dropdown-list a:hover .nav-dropdown-count,
.nav-dropdown-list a.is-current .nav-dropdown-count {
    background: rgba(225, 38, 45, .12);
    color: var(--brand);
}

.nav-dropdown-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin: 0 8px 8px;
    padding: 12px 14px;
    border-radius: 12px;
    background: var(--navy);
    color: #fff !important;
    font-family: var(--font-body);
    font-size: .84rem;
    font-weight: 700;
    letter-spacing: .02em;
    text-transform: none;
    transition: background .2s ease, gap .2s ease;
}

.nav-dropdown-cta:hover {
    background: var(--brand);
}

.nav-dropdown-cta .bi {
    transition: transform .2s ease;
}

.nav-dropdown-cta:hover .bi {
    transform: translateX(3px);
}

.nav-promise {
    margin-left: auto;
    color: var(--brand);
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: .78rem;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0;
    font-family: var(--font-body);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 18px 0 22px;
}

.mobile-nav > a,
.mobile-nav-toggle {
    display: flex;
    width: 100%;
    padding: 11px 0;
    font-family: var(--font-head);
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    border-bottom: 1px solid var(--line);
    background: transparent;
    border-left: 0;
    border-right: 0;
    border-top: 0;
    cursor: pointer;
    text-align: left;
    justify-content: space-between;
}

.mobile-nav-group {
    width: 100%;
}

.mobile-nav-toggle .bi {
    transition: transform .25s ease;
}

.mobile-nav-group.is-open .mobile-nav-toggle .bi {
    transform: rotate(180deg);
}

.mobile-nav-subs {
    display: flex;
    flex-direction: column;
    padding: 4px 0 10px 12px;
    border-bottom: 1px solid var(--line);
}

.mobile-nav-subs[hidden] {
    display: none;
}

.mobile-nav-subs a {
    padding: 10px 0;
    font-family: var(--font-body);
    font-size: .92rem;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
    color: var(--ink);
    border-bottom: 1px solid rgba(18, 20, 23, .05);
}

.mobile-nav-subs a:last-child {
    border-bottom: 0;
}

.mobile-nav-subs a:hover {
    color: var(--brand);
}

.mobile-nav .header-cta {
    margin-top: 12px;
    width: 100%;
    border-radius: 7px;
}

.flash {
    position: fixed;
    z-index: 1500;
    top: 140px;
    left: 50%;
    transform: translateX(-50%);
    max-width: min(560px, calc(100% - 30px));
    padding: 13px 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 9px;
    font-weight: 600;
    font-size: .9rem;
    animation: flashIn .4s both;
}

.flash-success { color: var(--success); }
.flash-error { color: var(--danger); }

@keyframes flashIn {
    from { opacity: 0; transform: translate(-50%, -15px); }
    to { opacity: 1; transform: translate(-50%, 0); }
}

.page-hero {
    padding: 68px 0 72px;
    background: linear-gradient(135deg, #030F27 0%, #0a1a38 58%, #1a1a2e 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.page-hero::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border: 70px solid rgba(224, 30, 55, .1);
    border-radius: 50%;
    right: -120px;
    top: -180px;
}

.page-hero .shell {
    position: relative;
    z-index: 1;
}

.page-hero h1,
.page-hero h2 {
    color: #fff;
    max-width: 820px;
}

.page-hero p {
    max-width: 650px;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, .72);
}

.page-hero .eyebrow {
    color: #ff6b7d;
}

.breadcrumbs {
    display: flex;
    gap: 9px;
    align-items: center;
    flex-wrap: wrap;
    font-size: .8rem;
    color: rgba(255, 255, 255, .55);
    margin-bottom: 18px;
}

.section .breadcrumbs,
.product-detail .breadcrumbs,
.shell > .breadcrumbs {
    color: var(--muted);
}

.breadcrumbs a:hover {
    color: var(--brand);
}

.page-hero .breadcrumbs a:hover {
    color: #fff;
}

.breadcrumbs i {
    font-size: .65rem;
}

.hero-home,
.jl-hero {
    min-height: 680px;
    background-color: var(--navy);
    background-image:
        linear-gradient(105deg, rgba(3, 15, 39, .92) 0%, rgba(10, 26, 56, .78) 48%, rgba(3, 15, 39, .55) 100%),
        var(--hero-image, none);
    background-size: cover;
    background-position: center;
    color: #fff;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.jl-hero {
    min-height: min(86vh, 820px);
}

.hero-home::before,
.jl-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: linear-gradient(to right, #000, transparent);
    pointer-events: none;
}

.hero-home::after,
.jl-hero::after {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    border: 80px solid rgba(224, 30, 55, .08);
    border-radius: 50%;
    right: -160px;
    bottom: -180px;
    pointer-events: none;
}

.jl-hero > .shell,
.jl-hero-inner {
    position: relative;
    z-index: 2;
    padding: 90px 0;
    max-width: 760px;
}

.jl-hero h1,
.hero-copy h1 {
    color: #fff;
    margin-bottom: .35em;
}

.jl-hero p,
.hero-copy p {
    color: rgba(255, 255, 255, .78);
    font-size: 1.08rem;
    max-width: 600px;
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.04fr .96fr;
    align-items: center;
    gap: 70px;
    padding: 70px 0;
}

.hero-copy {
    max-width: 660px;
}

.hero-actions {
    display: flex;
    gap: 13px;
    flex-wrap: wrap;
    margin: 32px 0;
}

.hero-trust {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
    color: rgba(255, 255, 255, .78);
    font-size: .82rem;
}

.hero-trust span {
    display: flex;
    align-items: center;
    gap: 7px;
}

.hero-trust i {
    color: var(--brand);
}

.hero-visual {
    height: 520px;
    position: relative;
}

.hero-orbit {
    position: absolute;
    width: 420px;
    height: 420px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 50%;
    right: 20px;
    top: 40px;
    animation: spin 24s linear infinite;
}

.hero-orbit::after {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--brand);
    top: 35px;
    left: 72px;
    box-shadow: 0 0 0 9px rgba(224, 30, 55, .18);
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.hero-product {
    position: absolute;
    background: #fff;
    border-radius: 12px;
    padding: 10px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, .32);
    overflow: hidden;
}

.hero-product img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
    background: var(--cream);
}

.hero-product.one {
    width: 310px;
    height: 390px;
    right: 50px;
    top: 45px;
    transform: rotate(4deg);
}

.hero-product.two {
    width: 180px;
    height: 220px;
    left: 5px;
    bottom: 15px;
    transform: rotate(-7deg);
}

.hero-product.three {
    width: 135px;
    height: 165px;
    right: 0;
    bottom: -10px;
    transform: rotate(9deg);
}

.floating-chip {
    position: absolute;
    left: 20px;
    top: 55px;
    background: rgba(255, 255, 255, .97);
    color: var(--ink);
    padding: 12px 17px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    font-weight: 700;
    font-size: .82rem;
    font-family: var(--font-head);
    letter-spacing: .06em;
    text-transform: uppercase;
}

.floating-chip i {
    color: var(--brand);
    margin-right: 7px;
}

.jl-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 48px;
}

.jl-hero .jl-stats {
    max-width: 720px;
}

.jl-stat {
    padding: 8px 0;
    border-left: 2px solid var(--brand);
    padding-left: 16px;
}

.jl-stat strong,
.jl-stat b {
    display: block;
    font-family: var(--font-head);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
    letter-spacing: .02em;
}

.jl-hero .jl-stat strong,
.jl-hero .jl-stat b {
    color: #fff;
}

.jl-stat span,
.jl-stat small {
    display: block;
    margin-top: 8px;
    color: var(--muted);
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 600;
}

.jl-hero .jl-stat span,
.jl-hero .jl-stat small {
    color: rgba(255, 255, 255, .65);
}

.section-soft .jl-stats,
.jl-stats.dark {
    background: var(--navy);
    color: #fff;
    padding: 42px 28px;
    border-radius: var(--radius);
}

.jl-stats.dark .jl-stat strong,
.section-soft .jl-stats .jl-stat strong {
    color: #fff;
}

.jl-stats.dark .jl-stat span,
.section-soft .jl-stats .jl-stat span {
    color: rgba(255, 255, 255, .65);
}

.benefit-strip {
    position: relative;
    margin-top: -40px;
    z-index: 5;
}

.benefit-grid {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 22px 8px;
}

.benefit {
    display: flex;
    gap: 14px;
    align-items: center;
    padding: 10px 22px;
    border-right: 1px solid var(--line);
}

.benefit:last-child {
    border: 0;
}

.benefit i {
    font-size: 1.55rem;
    color: var(--brand);
}

.benefit strong {
    display: block;
    font-family: var(--font-head);
    font-size: 1rem;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--navy);
}

.benefit small {
    color: var(--muted);
}

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

.why-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px 24px;
    transition: .3s;
}

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

.why-card i,
.why-card .why-icon {
    width: 52px;
    height: 52px;
    border-radius: 8px;
    background: #fff1f3;
    color: var(--brand);
    display: grid;
    place-items: center;
    font-size: 1.4rem;
    margin-bottom: 18px;
}

.why-card h3 {
    margin-bottom: 10px;
    font-size: 1.15rem;
}

.why-card p {
    margin: 0;
    font-size: .9rem;
}

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

.category-feature {
    min-height: 360px;
    border-radius: var(--radius);
    position: relative;
    overflow: hidden;
    padding: 38px;
    background: var(--navy);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.category-feature:nth-child(2) {
    background: var(--navy-mid);
}

.category-feature::after {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(224, 30, 55, .18);
    right: -65px;
    top: -45px;
    transition: .4s;
}

.category-feature:hover::after {
    transform: scale(1.12);
}

.category-feature > * {
    position: relative;
    z-index: 2;
}

.category-feature h2,
.category-feature h3 {
    color: #fff;
}

.category-feature .eyebrow {
    color: #ff6b7d;
}

.category-feature .text-link {
    color: #fff;
}

.category-feature .category-icon {
    position: absolute;
    right: 36px;
    top: 40px;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: var(--brand);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 3rem;
}

.category-feature:nth-child(2) .category-icon {
    background: var(--brand-2);
}

.category-links {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin: 8px 0 22px;
}

.category-links span {
    font-size: .72rem;
    background: rgba(255, 255, 255, .12);
    color: #fff;
    padding: 6px 10px;
    border-radius: 999px;
}

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

.collection-card {
    position: relative;
    min-height: 280px;
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 24px;
    background: var(--navy) center / cover no-repeat;
    color: #fff;
    isolation: isolate;
}

.collection-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    transition: transform .55s;
}

.collection-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(3, 15, 39, .15) 0%, rgba(3, 15, 39, .82) 100%);
    z-index: -1;
    transition: .35s;
}

.collection-card:hover img {
    transform: scale(1.08);
}

.collection-card:hover::after {
    background: linear-gradient(180deg, rgba(3, 15, 39, .1) 0%, rgba(224, 30, 55, .72) 100%);
}

.collection-card h2,
.collection-card h3,
.collection-card strong {
    color: #fff;
    margin: 0;
    position: relative;
    z-index: 1;
}

.collection-card span {
    position: relative;
    z-index: 1;
    color: rgba(255, 255, 255, .82);
    margin: 6px 0 0;
    font-size: .85rem;
}

.collection-card-body {
    position: relative;
    z-index: 1;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.product-card,
.product {
    background: #fff;
    border: 0;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: transform .35s ease, box-shadow .35s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 0 14px 36px rgba(18, 20, 23, .08);
}

.product-card:hover,
.product:hover {
    transform: translateY(-8px);
    box-shadow: 0 26px 52px rgba(18, 20, 23, .14);
    border-color: transparent;
}

.product-image {
    aspect-ratio: 4 / 5;
    background: linear-gradient(180deg, #f7f8fa, #e8eaee);
    position: relative;
    overflow: hidden;
    display: block;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform .65s ease;
    padding: 0;
}

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

.qc-card-shade {
    position: absolute;
    inset: auto 0 0;
    height: 46%;
    background: linear-gradient(180deg, transparent, rgba(10, 11, 13, .32));
    opacity: 0;
    transition: .35s ease;
    pointer-events: none;
}

.product-card:hover .qc-card-shade {
    opacity: 1;
}

.product-badge {
    position: absolute;
    left: 12px;
    top: 12px;
    z-index: 2;
    padding: 7px 11px;
    border-radius: 999px;
    font-family: var(--font-body);
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    background: var(--navy);
    color: #fff;
}

.product-badge.out {
    background: var(--danger);
}

.product-badge.featured {
    background: var(--brand);
    color: #fff;
}

.quick-view {
    position: absolute;
    right: 14px;
    bottom: 14px;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: #fff;
    color: var(--navy);
    display: grid;
    place-items: center;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .16);
    transform: translateY(14px);
    opacity: 0;
    transition: .3s;
    z-index: 2;
}

.product-card:hover .quick-view {
    transform: none;
    opacity: 1;
}

.quick-view:hover {
    background: var(--brand);
    color: #fff;
}

.product-body,
.product {
    padding: 18px 18px 20px;
}

.qc-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 6px;
}

.product-category {
    font-family: var(--font-body);
    font-size: .68rem;
    text-transform: uppercase;
    letter-spacing: .14em;
    font-weight: 700;
    color: var(--brand);
}

.qc-card-color {
    font-size: .75rem;
    color: var(--muted);
    font-weight: 500;
}

.qc-card-sub {
    display: block;
    font-size: .78rem;
    color: var(--muted);
    margin-bottom: 6px;
    font-weight: 500;
}

.product-title {
    font-family: var(--font-head);
    font-size: 1.12rem;
    line-height: 1.28;
    margin: 0 0 14px;
    min-height: 2.5em;
    text-transform: none;
    letter-spacing: -.01em;
}

.product-title a:hover {
    color: var(--brand);
}

.product-code {
    display: none;
}

.product-bottom {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 2px;
    border-top: 1px solid rgba(18, 20, 23, .06);
    padding-top: 14px;
}

.product-bottom .price {
    font-family: var(--font-head);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--ink);
}

.icon-btn {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--navy);
    display: grid;
    place-items: center;
    transition: .2s ease;
    cursor: pointer;
}

.icon-btn:hover:not(:disabled) {
    background: var(--brand);
    border-color: var(--brand);
    color: #fff;
}

.icon-btn.inquiry-btn:hover:not(:disabled) {
    background: #25d366;
    border-color: #25d366;
    color: #fff;
}

.icon-btn:disabled {
    opacity: .45;
    cursor: not-allowed;
}

.price {
    font-family: var(--font-head);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--ink);
}

.price-zero {
    font-size: .8rem;
    color: var(--muted);
    font-family: var(--font-body);
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-media {
    min-height: 540px;
    border-radius: 12px;
    background: linear-gradient(145deg, #0a1a38, #030F27);
    position: relative;
    overflow: hidden;
    padding: 34px;
}

.story-media img {
    width: 100%;
    height: 100%;
    min-height: 470px;
    object-fit: contain;
    filter: drop-shadow(0 25px 25px rgba(0, 0, 0, .28));
}

.story-stat {
    position: absolute;
    background: #fff;
    border-radius: 8px;
    padding: 18px 22px;
    box-shadow: var(--shadow);
    right: 24px;
    bottom: 24px;
}

.story-stat strong {
    display: block;
    font-family: var(--font-head);
    font-size: 2rem;
    color: var(--brand);
}

.story-stat span {
    color: var(--muted);
    font-size: .82rem;
}

.story-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 17px;
    margin: 28px 0;
}

.story-point {
    display: flex;
    gap: 12px;
}

.story-point i {
    color: var(--brand);
    font-size: 1.25rem;
}

.story-point strong {
    display: block;
    font-family: var(--font-head);
    letter-spacing: .04em;
    text-transform: uppercase;
}

.story-point small {
    color: var(--muted);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    counter-reset: process;
}

.process-step {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px 24px 24px;
    position: relative;
    counter-increment: process;
}

.process-step > span:first-child,
.process-step .step-num {
    font-family: var(--font-head);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--brand);
    line-height: 1;
    display: block;
    margin-bottom: 14px;
}

.process-step::before {
    content: counter(process, decimal-leading-zero);
    font-family: var(--font-head);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--brand);
    line-height: 1;
    display: block;
    margin-bottom: 14px;
}

.process-step:has(> span:first-child)::before,
.process-step:has(.step-num)::before {
    content: none;
    display: none;
    margin: 0;
}

.process-step h3 {
    margin-bottom: 10px;
}

.process-step p {
    margin: 0;
    font-size: .9rem;
}

.ship-banner {
    background: var(--navy);
    color: #fff;
    padding: 72px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.ship-banner::before {
    content: "";
    position: absolute;
    width: 380px;
    height: 380px;
    border: 60px solid rgba(224, 30, 55, .1);
    border-radius: 50%;
    left: -140px;
    top: -160px;
}

.ship-banner .shell,
.ship-banner-inner {
    position: relative;
    z-index: 1;
}

.ship-banner .eyebrow {
    color: #ff6b7d;
}

.ship-banner h2,
.ship-banner h3 {
    color: #fff;
    margin-bottom: .4em;
}

.ship-banner p {
    color: rgba(255, 255, 255, .72);
    max-width: 640px;
    margin: 0 auto 28px;
}

.ship-banner ul,
.ship-flags {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.ship-banner li,
.ship-flags span {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    color: #fff;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: .82rem;
    font-weight: 600;
}

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

.testimonial {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px;
}

.testimonial h3 {
    margin: 12px 0 8px;
}

.stars {
    color: var(--brand);
    letter-spacing: 3px;
    margin-bottom: 16px;
}

.quote {
    font-size: 1.02rem;
    color: var(--ink);
}

.customer {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-top: 24px;
}

.customer-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--navy);
    color: #fff;
    display: grid;
    place-items: center;
    font-family: var(--font-head);
    font-weight: 800;
}

.customer small {
    display: block;
    color: var(--muted);
}

.faq-list {
    display: grid;
    gap: 12px;
    max-width: 880px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 0;
    overflow: hidden;
}

.faq-item summary,
.faq-item h3,
.faq-item h4 {
    margin: 0;
    padding: 18px 22px;
    cursor: pointer;
    list-style: none;
    font-size: 1.05rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    color: var(--brand);
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1;
}

.faq-item[open] summary::after {
    content: "–";
}

.faq-item p,
.faq-item .faq-answer {
    margin: 0;
    padding: 0 22px 20px;
    color: var(--muted);
    font-size: .95rem;
}

.shop-layout {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 40px;
}

.filter-sidebar {
    align-self: start;
    position: sticky;
    top: 140px;
    border: 1px solid var(--line);
    background: #fff;
    border-radius: var(--radius);
    padding: 22px;
}

.filter-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.filter-title h3 {
    margin: 0;
}

.filter-sidebar .mobile-toggle {
    display: none;
}

.filter-group {
    padding: 18px 0;
    border-top: 1px solid var(--line);
}

.filter-group h4 {
    font-size: .92rem;
    margin-bottom: 13px;
}

.category-list {
    display: grid;
    gap: 4px;
}

.category-list a {
    display: flex;
    justify-content: space-between;
    padding: 7px 0;
    color: var(--muted);
    font-size: .9rem;
}

.category-list a:hover,
.category-list a.active {
    color: var(--brand);
    font-weight: 600;
}

.category-list .child {
    padding-left: 14px;
    font-size: .84rem;
}

.filter-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
}

.field,
.select {
    width: 100%;
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 7px;
    padding: 11px 12px;
    outline: 0;
    color: var(--ink);
}

.field:focus,
.select:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(224, 30, 55, .1);
}

.radio-row {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 8px 0;
    color: var(--muted);
    font-size: .88rem;
    cursor: pointer;
}

.radio-row input {
    accent-color: var(--brand);
}

.filter-actions {
    display: grid;
    gap: 9px;
}

.filter-actions .btn {
    width: 100%;
}

.shop-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    margin-bottom: 24px;
}

.shop-toolbar p {
    margin: 0;
}

.shop-toolbar .select {
    width: auto;
    min-width: 190px;
}

.filter-mobile {
    display: none;
}

/* =========================================================
   Quality Crafts shop — boutique catalog
   ========================================================= */

.page-shop .shop-hero {
    position: relative;
    min-height: 360px;
    display: grid;
    align-items: end;
    color: #fff;
    overflow: hidden;
    background:
        linear-gradient(120deg, rgba(10, 11, 13, .82) 0%, rgba(10, 11, 13, .45) 55%, rgba(225, 38, 45, .28) 100%),
        var(--shop-hero-image) center/cover no-repeat;
}

.page-shop .shop-hero-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 11, 13, .25) 0%, rgba(10, 11, 13, .55) 100%);
    pointer-events: none;
}

.page-shop .shop-hero-inner {
    position: relative;
    z-index: 1;
    padding: 88px 0 52px;
    max-width: 760px;
}

.page-shop .shop-hero .breadcrumbs {
    color: rgba(255, 255, 255, .7);
}

.page-shop .shop-hero .breadcrumbs a:hover {
    color: #fff;
}

.page-shop .shop-hero h1 {
    color: #fff;
    margin-bottom: 14px;
    max-width: 14ch;
}

.page-shop .shop-hero p {
    color: rgba(255, 255, 255, .82);
    max-width: 36rem;
    margin-bottom: 22px;
}

.page-shop .shop-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.page-shop .shop-hero-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
    color: rgba(255, 255, 255, .9);
    font-size: .86rem;
}

.page-shop .shop-hero-meta strong {
    color: #fff;
    font-weight: 700;
}

.page-shop .shop-rail {
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 40;
}

.page-shop .shop-collections {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: thin;
}

.page-shop .shop-collection-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: var(--cream);
    color: var(--ink);
    font-weight: 600;
    font-size: .92rem;
    transition: .2s ease;
}

.page-shop .shop-collection-chip b {
    font-family: var(--font-body);
    font-size: .78rem;
    font-weight: 700;
    color: var(--muted);
    background: #fff;
    border-radius: 999px;
    padding: 2px 8px;
}

.page-shop .shop-collection-chip:hover,
.page-shop .shop-collection-chip.is-active {
    background: var(--navy);
    border-color: var(--navy);
    color: #fff;
}

.page-shop .shop-collection-chip:hover b,
.page-shop .shop-collection-chip.is-active b {
    background: rgba(255, 255, 255, .14);
    color: #fff;
}

.page-shop .shop-section {
    padding-top: 48px;
    background:
        radial-gradient(circle at 8% 0%, rgba(225, 38, 45, .05), transparent 28%),
        #fff;
}

.page-shop .shop-layout {
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 36px;
    align-items: start;
}

.page-shop .shop-filters {
    border: 0;
    border-radius: 20px;
    padding: 26px 22px;
    background: #fff;
    box-shadow: 0 18px 50px rgba(18, 20, 23, .08);
    top: 86px;
}

.page-shop .filter-kicker {
    display: block;
    font-size: .72rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--brand);
    font-weight: 700;
    margin-bottom: 4px;
}

.page-shop .filter-title h3 {
    font-family: var(--font-head);
    font-size: 1.55rem;
    margin: 0;
}

.page-shop .shop-search-field {
    position: relative;
}

.page-shop .shop-search-field i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--muted);
}

.page-shop .shop-search-field .field {
    padding-left: 38px;
}

.page-shop .filter-hint {
    margin: 10px 0 0;
    font-size: .8rem;
    color: var(--muted);
}

.page-shop .category-list a {
    padding: 10px 12px;
    border-radius: 10px;
    transition: .2s ease;
}

.page-shop .category-list a:hover,
.page-shop .category-list a.active {
    background: rgba(225, 38, 45, .06);
    color: var(--brand);
}

.page-shop .category-list a b {
    color: inherit;
    opacity: .7;
    font-weight: 700;
}

.page-shop .shop-active-filters {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
}

.page-shop .shop-active-label {
    font-size: .78rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--muted);
    margin-right: 4px;
}

.page-shop .shop-filter-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--line);
    color: var(--ink);
    font-size: .88rem;
    font-weight: 600;
}

.page-shop .shop-filter-chip:hover {
    border-color: var(--brand);
    color: var(--brand);
}

.page-shop .shop-clear-link {
    color: var(--brand);
    font-weight: 700;
    font-size: .88rem;
    margin-left: 4px;
}

.page-shop .shop-toolbar {
    padding: 16px 18px;
    border-radius: 16px;
    background: var(--cream);
    border: 1px solid var(--line);
    margin-bottom: 28px;
}

.page-shop .shop-toolbar-left {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.page-shop .shop-sort {
    display: flex;
    align-items: center;
    gap: 10px;
}

.page-shop .shop-sort label {
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--muted);
}

.page-shop .shop-sort .select {
    min-width: 200px;
    border-radius: 999px;
    padding-inline: 16px;
    background: #fff;
}

.page-shop .shop-product-grid {
    gap: 24px;
}

.page-shop .product-card {
    border: 0;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(18, 20, 23, .06);
    background: #fff;
}

.page-shop .product-image {
    aspect-ratio: 4 / 5;
    background: linear-gradient(180deg, #f7f7f8, #eef0f3);
}

.page-shop .product-image img {
    object-fit: cover;
    padding: 0;
}

.page-shop .product-body {
    padding: 18px 18px 20px;
}

.page-shop .product-category {
    letter-spacing: .14em;
    font-size: .72rem;
}

.page-shop .product-title {
    font-family: var(--font-head);
    font-size: 1.15rem;
    line-height: 1.25;
}

.page-shop .product-code {
    display: none;
}

.page-shop .shop-empty {
    padding: 72px 24px;
    border-radius: 20px;
    background: var(--cream);
    border: 1px dashed var(--line);
}

.page-shop .filter-backdrop {
    display: none;
}

body.filters-open .page-shop .filter-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 1190;
    background: rgba(10, 11, 13, .45);
    backdrop-filter: blur(2px);
}

.page-shop .pagination-wrap .page-link {
    border-radius: 999px;
}

.page-shop .page-item.active .page-link,
.page-shop .page-link:hover {
    background: var(--brand);
    border-color: var(--brand);
}

@media (max-width: 1100px) {
    .page-shop .shop-product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .page-shop .shop-hero-inner {
        padding: 72px 0 40px;
    }

    .page-shop .shop-hero h1 {
        max-width: none;
    }

    .page-shop .shop-rail {
        position: static;
    }

    .page-shop .shop-filters {
        top: 0;
        border-radius: 0;
    }

    .page-shop .shop-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .page-shop .shop-toolbar {
        flex-direction: column;
        align-items: stretch;
    }

    .page-shop .shop-sort {
        width: 100%;
        justify-content: space-between;
    }

    .page-shop .shop-sort .select {
        flex: 1;
        min-width: 0;
    }

    .page-shop .shop-product-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }
}

.pagination-wrap {
    margin-top: 40px;
}

.pagination {
    display: flex;
    list-style: none;
    padding: 0;
    gap: 7px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-link {
    width: 40px;
    height: 40px;
    border: 1px solid var(--line);
    border-radius: 7px;
    display: grid;
    place-items: center;
    background: #fff;
    color: var(--ink);
    min-width: 40px;
    padding: 0 8px;
}

.page-item.active .page-link,
.page-link:hover {
    background: var(--navy);
    border-color: var(--navy);
    color: #fff;
}

.page-item.disabled {
    opacity: .4;
    pointer-events: none;
}

.product-detail {
    display: grid;
    grid-template-columns: 1.04fr .96fr;
    gap: 70px;
    align-items: start;
}

.gallery {
    display: grid;
    grid-template-columns: 86px 1fr;
    gap: 16px;
    position: sticky;
    top: 150px;
}

.thumbs {
    display: grid;
    gap: 10px;
    align-content: start;
}

.thumb {
    aspect-ratio: 1;
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 8px;
    padding: 5px;
    cursor: pointer;
}

.thumb.active {
    border: 2px solid var(--brand);
}

.thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.zoom-stage {
    aspect-ratio: 1;
    background: var(--cream);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    cursor: zoom-in;
}

.zoom-stage img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
    transform-origin: center;
    transition: transform .15s;
}

.zoom-hint {
    position: absolute;
    left: 18px;
    bottom: 18px;
    background: rgba(255, 255, 255, .92);
    border-radius: 999px;
    padding: 8px 12px;
    font-size: .72rem;
    font-weight: 600;
}

.zoom-stage .product-badge {
    right: 14px;
    left: auto;
}

.detail-category {
    color: var(--brand);
    text-transform: uppercase;
    letter-spacing: .14em;
    font-family: var(--font-head);
    font-size: .78rem;
    font-weight: 700;
}

.detail-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    margin: 12px 0 17px;
}

.detail-price {
    font-family: var(--font-head);
    font-size: 1.9rem;
    font-weight: 800;
    margin: 18px 0;
    color: var(--navy);
}

.stock-pill {
    display: inline-flex;
    gap: 7px;
    align-items: center;
    padding: 7px 12px;
    border-radius: 999px;
    background: #e7f8ee;
    color: var(--success);
    font-size: .8rem;
    font-weight: 700;
}

.stock-pill.out {
    background: #fff0f0;
    color: var(--danger);
}

.detail-description {
    border-top: 1px solid var(--line);
    padding-top: 24px;
    margin-top: 24px;
}

.detail-description h3 {
    margin-bottom: 10px;
}

.product-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 22px 0;
}

.meta-box {
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 12px;
}

.meta-box small {
    display: block;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: .68rem;
    font-weight: 600;
}

.option-group {
    margin: 20px 0;
}

.option-group label {
    display: block;
    font-weight: 700;
    margin-bottom: 8px;
    font-family: var(--font-head);
    letter-spacing: .06em;
    text-transform: uppercase;
}

.option-list {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.option {
    border: 1px solid var(--line);
    border-radius: 7px;
    padding: 8px 12px;
    background: #fff;
    font-size: .88rem;
}

.option:hover,
.option.active {
    border-color: var(--navy);
    color: var(--navy);
}

.purchase-row {
    display: flex;
    gap: 12px;
    margin: 28px 0;
}

.quantity-picker {
    height: 50px;
    display: flex;
    border: 1px solid var(--line);
    border-radius: 7px;
    overflow: hidden;
}

.quantity-picker button {
    width: 42px;
    border: 0;
    background: #fff;
    cursor: pointer;
    color: var(--navy);
    font-size: 1.1rem;
}

.quantity-picker button:hover {
    background: var(--cream);
}

.quantity-picker input {
    width: 48px;
    border: 0;
    text-align: center;
    outline: 0;
}

.purchase-row .btn {
    flex: 1;
}

.detail-promises {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.detail-promise {
    background: var(--cream);
    border-radius: 8px;
    padding: 13px;
    text-align: center;
    font-size: .75rem;
    font-weight: 600;
}

.detail-promise i {
    display: block;
    font-size: 1.2rem;
    color: var(--brand);
    margin-bottom: 6px;
}

/* =========================================================
   Quality Crafts product detail
   ========================================================= */

.page-product {
    background: #fff;
}

.page-product .pd-top {
    padding: 22px 0 0;
    background:
        linear-gradient(180deg, #f7f8fa 0%, #fff 100%);
}

.page-product .pd-crumbs {
    margin-bottom: 0;
    color: var(--muted);
}

.page-product .pd-main {
    padding: 28px 0 20px;
}

.page-product .product-detail {
    gap: 56px;
    align-items: start;
}

.page-product .pd-gallery {
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 18px;
    top: 110px;
}

.page-product .thumbs {
    gap: 12px;
}

.page-product .thumb {
    border-radius: 14px;
    padding: 0;
    overflow: hidden;
    border: 1px solid transparent;
    background: var(--cream);
    aspect-ratio: 4 / 5;
}

.page-product .thumb.active {
    border-color: var(--brand);
    box-shadow: 0 0 0 2px rgba(225, 38, 45, .18);
}

.page-product .thumb img {
    object-fit: contain;
}

.page-product .zoom-stage {
    aspect-ratio: 4 / 5;
    border-radius: 24px;
    background:
        linear-gradient(180deg, #f7f7f8, #eef0f3);
    box-shadow: 0 24px 60px rgba(18, 20, 23, .1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-product .zoom-stage img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    padding: 16px;
}

.page-product .pd-gallery.has-mockup {
    grid-template-columns: 1fr;
}

.page-product .mockup-stage {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(180deg, #f7f7f8, #eef0f3);
    box-shadow: 0 24px 60px rgba(18, 20, 23, .1);
    min-height: 520px;
    display: grid;
    place-items: center;
}

.page-product .mockup-stage svg {
    width: 100%;
    height: auto;
    max-height: 720px;
    display: block;
}

.page-product .mockup-stage .product-badge {
    position: absolute;
    top: 18px;
    left: 18px;
}

.page-product .mockup-photo-strip {
    display: flex;
    gap: 10px;
    margin-top: 14px;
}

.page-product .mockup-photo-strip img {
    width: 72px;
    height: 90px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid var(--line);
}

.page-product .mockup-controls,
.page-product .color-studio {
    margin: 0 0 22px;
    padding: 18px 18px 16px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: linear-gradient(180deg, #fff, #fafafa);
}

.page-product .mockup-controls-head,
.page-product .color-studio-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.page-product .color-studio-eyebrow {
    display: block;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--brand);
    margin-bottom: 4px;
}

.page-product .mockup-controls-head strong,
.page-product .color-studio-head strong {
    display: block;
    font-size: 1rem;
    color: var(--ink);
}

.page-product .mockup-control-list {
    display: grid;
    gap: 10px;
}

.page-product .mockup-control {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid var(--line);
    margin: 0;
    cursor: pointer;
}

.page-product .mockup-control-name {
    font-weight: 600;
    color: var(--ink);
}

.page-product .mockup-control-picker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.page-product .region-color {
    width: 42px;
    height: 34px;
    padding: 0;
    border: 1px solid rgba(0,0,0,.12);
    border-radius: 8px;
    background: transparent;
    cursor: pointer;
}

.page-product .mockup-control-hex {
    font-size: .78rem;
    font-weight: 600;
    color: var(--muted);
    min-width: 72px;
}

.page-product .color-studio-hint {
    margin: 12px 0 0;
    font-size: .8rem;
    color: var(--muted);
    line-height: 1.45;
}

.page-product .zoom-hint {
    background: rgba(18, 20, 23, .72);
    color: #fff;
    backdrop-filter: blur(8px);
}

.page-product .pd-info-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.page-product .pd-flag {
    display: inline-flex;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(225, 38, 45, .1);
    color: var(--brand);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.page-product .detail-title {
    font-family: var(--font-head);
    font-weight: 600;
    margin: 10px 0 18px;
    line-height: 1.08;
}

.page-product .pd-price-row {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.page-product .detail-price {
    margin: 0;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    color: var(--ink);
}

.page-product .stock-pill {
    margin: 0;
    border-radius: 999px;
    background: rgba(31, 157, 85, .1);
    color: #1f9d55;
    border: 0;
}

.page-product .stock-pill.out {
    background: rgba(225, 38, 45, .1);
    color: var(--brand);
}

.page-product .pd-lead {
    color: var(--muted);
    font-size: 1.02rem;
    line-height: 1.7;
    margin: 0 0 22px;
    max-width: 38rem;
}

.page-product .pd-meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 22px;
}

.page-product .meta-box {
    background: var(--cream);
    border-radius: 14px;
    padding: 14px 16px;
    border: 1px solid transparent;
}

.page-product .meta-box small {
    display: block;
    margin-bottom: 4px;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-size: .68rem;
    font-weight: 700;
    color: var(--muted);
}

.page-product .meta-box strong {
    color: var(--ink);
    font-size: .98rem;
}

.page-product .option-group {
    margin-bottom: 18px;
}

.page-product .option-group label {
    display: block;
    margin-bottom: 10px;
    font-family: var(--font-head);
    font-size: 1rem;
}

.page-product .option {
    border-radius: 999px;
    padding: 10px 16px;
    border: 1px solid var(--line);
    background: #fff;
    font-weight: 600;
}

.page-product .pd-buy {
    margin: 8px 0 18px;
}

.page-product .purchase-row {
    gap: 12px;
}

.page-product .quantity-picker {
    border-radius: 999px;
    overflow: hidden;
    border: 1px solid var(--line);
    background: #fff;
}

.page-product .purchase-row .btn {
    border-radius: 999px;
    min-height: 52px;
    font-size: 1rem;
}

.page-product .pd-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 24px;
}

.page-product .pd-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    font-weight: 600;
    font-size: .92rem;
}

.page-product .pd-link:hover {
    color: var(--brand);
}

.page-product .pd-promises {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.page-product .detail-promise {
    border-radius: 14px;
    padding: 16px 12px;
    background: #fff;
    border: 1px solid var(--line);
    font-size: .78rem;
}

.page-product .pd-story {
    background: var(--cream);
    padding-top: 72px;
    padding-bottom: 72px;
}

.page-product .pd-story-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 36px;
    align-items: start;
}

.page-product .detail-description {
    background: #fff;
    border-radius: 22px;
    padding: 34px;
    box-shadow: 0 16px 40px rgba(18, 20, 23, .06);
    margin: 0;
}

.page-product .detail-description h2 {
    margin-bottom: 18px;
}

.page-product .description-content {
    color: var(--muted);
    font-size: 1.02rem;
    line-height: 1.75;
}

.page-product .description-content p:last-child {
    margin-bottom: 0;
}

.page-product .pd-aside {
    display: grid;
    gap: 16px;
}

.page-product .pd-aside-card {
    background: #fff;
    border-radius: 22px;
    padding: 28px;
    box-shadow: 0 16px 40px rgba(18, 20, 23, .06);
}

.page-product .pd-aside-card.muted {
    background: var(--navy);
    color: #fff;
    box-shadow: none;
}

.page-product .pd-aside-card h3 {
    margin-bottom: 10px;
    font-size: 1.35rem;
}

.page-product .pd-aside-card.muted h3,
.page-product .pd-aside-card.muted p {
    color: #fff;
}

.page-product .pd-aside-card p {
    margin-bottom: 18px;
}

.page-product .pd-aside-card.muted p {
    color: rgba(255, 255, 255, .78);
}

.page-product .pd-related .product-card {
    border: 0;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(18, 20, 23, .06);
}

.page-product .pd-related .product-image {
    aspect-ratio: 4 / 5;
    background: linear-gradient(180deg, #f7f7f8, #eef0f3);
}

.page-product .pd-related .product-image img {
    object-fit: cover;
    padding: 0;
}

.page-product .pd-related .product-code {
    display: none;
}

@media (max-width: 1100px) {
    .page-product .pd-promises {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .page-product .product-detail {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .page-product .pd-gallery {
        position: static;
        grid-template-columns: 1fr;
    }

    .page-product .thumbs {
        order: 2;
        grid-auto-flow: column;
        grid-auto-columns: 72px;
        overflow-x: auto;
        padding-bottom: 4px;
    }

    .page-product .zoom-stage {
        order: 1;
        max-height: 70vh;
    }

    .page-product .pd-story-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .page-product .pd-meta {
        grid-template-columns: 1fr;
    }

    .page-product .purchase-row {
        flex-direction: column;
        align-items: stretch;
    }

    .page-product .quantity-picker {
        width: 100%;
        justify-content: space-between;
    }

    .page-product .detail-description,
    .page-product .pd-aside-card {
        padding: 24px;
    }
}

.cart-layout,
.checkout-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 390px;
    gap: 40px;
    align-items: start;
}

.cart-list {
    display: grid;
    gap: 14px;
}

.cart-item {
    border: 1px solid var(--line);
    background: #fff;
    border-radius: var(--radius);
    padding: 16px;
    display: grid;
    grid-template-columns: 110px minmax(0, 1fr) auto;
    gap: 20px;
    align-items: center;
}

.cart-item-image {
    width: 110px;
    height: 110px;
    background: var(--cream);
    border-radius: 8px;
    overflow: hidden;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cart-item-info h3 {
    margin-bottom: 4px;
    font-size: 1.1rem;
}

.cart-item-info small {
    color: var(--muted);
}

.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cart-item-actions strong {
    font-family: var(--font-head);
    font-size: 1.15rem;
}

.remove-btn {
    border: 0;
    background: none;
    color: var(--danger);
    cursor: pointer;
    font-size: 1.1rem;
}

.remove-btn:hover {
    color: var(--brand-2);
}

.summary-card {
    background: var(--cream);
    border-radius: 12px;
    padding: 28px;
    position: sticky;
    top: 150px;
}

.summary-card h3 {
    font-size: 1.5rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 11px 0;
    color: var(--muted);
    gap: 12px;
}

.summary-total {
    border-top: 1px solid var(--line);
    margin-top: 8px;
    padding-top: 20px;
    color: var(--ink);
    font-family: var(--font-head);
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.summary-card .btn {
    width: 100%;
    margin-top: 20px;
}

.empty-state {
    text-align: center;
    padding: 85px 20px;
    border: 1px dashed var(--line);
    border-radius: 12px;
    background: #fff;
}

.empty-state i {
    font-size: 4rem;
    color: var(--brand);
}

.empty-state h2 {
    margin: 12px 0 8px;
}

.form-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 32px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-group {
    display: grid;
    gap: 7px;
}

.form-group.full {
    grid-column: 1 / -1;
}

.form-group label,
.form-label {
    font-weight: 600;
    font-size: .88rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    border: 1px solid var(--line);
    border-radius: 7px;
    padding: 13px 14px;
    outline: 0;
    background: #fff;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(224, 30, 55, .1);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.order-mini {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 11px 0;
    border-bottom: 1px solid var(--line);
}

.order-mini img {
    width: 55px;
    height: 55px;
    object-fit: contain;
    background: #fff;
    border-radius: 8px;
}

.order-mini div {
    min-width: 0;
    flex: 1;
}

.order-mini strong {
    font-size: .85rem;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.order-mini small {
    color: var(--muted);
}

.thank-you {
    text-align: center;
    max-width: 760px;
    margin: auto;
}

.success-mark {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: #e7f6ef;
    color: var(--success);
    display: grid;
    place-items: center;
    font-size: 2.5rem;
    margin: 0 auto 25px;
}

.order-number {
    display: inline-block;
    background: var(--cream);
    padding: 10px 16px;
    border-radius: 999px;
    font-weight: 700;
    font-family: var(--font-head);
    letter-spacing: .08em;
    text-transform: uppercase;
}

.status-timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin: 35px 0;
    position: relative;
}

.status-timeline::before {
    content: "";
    position: absolute;
    top: 18px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: var(--line);
}

.status-step {
    position: relative;
    z-index: 1;
    text-align: center;
}

.status-step span {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #d5dbe6;
    color: #fff;
    display: grid;
    place-items: center;
    margin: auto;
}

.status-step.active span {
    background: var(--brand);
}

.status-step strong {
    display: block;
    margin-top: 9px;
    font-size: .8rem;
}

.tracking-box {
    max-width: 760px;
    margin: -45px auto 0;
    position: relative;
    background: #fff;
    box-shadow: var(--shadow);
    border-radius: 12px;
    padding: 28px;
    z-index: 2;
}

.tracking-form {
    display: flex;
    gap: 10px;
}

.tracking-form input {
    flex: 1;
    border: 1px solid var(--line);
    border-radius: 7px;
    padding: 14px 20px;
    outline: 0;
}

.tracking-form input:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(224, 30, 55, .1);
}

.tracking-result {
    max-width: 850px;
    margin: 45px auto 0;
}

.policy-content {
    max-width: 850px;
    margin: auto;
}

.policy-content h2 {
    font-size: 1.55rem;
    margin-top: 38px;
}

.policy-content ul {
    color: var(--muted);
    padding-left: 1.2em;
}

.policy-content li {
    margin: 8px 0;
}

.newsletter {
    background: var(--navy);
    color: #fff;
    padding: 64px 0;
    position: relative;
    overflow: hidden;
}

.newsletter::before {
    content: "";
    position: absolute;
    width: 340px;
    height: 340px;
    border: 55px solid rgba(224, 30, 55, .12);
    border-radius: 50%;
    right: -90px;
    top: -140px;
}

.newsletter-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.newsletter h2 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    margin: 0;
    max-width: 620px;
    color: #fff;
}

.newsletter-form {
    display: flex;
    background: #fff;
    border-radius: 8px;
    padding: 5px;
    min-width: 420px;
}

.newsletter-form input {
    flex: 1;
    min-width: 0;
    border: 0;
    outline: 0;
    padding: 0 16px;
    border-radius: 7px;
}

.newsletter-form .btn {
    border-radius: 7px;
}

.site-footer {
    background: var(--navy);
    color: rgba(255, 255, 255, .72);
    padding: 75px 0 25px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.7fr repeat(3, 1fr);
    gap: 65px;
}

.site-footer .brand {
    color: #fff;
    margin-bottom: 18px;
}

.site-footer .brand-logo {
    height: 72px;
    max-width: 220px;
}

.site-footer .brand img {
    display: block;
}

.footer-brand p {
    max-width: 340px;
    color: rgba(255, 255, 255, .62);
}

.footer-grid > div:not(.footer-brand) {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-grid h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 12px;
    position: relative;
}

.footer-grid h4::after {
    content: "";
    display: block;
    width: 28px;
    height: 2px;
    background: var(--brand);
    margin-top: 8px;
}

.footer-grid a,
.footer-grid p {
    color: rgba(255, 255, 255, .62);
    font-size: .88rem;
    margin: 0;
}

.footer-grid a:hover {
    color: #fff;
}

.footer-grid i {
    margin-right: 8px;
    color: var(--brand);
}

.socials {
    display: flex;
    gap: 9px;
    margin-top: 18px;
}

.socials a {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, .16);
    display: grid;
    place-items: center;
    color: #fff;
    transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

.socials a i {
    margin-right: 0;
    color: #fff;
    font-size: 1rem;
    line-height: 1;
}

.socials a:hover,
.socials a:focus-visible {
    background: var(--brand);
    border-color: var(--brand);
    color: #fff;
    transform: translateY(-2px);
}

.socials a:hover i,
.socials a:focus-visible i {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    margin-top: 55px;
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    color: rgba(255, 255, 255, .45);
    font-size: .78rem;
    gap: 16px;
}

.whatsapp-float {
    position: fixed;
    z-index: 1900;
    left: 22px;
    bottom: 22px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--whatsapp);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 1.7rem;
    box-shadow: 0 10px 28px rgba(37, 211, 102, .42);
    transition: .25s;
}

.whatsapp-float:hover {
    transform: translateY(-3px) scale(1.05);
    color: #fff;
}

.toast {
    position: fixed;
    z-index: 2000;
    right: 25px;
    bottom: 25px;
    background: var(--navy);
    color: #fff;
    border-radius: 8px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow);
    transform: translateY(30px);
    opacity: 0;
    pointer-events: none;
    transition: .3s;
}

.toast.show {
    transform: none;
    opacity: 1;
}

.toast i {
    color: #7fe0b6;
}

.toast.error i {
    color: #ff8f8f;
}

.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition:
        opacity .8s cubic-bezier(.22, 1, .36, 1),
        transform .8s cubic-bezier(.22, 1, .36, 1);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform;
}

.reveal.reveal-left {
    transform: translateX(-36px);
}

.reveal.reveal-right {
    transform: translateX(36px);
}

.reveal.reveal-scale {
    transform: translateY(24px) scale(.96);
}

.reveal.reveal-fade {
    transform: none;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

.reveal-stagger > .reveal:nth-child(1) { --reveal-delay: 0ms; }
.reveal-stagger > .reveal:nth-child(2) { --reveal-delay: 90ms; }
.reveal-stagger > .reveal:nth-child(3) { --reveal-delay: 180ms; }
.reveal-stagger > .reveal:nth-child(4) { --reveal-delay: 270ms; }
.reveal-stagger > .reveal:nth-child(5) { --reveal-delay: 360ms; }
.reveal-stagger > .reveal:nth-child(6) { --reveal-delay: 450ms; }
.reveal-stagger > .reveal:nth-child(7) { --reveal-delay: 540ms; }
.reveal-stagger > .reveal:nth-child(8) { --reveal-delay: 630ms; }
.reveal-stagger > .reveal:nth-child(n+9) { --reveal-delay: 700ms; }

.product-grid.reveal-stagger > .reveal:nth-child(1),
.shop-product-grid.reveal-stagger > .reveal:nth-child(1) { --reveal-delay: 0ms; }
.product-grid.reveal-stagger > .reveal:nth-child(2),
.shop-product-grid.reveal-stagger > .reveal:nth-child(2) { --reveal-delay: 70ms; }
.product-grid.reveal-stagger > .reveal:nth-child(3),
.shop-product-grid.reveal-stagger > .reveal:nth-child(3) { --reveal-delay: 140ms; }
.product-grid.reveal-stagger > .reveal:nth-child(4),
.shop-product-grid.reveal-stagger > .reveal:nth-child(4) { --reveal-delay: 210ms; }
.product-grid.reveal-stagger > .reveal:nth-child(5),
.shop-product-grid.reveal-stagger > .reveal:nth-child(5) { --reveal-delay: 280ms; }
.product-grid.reveal-stagger > .reveal:nth-child(6),
.shop-product-grid.reveal-stagger > .reveal:nth-child(6) { --reveal-delay: 350ms; }
.product-grid.reveal-stagger > .reveal:nth-child(7),
.shop-product-grid.reveal-stagger > .reveal:nth-child(7) { --reveal-delay: 420ms; }
.product-grid.reveal-stagger > .reveal:nth-child(8),
.shop-product-grid.reveal-stagger > .reveal:nth-child(8) { --reveal-delay: 490ms; }

.skeleton {
    background: linear-gradient(90deg, #eef1f6, #f8f9fc, #eef1f6);
    background-size: 200%;
    animation: skeleton 1.5s infinite;
}

@keyframes skeleton {
    to { background-position: -200%; }
}

.card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 22px;
}

@media (max-width: 1050px) {
    .header-main {
        gap: 16px;
    }

    .main-nav,
    .desktop-nav {
        gap: 16px;
        font-size: .82rem;
    }

    .header-search {
        min-width: 140px;
        max-width: 180px;
    }

    .header-actions {
        gap: 8px;
    }

    .header-action span {
        display: none;
    }

    .header-catalogue-btn {
        padding: 0 10px;
        font-size: .68rem;
    }

    .header-catalogue-btn .cat-full {
        display: none;
    }

    .header-catalogue-btn .cat-short {
        display: inline;
    }

    .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .hero-product.one {
        width: 270px;
    }

    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .story-grid {
        gap: 45px;
    }

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

    .collection-grid,
    .process-grid {
        grid-template-columns: 1fr 1fr;
    }

    .shop-layout {
        grid-template-columns: 240px 1fr;
    }

    .cart-layout,
    .checkout-layout {
        grid-template-columns: 1fr 340px;
    }

    .footer-grid {
        gap: 36px;
    }
}

@media (max-width: 800px) {
    .shell {
        width: min(100% - 28px, 1240px);
    }

    .section {
        padding: 70px 0;
    }

    .top-bar-inner > span,
    .announcement-inner > span {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .top-bar-links a:first-child,
    .announcement-inner div a:first-child {
        display: none;
    }

    .header-main {
        height: 72px;
    }

    .header-main .brand img,
    .header-main .brand-logo {
        height: 46px;
        max-width: 150px;
    }

    .header-search,
    .desktop-nav,
    .header-main > .main-nav {
        display: none;
    }

    .header-main .header-cta {
        display: none;
    }

    .header-actions {
        gap: 6px;
    }

    .mobile-toggle {
        display: grid;
        place-items: center;
    }

    .nav-wrap {
        display: none;
        position: absolute;
        left: 0;
        right: 0;
        background: #fff;
        box-shadow: var(--shadow);
    }

    .nav-wrap.open {
        display: block;
    }

    .main-nav {
        height: auto;
        flex-direction: column;
        align-items: flex-start;
        padding: 22px 14px;
        gap: 17px;
        justify-content: flex-start;
    }

    .main-nav .nav-link::after,
    .desktop-nav .nav-link::after {
        display: none;
    }

    .nav-promise {
        margin: 5px 0 0;
    }

    .hero-home,
    .jl-hero {
        min-height: auto;
    }

    .jl-hero > .shell,
    .jl-hero-inner {
        padding: 72px 0 80px;
        max-width: none;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        padding: 65px 0 85px;
    }

    .hero-visual {
        height: 420px;
    }

    .hero-product.one {
        right: 8%;
        width: 265px;
        height: 330px;
    }

    .hero-product.two {
        width: 150px;
        height: 180px;
    }

    .hero-product.three {
        right: 2%;
        width: 110px;
        height: 135px;
    }

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

    .benefit:nth-child(2) {
        border-right: 0;
    }

    .benefit:nth-child(-n+2) {
        border-bottom: 1px solid var(--line);
    }

    .category-grid,
    .story-grid,
    .testimonial-grid,
    .collection-grid {
        grid-template-columns: 1fr;
    }

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

    .story-media {
        min-height: 440px;
    }

    .story-media img {
        min-height: 370px;
    }

    .shop-layout {
        grid-template-columns: 1fr;
    }

    .filter-sidebar {
        display: none;
        position: fixed;
        z-index: 1200;
        inset: 0 0 0 auto;
        width: min(360px, 90%);
        top: 0;
        border-radius: 0;
        overflow: auto;
        box-shadow: var(--shadow);
    }

    .filter-sidebar.open {
        display: block;
    }

    .filter-sidebar .mobile-toggle {
        display: grid;
        place-items: center;
    }

    .filter-mobile {
        display: inline-flex;
    }

    .product-detail {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .gallery {
        position: static;
    }

    .cart-layout,
    .checkout-layout {
        grid-template-columns: 1fr;
    }

    .summary-card {
        position: static;
    }

    .newsletter-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .newsletter-form {
        min-width: 0;
        width: 100%;
    }

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

    .footer-brand {
        grid-column: 1 / -1;
    }

    .process-grid,
    .why-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 560px) {
    h1 {
        font-size: 2.35rem;
    }

    .top-bar-links,
    .announcement-inner div {
        gap: 10px;
    }

    .top-bar-links a:not(:last-child),
    .announcement-inner div a:first-child {
        display: none;
    }

    .brand span {
        display: none;
    }

    .hero-copy p,
    .jl-hero p {
        font-size: 1rem;
    }

    .hero-visual {
        height: 350px;
    }

    .hero-product.one {
        width: 220px;
        height: 280px;
    }

    .hero-product.two {
        width: 125px;
        height: 150px;
    }

    .hero-product.three {
        display: none;
    }

    .floating-chip {
        left: 0;
        top: 15px;
    }

    .benefit-grid,
    .jl-stats,
    .why-grid,
    .process-grid,
    .collection-grid {
        grid-template-columns: 1fr;
        padding: 12px;
    }

    .jl-stats {
        padding: 0;
        gap: 12px;
    }

    .benefit {
        border-right: 0;
        border-bottom: 1px solid var(--line) !important;
    }

    .benefit:last-child {
        border: 0 !important;
    }

    .section-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .category-feature {
        min-height: 320px;
        padding: 26px;
    }

    .category-feature .category-icon {
        width: 85px;
        height: 85px;
        right: 25px;
        font-size: 2.3rem;
    }

    .product-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .product-body {
        padding: 13px;
    }

    .product-title {
        font-size: .84rem;
    }

    .product-code {
        display: none;
    }

    .product-bottom {
        align-items: flex-end;
    }

    .price {
        font-size: .95rem;
    }

    .icon-btn {
        width: 37px;
        height: 37px;
    }

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

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

    .purchase-row {
        flex-wrap: wrap;
    }

    .purchase-row .btn {
        flex-basis: 100%;
    }

    .detail-promises,
    .product-meta,
    .story-points,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-group.full {
        grid-column: auto;
    }

    .cart-item {
        grid-template-columns: 78px 1fr;
    }

    .cart-item-image {
        width: 78px;
        height: 78px;
    }

    .cart-item-actions {
        grid-column: 1 / -1;
        justify-content: space-between;
    }

    .tracking-form {
        flex-direction: column;
    }

    .newsletter-form {
        border-radius: 8px;
        flex-direction: column;
        padding: 7px;
    }

    .newsletter-form input {
        height: 48px;
    }

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

    .footer-brand {
        grid-column: auto;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
    }

    .status-timeline strong {
        font-size: .68rem;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        left: 14px;
        bottom: 14px;
        font-size: 1.5rem;
    }

    .toast {
        right: 14px;
        left: 14px;
        bottom: 76px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
    .reveal,
    .reveal.reveal-left,
    .reveal.reveal-right,
    .reveal.reveal-scale,
    .reveal.reveal-fade {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* =========================================================
   Quality Crafts home — video hero + fashion sections
   ========================================================= */

.btn-ghost {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .42);
    border-radius: 999px;
    padding: 14px 24px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: .25s ease;
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, .1);
    border-color: #fff;
    color: #fff;
}

.page-home .top-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1200;
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    color: rgba(255, 255, 255, .88);
}

.page-home .top-bar-inner a,
.page-home .top-bar-inner > span {
    color: rgba(255, 255, 255, .88);
}

.page-home.hero-passed .top-bar {
    display: none;
}

.page-home .site-header {
    position: absolute;
    top: var(--topbar-h);
    left: 0;
    right: 0;
    z-index: 1100;
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    backdrop-filter: none;
    box-shadow: none;
}

.page-home .site-header .brand,
.page-home .site-header .main-nav .nav-link,
.page-home .site-header .header-action,
.page-home .site-header .mobile-toggle {
    color: #fff;
}

.page-home .site-header .header-catalogue-btn {
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .28);
    color: #fff;
}

.page-home .site-header .header-catalogue-btn:hover {
    background: var(--brand);
    border-color: var(--brand);
    color: #fff;
}

.page-home .site-header .brand-text strong {
    color: #fff;
}

.page-home .site-header .main-nav .nav-link:hover,
.page-home .site-header .main-nav .nav-link.active,
.page-home .site-header .nav-item.has-menu:hover > .nav-link {
    color: #fff;
}

.page-home .site-header .main-nav .nav-link.active::after,
.page-home .site-header .main-nav .nav-link:hover::after,
.page-home .site-header .nav-item.has-menu:hover > .nav-link::after {
    background: var(--brand);
}

.page-home .site-header .header-search {
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .2);
    color: #fff;
}

.page-home .site-header .header-search input,
.page-home .site-header .header-search i {
    color: #fff;
}

.page-home .site-header .header-search input::placeholder {
    color: rgba(255, 255, 255, .7);
}

.page-home .site-header.is-solid,
.page-home .site-header.scrolled.is-solid {
    position: fixed;
    top: 0;
    background: rgba(255, 255, 255, .97);
    border-bottom-color: var(--line);
    backdrop-filter: blur(16px);
    box-shadow: 0 8px 28px rgba(18, 20, 23, .08);
}

.page-home .site-header.is-solid .brand,
.page-home .site-header.is-solid .main-nav .nav-link,
.page-home .site-header.is-solid .header-action,
.page-home .site-header.is-solid .mobile-toggle {
    color: var(--navy);
}

.page-home .site-header.is-solid .header-catalogue-btn {
    background: var(--cream);
    border-color: var(--line);
    color: var(--navy);
}

.page-home .site-header.is-solid .header-catalogue-btn:hover {
    background: var(--brand);
    border-color: var(--brand);
    color: #fff;
}

.page-home .site-header.is-solid .brand-text strong {
    color: var(--navy);
}

.page-home .site-header.is-solid .header-search {
    background: var(--cream);
    border-color: var(--line);
    color: var(--ink);
}

.page-home .site-header.is-solid .header-search input,
.page-home .site-header.is-solid .header-search i {
    color: var(--ink);
}

.page-home .site-header .header-cta {
    background: var(--brand);
    color: #fff;
    border-color: var(--brand);
}

.page-home .site-header.is-solid .header-cta {
    background: var(--brand);
    color: #fff;
}

.qc-hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    display: grid;
    place-items: center;
    overflow: hidden;
    color: #fff;
    background: #07080a;
}

.qc-hero-media,
.qc-hero-canvas,
.qc-hero-slides,
.qc-hero-slide,
.qc-hero-shade,
.qc-hero-grain {
    position: absolute;
    inset: 0;
}

.qc-hero-canvas {
    display: none;
}

.qc-hero-slides {
    z-index: 0;
    overflow: hidden;
    background: #07080a;
}

.qc-hero-slide {
    background-position: center 42%;
    background-size: cover;
    opacity: 0;
    transform: scale(1.08);
    filter: saturate(1.05) contrast(1.06);
    transition: opacity 1.15s ease;
}

.qc-hero-slide.is-active {
    opacity: 1;
    animation: qcHeroKen 7s ease-out forwards;
}

@keyframes qcHeroKen {
    from { transform: scale(1.08) translate3d(0, 0, 0); }
    to { transform: scale(1.16) translate3d(-1.2%, -1%, 0); }
}

.qc-hero-shade {
    z-index: 2;
    background:
        radial-gradient(ellipse at center, transparent 28%, rgba(0, 0, 0, .38) 100%),
        linear-gradient(180deg, rgba(7, 8, 10, .55) 0%, transparent 24%, transparent 58%, rgba(7, 8, 10, .72) 100%);
    pointer-events: none;
}

.qc-hero-grain {
    z-index: 3;
    opacity: .12;
    pointer-events: none;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

.qc-hero-copy {
    position: relative;
    z-index: 4;
    text-align: center;
    padding: 0 24px 8px;
    max-width: 980px;
}

.qc-hero-kicker,
.qc-hero-title,
.qc-hero-bar,
.qc-hero-sub,
.qc-hero-cta {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity .55s ease, transform .55s ease;
}

.qc-hero-kicker.is-in,
.qc-hero-title.is-in,
.qc-hero-bar.is-in,
.qc-hero-sub.is-in,
.qc-hero-cta.is-in {
    opacity: 1;
    transform: none;
}

.qc-hero-kicker {
    font-family: var(--font-body);
    font-size: clamp(1.4rem, 4.6vw, 3.4rem);
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: #e1262d;
    text-shadow: 0 10px 30px rgba(0, 0, 0, .45);
    margin: 0 0 18px;
}

.qc-hero-title {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
}

.qc-hero-bar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: min(520px, 86vw);
    min-height: 58px;
    padding: 0 28px;
    margin: 0 auto 16px;
    background: #e1262d;
    color: #fff;
    font-family: var(--font-body);
    font-size: clamp(1.15rem, 3vw, 2rem);
    font-weight: 800;
    letter-spacing: .22em;
    text-transform: uppercase;
    box-shadow: 0 18px 40px rgba(225, 38, 45, .35);
}

.qc-hero-sub {
    margin: 0 0 28px;
    color: rgba(255, 255, 255, .88);
    font-size: clamp(.95rem, 1.6vw, 1.12rem);
    letter-spacing: .08em;
    text-transform: uppercase;
    font-style: italic;
    font-weight: 500;
}

.qc-hero-cta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.qc-hero-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 48px;
    padding: 0 22px;
    border: 1px solid rgba(255, 255, 255, .32);
    background: rgba(10, 11, 13, .42);
    backdrop-filter: blur(12px);
    color: #fff;
    font-family: var(--font-body);
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    transition: background .25s ease, border-color .25s ease, transform .25s ease;
}

.qc-hero-chip.is-primary {
    background: #fff;
    color: #111;
    border-color: #fff;
}

.qc-hero-chip:hover {
    background: var(--brand);
    border-color: var(--brand);
    color: #fff;
    transform: translateY(-2px);
}

.qc-hero-nav {
    position: absolute;
    top: 50%;
    z-index: 5;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, .22);
    background: rgba(7, 8, 10, .35);
    color: #fff;
    display: grid;
    place-items: center;
    cursor: pointer;
    transform: translateY(-50%);
    backdrop-filter: blur(8px);
    transition: background .2s ease, border-color .2s ease;
}

.qc-hero-nav:hover {
    background: var(--brand);
    border-color: var(--brand);
}

.qc-hero-nav.prev { left: 18px; }
.qc-hero-nav.next { right: 18px; }

.qc-hero-dots {
    position: absolute;
    left: 50%;
    bottom: 28px;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    gap: 8px;
}

.qc-hero-dots button {
    width: 34px;
    height: 3px;
    border: 0;
    padding: 0;
    background: rgba(255, 255, 255, .32);
    cursor: pointer;
    transition: background .25s ease, width .25s ease;
}

.qc-hero-dots button.is-active {
    width: 52px;
    background: #fff;
}

.qc-hero-progress {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    z-index: 6;
    background: rgba(255, 255, 255, .12);
}

.qc-hero-progress span {
    display: block;
    height: 100%;
    width: 0;
    background: #e1262d;
    transform-origin: left center;
}

@keyframes qcHeroProgress {
    from { width: 0; }
    to { width: 100%; }
}

.qc-hero-content,
.qc-hero-brand,
.qc-hero-lead,
.qc-hero-actions,
.qc-scroll-cue,
.qc-hero-stage {
    display: none;
}

.qc-collections {
    padding: 88px 0 0;
    background: #fff;
}

.qc-duo-stage {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: 72vh;
    gap: 0;
}

.qc-duo-panel {
    position: relative;
    min-height: 580px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    color: #fff;
    background: #0b0d10;
    isolation: isolate;
}

.qc-duo-panel::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--panel-image);
    background-size: cover;
    background-position: center 28%;
    transition: transform .8s ease;
    z-index: -2;
}

.qc-duo-overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(180deg, rgba(10, 11, 13, .12) 0%, rgba(10, 11, 13, .78) 100%),
        linear-gradient(90deg, rgba(225, 38, 45, .22), transparent 58%);
    transition: background .35s ease;
}

.qc-duo-panel:hover::after {
    transform: scale(1.06);
}

.qc-duo-panel:hover .qc-duo-overlay {
    background:
        linear-gradient(180deg, rgba(10, 11, 13, .16) 0%, rgba(10, 11, 13, .84) 100%),
        linear-gradient(90deg, rgba(225, 38, 45, .36), transparent 62%);
}

.qc-duo-content {
    position: relative;
    z-index: 1;
    padding: 42px 40px;
    max-width: 520px;
}

.qc-duo-index {
    display: block;
    font-family: var(--font-head);
    font-size: 2rem;
    opacity: .45;
    margin-bottom: 14px;
}

.qc-duo-content small {
    display: block;
    letter-spacing: .16em;
    text-transform: uppercase;
    font-size: .72rem;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, .78);
}

.qc-duo-content h3 {
    color: #fff;
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    margin-bottom: 12px;
}

.qc-duo-content p {
    color: rgba(255, 255, 255, .82);
    margin-bottom: 18px;
    max-width: 28rem;
}

.qc-duo-subs {
    list-style: none;
    padding: 0;
    margin: 0 0 22px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.qc-duo-subs li {
    padding: 7px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .28);
    background: rgba(255, 255, 255, .08);
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .02em;
}

.qc-duo-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    letter-spacing: .04em;
}

.qc-duo-panel:hover .qc-duo-cta {
    color: #fff;
    gap: 12px;
}

/* legacy 3-up panels kept for safety if reused elsewhere */
.qc-collection-stage {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    min-height: 62vh;
}

.qc-collection-panel {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 34px;
    color: #fff;
    background:
        linear-gradient(180deg, rgba(10, 11, 13, .1), rgba(10, 11, 13, .78)),
        var(--panel-image) center/cover no-repeat;
    transition: transform .45s ease, filter .45s ease;
}

.qc-collection-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 35%, rgba(225, 38, 45, .28));
    opacity: 0;
    transition: .35s ease;
}

.qc-collection-panel:hover {
    filter: saturate(1.08);
}

.qc-collection-panel:hover::before {
    opacity: 1;
}

.qc-collection-index {
    position: absolute;
    top: 24px;
    left: 24px;
    font-family: var(--font-head);
    font-size: 2rem;
    opacity: .55;
}

.qc-collection-copy {
    position: relative;
    z-index: 1;
}

.qc-collection-copy small {
    display: block;
    letter-spacing: .16em;
    text-transform: uppercase;
    font-size: .72rem;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, .78);
}

.qc-collection-copy h3 {
    color: #fff;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    margin-bottom: 14px;
}

.qc-collection-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    letter-spacing: .04em;
}

.qc-featured {
    background: var(--cream);
}

.qc-featured-row-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin: 0 0 18px;
}

.qc-featured-row-head h3 {
    margin: 0;
    font-family: var(--font-head);
    font-size: clamp(1.35rem, 2vw, 1.75rem);
    font-weight: 600;
}

.qc-lookbook {
    min-height: 72vh;
    display: grid;
    align-items: end;
    background:
        linear-gradient(90deg, rgba(10, 11, 13, .72), rgba(10, 11, 13, .28)),
        var(--lookbook-image) center/cover no-repeat;
    color: #fff;
}

.qc-lookbook-inner {
    padding: 92px 0;
    max-width: 640px;
}

.qc-lookbook h2,
.qc-lookbook p {
    color: #fff;
}

.qc-lookbook p {
    color: rgba(255, 255, 255, .82);
    margin-bottom: 28px;
}

.qc-atelier-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 48px;
    align-items: center;
}

.qc-atelier-media {
    overflow: hidden;
    border-radius: 24px;
    min-height: 560px;
    box-shadow: var(--shadow);
}

.qc-atelier-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 560px;
    transition: transform 1.1s ease;
}

.qc-atelier-media:hover img {
    transform: scale(1.05);
}

.qc-atelier-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
}

.qc-atelier-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
    font-weight: 500;
}

.qc-atelier-list i {
    color: var(--brand);
    font-size: 1.1rem;
}

.qc-promise {
    background:
        radial-gradient(circle at 12% 20%, rgba(225, 38, 45, .22), transparent 34%),
        linear-gradient(135deg, #121417 0%, #1c1f25 100%);
    color: #fff;
    padding: 96px 0;
}

.qc-promise-inner {
    max-width: 720px;
}

.qc-promise h2,
.qc-promise p {
    color: #fff;
}

.qc-promise p {
    color: rgba(255, 255, 255, .78);
    margin-bottom: 28px;
}

.qc-promise-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.qc-faq {
    background: var(--cream);
}

.qc-faq .section-head {
    margin-bottom: 36px;
}

.qc-faq .faq-item {
    box-shadow: var(--shadow-sm);
    border-color: transparent;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.qc-faq .faq-item[open] {
    border-color: rgba(225, 38, 45, .22);
    box-shadow: 0 14px 36px rgba(18, 20, 23, .08);
}

.qc-faq .faq-item summary {
    font-family: var(--font-head);
    font-weight: 600;
    color: var(--ink);
}

@keyframes qcRise {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes qcVideoDrift {
    from { transform: scale(1.04) translate3d(0, 0, 0); }
    to { transform: scale(1.1) translate3d(-1.5%, -1%, 0); }
}

@keyframes qcScrollDot {
    0%, 100% { transform: translateY(0); opacity: .35; }
    50% { transform: translateY(12px); opacity: 1; }
}

@media (max-width: 1100px) {
    .qc-duo-stage,
    .qc-collection-stage {
        grid-template-columns: 1fr;
    }

    .qc-duo-panel,
    .qc-collection-panel {
        min-height: 420px;
    }

    .qc-duo-content {
        padding: 32px 24px;
    }

    .qc-atelier-grid {
        grid-template-columns: 1fr;
    }

    .qc-atelier-media,
    .qc-atelier-media img {
        min-height: 420px;
    }
}

@media (max-width: 900px) {
    .page-home .site-header .header-search {
        display: none;
    }

    .qc-hero-nav {
        display: none;
    }

    .qc-hero-kicker {
        letter-spacing: .12em;
    }

    .qc-hero-bar {
        min-height: 48px;
        letter-spacing: .12em;
    }

    .qc-hero-dots {
        bottom: 18px;
    }

    .qc-lookbook {
        min-height: 58vh;
    }
}

@media (max-width: 640px) {
    .brand-text small {
        display: none;
    }

    .qc-hero-chip {
        width: auto;
        min-width: 148px;
        justify-content: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    .qc-hero-canvas {
        display: none;
    }

    .qc-hero-slide.is-active {
        animation: none;
        transform: scale(1.08);
    }
}

/* =========================================================
   Quality Crafts about
   ========================================================= */

.page-about .about-hero {
    position: relative;
    min-height: min(78vh, 720px);
    display: grid;
    align-items: end;
    overflow: hidden;
    color: #fff;
    background:
        linear-gradient(115deg, rgba(10, 11, 13, .78) 0%, rgba(10, 11, 13, .35) 55%, rgba(225, 38, 45, .22) 100%),
        var(--about-hero-image) center/cover no-repeat;
}

.page-about .about-hero-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 11, 13, .2), rgba(10, 11, 13, .62));
    pointer-events: none;
}

.page-about .about-hero-inner {
    position: relative;
    z-index: 1;
    padding: 110px 0 72px;
    max-width: 720px;
}

.page-about .about-hero .breadcrumbs {
    color: rgba(255, 255, 255, .7);
}

.page-about .about-hero .breadcrumbs a:hover {
    color: #fff;
}

.page-about .about-hero-brand {
    font-family: var(--font-head);
    font-size: clamp(2.6rem, 6vw, 4.6rem);
    line-height: .92;
    margin: 0 0 16px;
    color: #fff;
}

.page-about .about-hero h1 {
    color: #fff;
    font-size: clamp(1.9rem, 4vw, 3.2rem);
    max-width: 14ch;
    margin-bottom: 16px;
}

.page-about .about-hero p {
    color: rgba(255, 255, 255, .82);
    max-width: 34rem;
    font-size: 1.06rem;
    margin: 0;
}

.page-about .about-story-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 48px;
    align-items: center;
}

.page-about .about-story-media {
    overflow: hidden;
    border-radius: 24px;
    min-height: 560px;
    box-shadow: var(--shadow);
}

.page-about .about-story-media img {
    width: 100%;
    height: 100%;
    min-height: 560px;
    object-fit: cover;
    transition: transform 1.1s ease;
}

.page-about .about-story-media:hover img {
    transform: scale(1.04);
}

.page-about .about-story-copy .lead {
    font-size: 1.12rem;
    color: var(--ink);
}

.page-about .about-checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
}

.page-about .about-checklist li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
    font-weight: 500;
}

.page-about .about-checklist i {
    color: var(--brand);
    font-size: 1.1rem;
}

.page-about .about-values {
    background:
        radial-gradient(circle at 12% 20%, rgba(225, 38, 45, .22), transparent 34%),
        linear-gradient(135deg, #121417 0%, #1c1f25 100%);
    color: #fff;
    padding: 96px 0;
}

.page-about .about-values .section-head {
    margin-bottom: 42px;
}

.page-about .about-values h2,
.page-about .about-values p {
    color: #fff;
}

.page-about .about-values .section-head p {
    color: rgba(255, 255, 255, .72);
}

.page-about .about-value-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.page-about .about-value {
    padding: 28px 24px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 20px;
    background: rgba(255, 255, 255, .04);
}

.page-about .about-value-index {
    display: block;
    font-family: var(--font-head);
    font-size: 1.8rem;
    color: rgba(255, 255, 255, .35);
    margin-bottom: 18px;
}

.page-about .about-value h3 {
    color: #fff;
    margin-bottom: 12px;
}

.page-about .about-value p {
    margin: 0;
    color: rgba(255, 255, 255, .72);
}

.page-about .about-lookbook {
    padding: 88px 0 0;
    background: #fff;
}

.page-about .about-look-stage {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    min-height: 52vh;
}

.page-about .about-look {
    margin: 0;
    min-height: 460px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 28px;
    color: #fff;
    background:
        linear-gradient(180deg, rgba(10, 11, 13, .05), rgba(10, 11, 13, .72)),
        var(--look-image) center/cover no-repeat;
    transition: filter .35s ease;
}

.page-about .about-look:hover {
    filter: saturate(1.08);
}

.page-about .about-look figcaption {
    font-family: var(--font-head);
    font-size: clamp(1.5rem, 2.4vw, 2.1rem);
    font-weight: 600;
}

.page-about .about-promise {
    background: var(--cream);
}

.page-about .about-promise-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.page-about .about-promise-media {
    overflow: hidden;
    border-radius: 24px;
    min-height: 460px;
    box-shadow: var(--shadow);
}

.page-about .about-promise-media img {
    width: 100%;
    height: 100%;
    min-height: 460px;
    object-fit: cover;
}

.page-about .about-promise-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 8px;
}

@media (max-width: 1100px) {
    .page-about .about-value-row,
    .page-about .about-look-stage {
        grid-template-columns: 1fr;
    }

    .page-about .about-look {
        min-height: 320px;
    }
}

@media (max-width: 900px) {
    .page-about .about-story-grid,
    .page-about .about-promise-grid {
        grid-template-columns: 1fr;
    }

    .page-about .about-story-media,
    .page-about .about-story-media img,
    .page-about .about-promise-media,
    .page-about .about-promise-media img {
        min-height: 380px;
    }

    .page-about .about-hero-inner {
        padding: 88px 0 56px;
    }

    .page-about .about-hero h1 {
        max-width: none;
    }
}

@media (max-width: 640px) {
    .page-about .about-promise-actions {
        width: 100%;
    }

    .page-about .about-promise-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Inquiry modal */
body.inquiry-open {
    overflow: hidden;
}

.inquiry-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: grid;
    place-items: center;
    padding: 20px;
}

.inquiry-modal[hidden] {
    display: none !important;
}

.inquiry-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 11, 13, .58);
    backdrop-filter: blur(4px);
}

.inquiry-dialog {
    position: relative;
    z-index: 1;
    width: min(560px, 100%);
    max-height: min(92vh, 760px);
    overflow: auto;
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 28px 70px rgba(10, 11, 13, .28);
    padding: 28px 26px 24px;
    animation: inquiryIn .28s ease;
}

@keyframes inquiryIn {
    from { opacity: 0; transform: translateY(12px) scale(.98); }
    to { opacity: 1; transform: none; }
}

.inquiry-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 999px;
    background: #f3f4f6;
    color: var(--navy);
    display: grid;
    place-items: center;
    cursor: pointer;
}

.inquiry-close:hover {
    background: var(--brand);
    color: #fff;
}

.inquiry-head {
    padding-right: 36px;
    margin-bottom: 18px;
}

.inquiry-head h2 {
    margin: 0 0 8px;
    font-size: clamp(1.5rem, 3vw, 1.9rem);
}

.inquiry-head p {
    margin: 0;
    color: var(--muted);
    font-size: .95rem;
}

.inquiry-product-chip {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px;
    border-radius: 14px;
    background: linear-gradient(135deg, #fafafa, #f3f4f6);
    border: 1px solid rgba(18, 20, 23, .06);
    margin-bottom: 16px;
}

.inquiry-product-chip img {
    width: 64px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
    background: #e8eaee;
}

.inquiry-product-chip strong {
    display: block;
    font-family: var(--font-head);
    font-size: 1rem;
    margin-bottom: 4px;
    color: var(--navy);
}

.inquiry-product-chip small {
    color: var(--muted);
    font-size: .8rem;
}

.inquiry-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.inquiry-grid label {
    display: flex;
    flex-direction: column;
    gap: 7px;
    font-size: .82rem;
    font-weight: 600;
    color: var(--navy);
}

.inquiry-grid label span {
    letter-spacing: .02em;
}

.inquiry-grid input,
.inquiry-grid textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 12px 14px;
    font: inherit;
    font-weight: 500;
    color: var(--ink);
    background: #fff;
    outline: 0;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.inquiry-grid input:focus,
.inquiry-grid textarea:focus {
    border-color: rgba(225, 38, 45, .45);
    box-shadow: 0 0 0 4px rgba(225, 38, 45, .1);
}

.inquiry-span {
    grid-column: 1 / -1;
}

.inquiry-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 18px;
}

.inquiry-actions .btn {
    min-height: 46px;
}

@media (max-width: 560px) {
    .inquiry-dialog {
        padding: 22px 18px 18px;
        border-radius: 18px;
    }

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

    .inquiry-actions {
        flex-direction: column-reverse;
    }

    .inquiry-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================================================
   TEAMWEAR CUSTOMIZATION STUDIO (Draggable Names, Numbers, Sponsor, Logo)
   ========================================================================== */

.page-product .product-detail.has-teamwear-studio {
    grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.85fr);
    gap: 36px;
}

@media (max-width: 1280px) {
    .page-product .product-detail.has-teamwear-studio {
        grid-template-columns: 1fr;
    }
}

.teamwear-gallery {
    grid-template-columns: 1fr !important;
}

.teamwear-studio-wrapper {
    display: grid;
    grid-template-columns: 310px minmax(0, 1fr);
    gap: 22px;
    align-items: start;
    width: 100%;
}

@media (max-width: 991px) {
    .teamwear-studio-wrapper {
        grid-template-columns: 1fr;
    }
}

/* Left-side Editor Panel */
.teamwear-editor-panel {
    background: #ffffff;
    border: 1px solid var(--line, #e2e8f0);
    border-radius: 20px;
    padding: 20px 18px;
    box-shadow: 0 12px 32px rgba(18, 20, 23, 0.05);
    position: sticky;
    top: 96px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #cbd5e1 transparent;
}

.teamwear-editor-panel::-webkit-scrollbar {
    width: 6px;
}
.teamwear-editor-panel::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 6px;
}

.tw-panel-head {
    margin-bottom: 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--line, #e2e8f0);
}

.tw-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 3px 9px;
    background: #e0e7ff;
    color: #3730a3;
    border-radius: 20px;
    margin-bottom: 6px;
}

.tw-title {
    font-size: 18px;
    font-weight: 800;
    margin: 0 0 4px;
    color: var(--text, #0f172a);
    letter-spacing: -0.01em;
}

.tw-head-sub {
    font-size: 12px;
    color: var(--muted, #64748b);
    margin: 0;
    line-height: 1.4;
}

/* Segmented Navigation / Tabs */
.tw-elements-nav {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 5px;
    background: #f1f5f9;
    padding: 4px;
    border-radius: 12px;
    margin-bottom: 16px;
}

.tw-nav-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 8px 4px;
    border: none;
    background: transparent;
    border-radius: 9px;
    font-size: 11px;
    font-weight: 700;
    color: #64748b;
    cursor: pointer;
    transition: all 0.18s ease;
}

.tw-nav-btn i {
    font-size: 15px;
}

.tw-nav-btn:hover {
    color: #0f172a;
    background: rgba(255, 255, 255, 0.6);
}

.tw-nav-btn.active {
    background: #ffffff;
    color: #0f172a;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* Controls Body */
.tw-controls-body {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.tw-control-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tw-item-status {
    padding: 8px 12px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
}

.tw-active-label {
    font-size: 12px;
    font-weight: 700;
    color: #1e293b;
}

/* Toggle Switch */
.tw-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    margin: 0;
}

.tw-toggle input {
    display: none;
}

.tw-toggle-slider {
    position: relative;
    width: 34px;
    height: 18px;
    background: #cbd5e1;
    border-radius: 18px;
    transition: background 0.2s ease;
}

.tw-toggle-slider::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 14px;
    height: 14px;
    background: #ffffff;
    border-radius: 50%;
    transition: transform 0.2s ease;
}

.tw-toggle input:checked + .tw-toggle-slider {
    background: #10b981;
}

.tw-toggle input:checked + .tw-toggle-slider::before {
    transform: translateX(16px);
}

.tw-toggle-text {
    font-size: 11px;
    font-weight: 600;
    color: #475569;
}

/* Field Groups & Labels */
.tw-field-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.tw-field-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tw-label {
    font-size: 12px;
    font-weight: 700;
    color: #334155;
    margin: 0;
}

.tw-sublabel {
    font-size: 11px;
    color: #64748b;
    font-weight: 600;
}

.tw-value-badge {
    font-size: 11px;
    font-weight: 700;
    color: #0f172a;
    background: #f1f5f9;
    padding: 2px 7px;
    border-radius: 6px;
    font-variant-numeric: tabular-nums;
}

/* Inputs & Selects */
.tw-input-wrap {
    display: flex;
    gap: 6px;
}

.tw-text-input {
    flex: 1;
    height: 38px;
    padding: 0 12px;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    color: #0f172a;
    background: #ffffff;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.tw-text-input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

.tw-btn-action {
    width: 38px;
    height: 38px;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    background: #f8fafc;
    color: #334155;
    font-weight: 800;
    font-size: 13px;
    cursor: pointer;
    transition: background 0.15s ease;
}

.tw-btn-action:hover {
    background: #e2e8f0;
}

.tw-select {
    height: 38px;
    padding: 0 10px;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;
    color: #1e293b;
    background: #ffffff;
    cursor: pointer;
}

.tw-select:focus {
    outline: none;
    border-color: #3b82f6;
}

/* File Upload Zone */
.tw-upload-zone {
    border: 2px dashed #cbd5e1;
    border-radius: 12px;
    padding: 14px;
    text-align: center;
    background: #f8fafc;
    transition: border-color 0.18s ease;
}

.tw-upload-zone:hover {
    border-color: #3b82f6;
}

.tw-file-hidden {
    display: none;
}

.tw-upload-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: #3b82f6;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    margin: 0 auto;
    transition: background 0.15s ease;
}

.tw-upload-btn:hover {
    background: #2563eb;
}

.tw-upload-filename {
    display: block;
    font-size: 11px;
    color: #64748b;
    margin-top: 6px;
    word-break: break-all;
}

/* Sliders */
.tw-slider-wrap {
    width: 100%;
}

.tw-slider-wrap-flex {
    display: flex;
    align-items: center;
    gap: 8px;
}

.tw-range {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    background: #e2e8f0;
    border-radius: 4px;
    outline: none;
    cursor: pointer;
}

.tw-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    background: #3b82f6;
    border: 2px solid #ffffff;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: transform 0.1s ease;
}

.tw-range::-webkit-slider-thumb:hover {
    transform: scale(1.15);
}

.tw-range::-moz-range-thumb {
    width: 18px;
    height: 18px;
    background: #3b82f6;
    border: 2px solid #ffffff;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.tw-btn-mini {
    padding: 3px 8px;
    font-size: 11px;
    font-weight: 700;
    border: 1px solid #cbd5e1;
    background: #f8fafc;
    border-radius: 6px;
    cursor: pointer;
}

/* Colors */
.tw-color-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.tw-color-input {
    -webkit-appearance: none;
    appearance: none;
    border: 2px solid #e2e8f0;
    width: 36px;
    height: 36px;
    border-radius: 9px;
    cursor: pointer;
    padding: 0;
    background: none;
}

.tw-color-input::-webkit-color-swatch-wrapper {
    padding: 0;
}

.tw-color-input::-webkit-color-swatch {
    border: none;
    border-radius: 7px;
}

.tw-color-input-sm {
    -webkit-appearance: none;
    appearance: none;
    border: 1px solid #cbd5e1;
    width: 24px;
    height: 24px;
    border-radius: 6px;
    cursor: pointer;
    padding: 0;
    background: none;
}

.tw-color-input-sm::-webkit-color-swatch-wrapper {
    padding: 0;
}

.tw-color-input-sm::-webkit-color-swatch {
    border: none;
    border-radius: 5px;
}

.tw-shadow-subrow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 4px;
    padding: 4px 6px;
    background: #f8fafc;
    border-radius: 8px;
}

.tw-color-presets {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
}

.tw-color-dot {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: transform 0.12s ease;
    padding: 0;
}

.tw-color-dot:hover {
    transform: scale(1.22);
}

/* Quick Align Buttons */
.tw-pos-presets {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 4px;
}

.tw-pos-btn {
    padding: 6px 2px;
    font-size: 11px;
    font-weight: 700;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    border-radius: 7px;
    color: #475569;
    cursor: pointer;
    text-align: center;
    transition: all 0.15s ease;
}

.tw-pos-btn:hover {
    background: #0f172a;
    color: #ffffff;
    border-color: #0f172a;
}

/* Actions Row */
.tw-actions-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 6px;
    margin-top: 4px;
}

.tw-btn-sec {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 8px 6px;
    font-size: 11px;
    font-weight: 700;
    border: 1px solid #cbd5e1;
    background: #ffffff;
    color: #334155;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.15s ease;
}

.tw-btn-sec:hover {
    background: #f1f5f9;
    color: #0f172a;
}

.tw-btn-danger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 8px 6px;
    font-size: 11px;
    font-weight: 700;
    border: 1px solid #fecaca;
    background: #fef2f2;
    color: #dc2626;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.15s ease;
}

.tw-btn-danger:hover {
    background: #dc2626;
    color: #ffffff;
}

/* Canvas Stage & Overlay */
.teamwear-canvas-stage {
    position: relative;
    width: 100%;
}

.teamwear-canvas-stage .mockup-stage {
    position: relative;
    overflow: hidden;
}

/* Dual View (Front / Back) Switcher */
.mockup-view-toggle {
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: inline-flex;
    align-items: center;
    background: rgba(15, 23, 42, 0.88);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 4px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.mockup-view-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 16px;
    font-size: 12px;
    font-weight: 700;
    color: #94a3b8;
    background: transparent;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
}

.mockup-view-btn:hover {
    color: #ffffff;
}

.mockup-view-btn.active {
    background: #2563eb;
    color: #ffffff;
    box-shadow: 0 2px 10px rgba(37, 99, 235, 0.4);
}

/* View Panes */
.mockup-view-pane {
    display: none;
    position: relative;
    width: 100%;
    height: 100%;
    place-items: center;
    animation: paneFadeIn 0.22s ease-out forwards;
}

.mockup-view-pane.active {
    display: grid;
}

@keyframes paneFadeIn {
    from { opacity: 0; transform: scale(0.98); }
    to { opacity: 1; transform: scale(1); }
}

.teamwear-svg-holder {
    position: relative;
    width: 100%;
    display: block;
    line-height: 0;
}

.teamwear-svg-holder svg,
.mockup-view-pane svg {
    width: 100%;
    height: auto;
    max-height: 720px;
    display: block;
}

.teamwear-canvas-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 8;
}

/* Side Pills in Navigation */
.tw-side-pill {
    font-size: 8.5px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 1px 5px;
    border-radius: 4px;
    margin-top: 2px;
    background: rgba(15, 23, 42, 0.08);
    color: #64748b;
}

.tw-nav-btn.active .tw-side-pill {
    background: rgba(37, 99, 235, 0.15);
    color: #2563eb;
}

/* Item Side Toggle Button in Status Row */
.tw-status-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.tw-side-switch-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 8px;
    font-size: 11px;
    font-weight: 700;
    color: #475569;
    background: #f1f5f9;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.15s ease;
}

.tw-side-switch-btn:hover {
    background: #e2e8f0;
    color: #0f172a;
}

.tw-canvas-tip {
    font-size: 12px;
    color: #64748b;
    text-align: center;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* Draggable Items */
.tw-drag-item {
    position: absolute;
    transform: translate(-50%, -50%);
    cursor: grab;
    user-select: none;
    pointer-events: auto;
    touch-action: none;
    white-space: nowrap;
    line-height: 1;
    padding: 4px 6px;
    border-radius: 6px;
    z-index: 10;
    transition: box-shadow 0.15s ease;
}

.tw-drag-item:active {
    cursor: grabbing;
}

.tw-drag-item.tw-selected {
    outline: 2px dashed #2563eb;
    outline-offset: 3px;
    background: rgba(37, 99, 235, 0.08);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.6);
}

.tw-drag-item.tw-hidden {
    display: none !important;
}

.tw-drag-item img {
    display: block;
    max-width: 100%;
    height: auto;
    pointer-events: none;
    user-select: none;
}

.tw-item-badge-pill {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: #1e293b;
    color: #ffffff;
    font-size: 9px;
    font-weight: 700;
    padding: 1px 6px;
    border-radius: 4px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.15s ease;
    white-space: nowrap;
}

.tw-drag-item:hover .tw-item-badge-pill,
.tw-drag-item.tw-selected .tw-item-badge-pill {
    opacity: 1;
}

/* Custom Design Download Buttons & Inquiry Attachment */
.tw-download-wrap {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid #e2e8f0;
}

.tw-btn-download {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 16px;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: #ffffff !important;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.3px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.22);
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.tw-btn-download:hover {
    background: linear-gradient(135deg, #1e293b, #334155);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.3);
}

.tw-btn-download:active {
    transform: translateY(0);
}

.tw-btn-download:disabled,
.tw-stage-download-btn:disabled {
    opacity: 0.65;
    cursor: not-allowed;
    pointer-events: none;
}

.tw-canvas-actions,
.mockup-download-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 14px;
}

.tw-stage-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 20px;
    background: #ffffff;
    color: #0f172a;
    font-size: 13px;
    font-weight: 700;
    border: 1.5px solid #cbd5e1;
    border-radius: 999px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    cursor: pointer;
    transition: all 0.2s ease;
}

.tw-stage-download-btn:hover {
    background: #0f172a;
    color: #ffffff;
    border-color: #0f172a;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.18);
    transform: translateY(-1px);
}

.inquiry-custom-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 700;
    color: #059669;
    background: #ecfdf5;
    padding: 3px 9px;
    border-radius: 6px;
    margin-top: 4px;
    border: 1px solid #a7f3d0;
}

/* Share Buttons */
.tw-download-wrap {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tw-btn-share-main {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 16px;
    background: #ffffff;
    color: #0f172a !important;
    font-size: 13px;
    font-weight: 700;
    border: 1.5px solid #cbd5e1;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.tw-btn-share-main:hover {
    background: #f1f5f9;
    border-color: #94a3b8;
    color: #0f172a !important;
    transform: translateY(-1px);
}

.tw-stage-share-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 20px;
    background: #ffffff;
    color: #0f172a;
    font-size: 13px;
    font-weight: 700;
    border: 1.5px solid #cbd5e1;
    border-radius: 999px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    cursor: pointer;
    transition: all 0.2s ease;
}

.tw-stage-share-btn:hover {
    background: #f1f5f9;
    border-color: #94a3b8;
    transform: translateY(-1px);
}

/* Share Modal Dialog */
.share-modal {
    position: fixed;
    inset: 0;
    z-index: 10050;
    display: grid;
    place-items: center;
    padding: 18px;
    opacity: 1;
    transition: opacity 0.25s ease;
}

.share-modal[hidden] {
    display: none !important;
}

.share-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.72);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.share-dialog {
    position: relative;
    width: 100%;
    max-width: 440px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 25px 60px -15px rgba(15, 23, 42, 0.3);
    padding: 24px;
    z-index: 2;
    animation: qcModalPop 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes qcModalPop {
    from { opacity: 0; transform: scale(0.95) translateY(10px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.share-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: #f1f5f9;
    color: #475569;
    display: grid;
    place-items: center;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.15s ease;
}

.share-close:hover {
    background: #e2e8f0;
    color: #0f172a;
}

.share-head {
    margin-bottom: 16px;
}

.share-head h3 {
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
    margin: 4px 0 6px;
    letter-spacing: -0.3px;
}

.share-head p {
    font-size: 13px;
    color: #64748b;
    margin: 0;
    line-height: 1.45;
}

.share-preview-box {
    width: 100%;
    height: 170px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 18px;
}

.share-preview-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.share-options-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 16px;
}

.share-opt-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 14px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.15s ease;
}

.share-opt-btn i {
    font-size: 16px;
}

.share-opt-btn.share-wa {
    color: #15803d;
    background: #f0fdf4;
    border-color: #bbf7d0;
}
.share-opt-btn.share-wa:hover {
    background: #22c55e;
    color: #ffffff;
    border-color: #22c55e;
}

.share-opt-btn.share-fb {
    color: #1d4ed8;
    background: #eff6ff;
    border-color: #bfdbfe;
}
.share-opt-btn.share-fb:hover {
    background: #2563eb;
    color: #ffffff;
    border-color: #2563eb;
}

.share-opt-btn.share-x {
    color: #0f172a;
    background: #f8fafc;
    border-color: #cbd5e1;
}
.share-opt-btn.share-x:hover {
    background: #0f172a;
    color: #ffffff;
    border-color: #0f172a;
}

.share-opt-btn.share-copy {
    color: #475569;
    background: #f8fafc;
    border-color: #cbd5e1;
}
.share-opt-btn.share-copy:hover {
    background: #0f172a;
    color: #ffffff;
    border-color: #0f172a;
}

.share-modal-footer {
    border-top: 1px solid #f1f5f9;
    padding-top: 14px;
}

.share-download-full {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 12.5px;
    font-weight: 600;
    color: #475569;
}



