:root {
    --navy: #030F27;
    --navy-mid: #0a1a38;
    --navy-soft: #1a1a2e;
    --ink: #1a1a2e;
    --muted: #69727d;
    --brand: #E01E37;
    --brand-2: #c8182e;
    --gold: #E01E37;
    --cream: #f5f7fd;
    --paper: #ffffff;
    --line: #e4e8f0;
    --danger: #E01E37;
    --success: #1f9d55;
    --whatsapp: #25d366;
    --shadow: 0 18px 50px rgba(3, 15, 39, .12);
    --shadow-sm: 0 8px 24px rgba(3, 15, 39, .08);
    --radius: 8px;
    --radius-sm: 6px;
    --header-h: 82px;
    --topbar-h: 38px;
    --font-head: "Barlow Condensed", sans-serif;
    --font-body: "Poppins", sans-serif;
}

*,
*::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: 800;
    text-transform: uppercase;
    letter-spacing: .02em;
    line-height: 1.08;
    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-head);
    font-size: .78rem;
    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);
}

.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;
}

.brand {
    display: flex;
    align-items: center;
    gap: 11px;
    flex-shrink: 0;
    font-family: var(--font-head);
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--navy);
}

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

.brand img {
    width: auto;
    height: 48px;
    max-width: 180px;
    object-fit: contain;
}

.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-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: 28px;
    font-family: var(--font-head);
    font-size: .92rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    flex: 1;
    justify-content: center;
}

.main-nav a,
.desktop-nav a,
.mobile-nav a {
    position: relative;
    color: var(--navy);
    padding: 6px 0;
}

.main-nav a::after,
.desktop-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: -4px;
    height: 2px;
    background: var(--brand);
    transition: .25s;
}

.main-nav a:hover,
.main-nav a.active,
.desktop-nav a:hover,
.desktop-nav a.active,
.mobile-nav a:hover,
.mobile-nav a.active {
    color: var(--brand);
}

.main-nav a:hover::after,
.main-nav a.active::after,
.desktop-nav a:hover::after,
.desktop-nav a.active::after {
    right: 0;
}

.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 {
    display: block;
    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);
}

.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: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    transition: .35s;
    display: flex;
    flex-direction: column;
}

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

.product-image {
    aspect-ratio: 1 / 1;
    background: var(--cream);
    position: relative;
    overflow: hidden;
    display: block;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: .55s;
    padding: 12px;
}

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

.product-badge {
    position: absolute;
    left: 12px;
    top: 12px;
    z-index: 2;
    padding: 6px 10px;
    border-radius: 6px;
    font-family: var(--font-head);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
    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: 12px;
    bottom: 12px;
    width: 40px;
    height: 40px;
    border-radius: 7px;
    background: #fff;
    color: var(--navy);
    display: grid;
    place-items: center;
    box-shadow: 0 7px 20px rgba(0, 0, 0, .12);
    transform: translateY(12px);
    opacity: 0;
    transition: .3s;
}

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

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

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

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

.product-title {
    font-size: 1.05rem;
    margin: 7px 0 8px;
    text-transform: uppercase;
}

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

.product-code {
    font-size: .76rem;
    color: #8993a0;
}

.product-bottom {
    margin-top: auto;
    padding-top: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

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

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

.icon-btn {
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 7px;
    background: var(--brand);
    color: #fff;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: .25s;
}

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

.icon-btn:disabled {
    background: #c5ccd6;
    cursor: not-allowed;
    transform: none;
}

.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;
}

.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;
}

.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 img {
    background: #fff;
    border-radius: 12px;
    padding: 6px;
    height: 52px;
}

.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: .2s;
}

.socials a:hover {
    background: var(--brand);
    border-color: var(--brand);
}

.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(25px);
    transition: opacity .7s, transform .7s;
}

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

.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;
    }

    .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 {
        height: 40px;
    }

    .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 a::after,
    .desktop-nav a::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 {
        opacity: 1;
        transform: none;
    }
}
