@font-face {
    font-family: "Fraunces";
    font-style: normal;
    font-weight: 400 800;
    font-display: swap;
    src: url("../fonts/fraunces-latin.woff2") format("woff2");
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 400 700;
    font-display: swap;
    src: url("../fonts/inter-latin.woff2") format("woff2");
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
    --pink: #ff1f8f;
    --black: #0a0a0a;
    --white: #ffffff;
    --blush: #fff0f6;
    --gray: #6b7280;
    --line: #ece7eb;
    --ink-soft: #2d2d2d;
    --success: #117a45;
    --danger: #b42318;
    --shadow: 0 18px 50px rgba(10, 10, 10, 0.12);
    --display-font: Fraunces, Georgia, "Times New Roman", serif;
    --body-font: Inter, Arial, Helvetica, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--black);
    background: var(--white);
    font-family: var(--body-font);
    line-height: 1.5;
}

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

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

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

.site-shell {
    min-height: 100vh;
    padding-bottom: 72px;
}

.top-sale-bar {
    display: grid;
    place-items: center;
    min-height: 34px;
    padding: 7px 14px;
    color: var(--white);
    background: var(--black);
    font-size: 13px;
    font-weight: 800;
    text-align: center;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 72px;
    padding: 12px clamp(16px, 4vw, 56px);
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(14px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: max-content;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    color: var(--white);
    background: var(--pink);
    font-weight: 900;
}

.brand-logo {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    object-fit: cover;
}

.brand-dot {
    color: var(--pink);
}

.brand strong,
.brand small {
    display: block;
}

.brand strong,
.hero h1,
.page-hero h1,
.section-header h2,
.content-block h2,
.product-info h1,
.product-card h3 {
    font-family: var(--display-font);
}

.brand small {
    color: var(--gray);
    font-size: 12px;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 22px;
    color: var(--ink-soft);
    font-weight: 700;
}

.desktop-nav a {
    padding: 10px 0;
}

.desktop-nav a.is-active,
.desktop-nav a:hover {
    color: var(--pink);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.admin-shell .site-header {
    flex-wrap: wrap;
    min-height: 72px;
    height: auto;
    row-gap: 8px;
}

.admin-shell .desktop-nav {
    flex: 1 1 520px;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 14px;
}

.admin-shell .desktop-nav a {
    padding: 6px 0;
    font-size: 13px;
    white-space: nowrap;
}

.admin-shell .header-actions {
    flex-shrink: 0;
}

.icon-button {
    min-height: 40px;
    padding: 8px 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--white);
    cursor: pointer;
    font-weight: 800;
}

.search-shell {
    position: relative;
}

.search-panel {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    z-index: 90;
    width: min(440px, calc(100vw - 32px));
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.search-panel[hidden] {
    display: none;
}

.search-panel label span {
    font-size: 12px;
    color: var(--gray);
}

.search-results {
    display: grid;
    gap: 4px;
    max-height: 420px;
    margin-top: 10px;
    overflow: auto;
}

.search-empty {
    margin: 0;
    padding: 14px;
    color: var(--gray);
    font-size: 14px;
}

.search-result {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
    padding: 10px;
    border-radius: 8px;
}

.search-result:hover {
    background: var(--blush);
}

.search-result img {
    width: 54px;
    height: 64px;
    border-radius: 8px;
    object-fit: cover;
    background: var(--blush);
}

.search-result strong,
.search-result small {
    display: block;
}

.search-result small {
    color: var(--gray);
}

.search-result em {
    display: grid;
    gap: 2px;
    color: var(--pink);
    font-style: normal;
    font-weight: 900;
    text-align: right;
}

.search-result del {
    color: var(--gray);
    font-size: 12px;
    font-weight: 400;
}

.icon-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 40px;
    padding: 8px 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    font-weight: 700;
}

.icon-link strong {
    display: grid;
    place-items: center;
    min-width: 22px;
    height: 22px;
    border-radius: 999px;
    color: var(--white);
    background: var(--pink);
    font-size: 12px;
}

.mobile-menu-icon {
    display: none;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 0;
    background: transparent;
}

.mobile-menu-icon span,
.mobile-menu-icon::before,
.mobile-menu-icon::after {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    background: var(--black);
    border-radius: 999px;
    content: "";
}

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

.mobile-drawer {
    position: fixed;
    inset: 0;
    z-index: 80;
}

.mobile-drawer-backdrop {
    position: absolute;
    inset: 0;
    padding: 0;
    border: 0;
    background: rgba(0, 0, 0, 0.4);
    cursor: pointer;
}

.mobile-drawer-panel {
    position: absolute;
    inset: 0 auto 0 0;
    width: min(288px, calc(100vw - 56px));
    height: 100%;
    padding: 24px;
    color: var(--black);
    background: var(--white);
    box-shadow: 18px 0 46px rgba(10, 10, 10, 0.18);
}

.mobile-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 40px;
    margin-bottom: 24px;
}

.mobile-drawer-brand {
    font-family: var(--display-font);
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
}

.mobile-drawer-close {
    position: relative;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.mobile-drawer-close::before,
.mobile-drawer-close::after {
    position: absolute;
    top: 19px;
    left: 10px;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    content: "";
}

.mobile-drawer-close::before {
    transform: rotate(45deg);
}

.mobile-drawer-close::after {
    transform: rotate(-45deg);
}

.mobile-drawer-nav a {
    display: block;
    min-height: 49px;
    padding: 12px 0;
    border-bottom: 1px solid #e5e7eb;
    color: var(--black);
    font-size: 16px;
    font-weight: 500;
}

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

body.mobile-menu-open {
    overflow: hidden;
}

.site-main {
    min-height: 58.5vh;
}

.container,
.section {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.section {
    padding: 48px 0;
}

.section-tight {
    padding: 30px 0;
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
    align-items: center;
    gap: 36px;
    min-height: calc(100vh - 130px);
    padding: 44px clamp(16px, 4vw, 56px) 38px;
    background: linear-gradient(120deg, var(--black) 0%, #171717 58%, var(--blush) 58%, var(--blush) 100%);
    color: var(--white);
}

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

.eyebrow {
    margin: 0 0 10px;
    color: var(--pink);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.hero h1,
.page-hero h1 {
    margin: 0;
    font-size: clamp(42px, 7vw, 86px);
    line-height: 0.95;
}

.hero p,
.page-hero p {
    max-width: 620px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 18px;
}

.hero-actions,
.action-row,
.product-actions,
.form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-top: 24px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 18px;
    border: 1px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 900;
    text-align: center;
    transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
    transform: translateY(-1px);
}

.button-pink {
    color: var(--white);
    background: var(--pink);
}

.button-dark {
    color: var(--white);
    background: var(--black);
}

.button-light {
    color: var(--black);
    background: var(--white);
}

.button-outline {
    color: var(--black);
    background: var(--white);
    border-color: var(--black);
}

.button-small {
    min-height: 38px;
    padding: 8px 12px;
    font-size: 14px;
}

.button-full {
    width: 100%;
}

.hero-media {
    position: relative;
    align-self: stretch;
    min-height: 430px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.sale-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 3;
    display: grid;
    place-items: center;
    width: 112px;
    height: 112px;
    border-radius: 999px;
    color: var(--white);
    background: var(--pink);
    box-shadow: 0 14px 34px rgba(255, 31, 143, 0.36);
    outline: 4px solid rgba(255, 255, 255, 0.4);
    text-align: center;
    animation: badgePulse 1.8s ease-in-out infinite;
}

.sale-badge strong {
    display: block;
    line-height: 0.95;
    font-size: 15px;
    font-weight: 950;
}

.sale-badge strong:nth-of-type(3) {
    font-size: 30px;
}

.sale-badge .sparkle {
    position: absolute;
    top: 13px;
    right: 18px;
    font-weight: 900;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.045); }
}

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

.hero-offer {
    position: absolute;
    right: 18px;
    bottom: 18px;
    display: grid;
    gap: 2px;
    width: min(220px, calc(100% - 36px));
    padding: 16px;
    color: var(--black);
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.hero-offer strong {
    font-size: 26px;
}

.trust-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    width: min(1180px, calc(100% - 32px));
    margin: 18px auto 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--line);
}

.trust-strip div {
    padding: 18px;
    background: var(--white);
}

.trust-strip strong,
.trust-strip span {
    display: block;
}

.trust-strip span {
    color: var(--gray);
    font-size: 14px;
}

.section-header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 22px;
}

.section-header h2,
.content-block h2,
.page-hero h1,
.checkout-box h2 {
    margin: 0;
}

.section-header p {
    max-width: 620px;
    margin: 8px 0 0;
    color: var(--gray);
}

.section-header .eyebrow {
    margin: 0 0 8px;
    color: var(--pink);
}

.section-header h2 {
    font-size: 36px;
    line-height: 1.08;
}

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

.product-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
}

.product-media {
    position: relative;
    display: block;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: var(--blush);
    background-position: center;
    background-size: cover;
}

.product-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 200ms ease;
}

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

.badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 1;
    padding: 6px 10px;
    border-radius: 999px;
    color: var(--white);
    background: var(--pink);
    font-size: 12px;
    font-weight: 900;
}

.badge-dark {
    background: var(--black);
}

.product-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 16px;
}

.product-card h3 {
    margin: 0;
    font-size: 19px;
    line-height: 1.2;
}

.product-card p {
    margin: 9px 0 0;
    color: var(--gray);
}

.price-row {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 8px;
    margin-top: 14px;
}

.price-row strong {
    color: var(--black);
    font-size: 20px;
}

.price-row del {
    color: var(--gray);
}

.shipping-note {
    margin-top: 6px;
    color: var(--success);
    font-size: 13px;
    font-weight: 800;
}

.product-actions {
    margin-top: auto;
    padding-top: 16px;
}

.filter-bar {
    display: grid;
    grid-template-columns: 1.2fr repeat(2, minmax(120px, 0.6fr)) auto auto;
    gap: 12px;
    align-items: end;
    margin-bottom: 24px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
}

.filter-check {
    display: flex;
    align-items: center;
    min-height: 46px;
}

.filter-check input,
.checkbox-row input {
    width: auto;
    min-height: 0;
}

.inline-form {
    display: inline;
}

.category-grid,
.use-case-grid,
.stats-grid,
.policy-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.category-card,
.use-case-card,
.review-card,
.checkout-box,
.summary-box,
.policy-card,
.admin-card,
.content-block {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
}

.category-card,
.use-case-card,
.review-card,
.policy-card,
.admin-card,
.content-block {
    padding: 20px;
}

.category-card {
    min-height: 170px;
    background: var(--blush);
}

.category-card h3,
.use-case-card h3,
.review-card h3,
.policy-card h3 {
    margin: 0 0 8px;
}

.category-card p,
.use-case-card p,
.review-card p,
.policy-card p,
.content-block p,
.content-block li {
    color: var(--gray);
}

.split-band {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 22px;
    align-items: stretch;
    background: var(--black);
    color: var(--white);
}

.split-band .content-block {
    color: var(--white);
    background: transparent;
    border: 0;
}

.split-band p,
.split-band li {
    color: rgba(255, 255, 255, 0.78);
}

.reel-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.reel-card {
    min-height: 360px;
    padding: 16px;
    border-radius: 8px;
    color: var(--white);
    background: var(--black);
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: end;
    overflow: hidden;
}

.reel-grid .reel-card {
    aspect-ratio: 9 / 16;
    min-height: 0;
}

.reel-card strong {
    font-size: 22px;
}

.page-hero {
    padding: 48px clamp(16px, 4vw, 56px);
    color: var(--white);
    background: var(--black);
}

.page-hero p {
    color: rgba(255, 255, 255, 0.78);
}

.product-detail {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 420px;
    gap: 36px;
    align-items: start;
}

.gallery-main {
    overflow: hidden;
    border-radius: 8px;
    background: var(--blush);
}

.gallery-main img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 10px;
}

.gallery-thumbs img {
    aspect-ratio: 1;
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 8px;
    object-fit: cover;
}

.product-info {
    position: sticky;
    top: 92px;
}

.product-info h1 {
    margin: 0;
    font-size: clamp(32px, 5vw, 48px);
    line-height: 1;
}

.meta-list {
    display: grid;
    gap: 8px;
    padding: 0;
    margin: 22px 0;
    list-style: none;
}

.meta-list li {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--line);
}

.sticky-buy-bar {
    display: none;
}

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

.cart-item {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr) auto;
    gap: 16px;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
}

.cart-item img {
    width: 92px;
    aspect-ratio: 1;
    border-radius: 8px;
    object-fit: cover;
}

.cart-item h3 {
    margin: 0 0 4px;
}

.qty-control {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.qty-control input {
    width: 72px;
}

.checkout-box,
.summary-box {
    padding: 22px;
}

.cart-empty-state {
    display: grid;
    justify-items: center;
    align-content: start;
    min-height: 58.5vh;
    padding: 82px 16px 96px;
    text-align: center;
}

.cart-empty-page .site-main {
    min-height: 0;
}

.checkout-empty-page .site-main {
    min-height: 0;
}

.checkout-empty-state {
    display: grid;
    justify-items: center;
    align-content: start;
    min-height: 58.5vh;
    padding: 82px 16px 96px;
    text-align: center;
}

.checkout-empty-state h1 {
    margin: 0 0 24px;
    font-family: var(--display-font);
    font-size: 30px;
    line-height: 1.15;
}

.checkout-empty-state a {
    text-decoration: underline;
}

.cart-empty-icon {
    position: relative;
    display: grid;
    place-items: center;
    width: 78px;
    height: 78px;
    margin-bottom: 20px;
    border-radius: 999px;
    background: var(--blush);
}

.cart-empty-icon::before {
    content: "";
    width: 26px;
    height: 26px;
    border: 3px solid var(--pink);
    border-radius: 5px;
}

.cart-empty-icon::after {
    content: "";
    position: absolute;
    top: 29px;
    width: 16px;
    height: 8px;
    border: 3px solid var(--pink);
    border-bottom: 0;
    border-radius: 12px 12px 0 0;
}

.cart-empty-state h1 {
    margin: 0;
    font-family: var(--display-font);
    font-size: 30px;
    line-height: 1.15;
}

.cart-empty-state p {
    margin: 10px 0 24px;
    color: var(--gray);
    font-size: 16px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.about-story {
    width: min(704px, calc(100% - 32px));
    min-height: 58.5vh;
    padding-top: 58px;
}

.about-story h1,
.contact-page h1 {
    margin: 0 0 24px;
    font-family: var(--display-font);
    font-size: 48px;
    line-height: 1.1;
}

.about-story > p,
.contact-page > p {
    color: var(--ink-soft);
    font-size: 18px;
    line-height: 1.6;
}

.about-story > p {
    margin: 0 0 18px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin: 48px 0;
}

.about-stats div {
    padding: 22px 16px;
    border: 1px solid var(--line);
    border-radius: 18px;
    text-align: center;
}

.about-stats strong,
.about-stats span {
    display: block;
}

.about-stats strong {
    color: var(--pink);
    font-family: var(--display-font);
    font-size: 32px;
    line-height: 1;
}

.about-stats span {
    margin-top: 8px;
    color: var(--gray);
    font-size: 14px;
}

.contact-page {
    width: min(1216px, calc(100% - 32px));
    min-height: 68.5vh;
    padding-top: 48px;
}

.contact-page > p {
    margin: 0 0 36px;
}

.contact-grid {
    display: grid;
    gap: 16px;
    max-width: 560px;
}

.contact-card,
.contact-form-card {
    border: 1px solid var(--line);
    border-radius: 20px;
    background: var(--white);
}

.contact-card {
    min-height: 150px;
    padding: 30px 26px;
}

.contact-card > span {
    position: relative;
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    margin-bottom: 18px;
    border-radius: 999px;
    background: var(--blush);
}

.contact-whatsapp > span {
    background: #d8fae8;
}

.contact-card > span::before {
    content: none;
    width: 16px;
    height: 13px;
    border: 2px solid var(--pink);
    border-radius: 999px;
}

.contact-whatsapp > span::before {
    border-color: #10b981;
}

.contact-email > span::before {
    width: 16px;
    height: 12px;
    border-radius: 3px;
}

.contact-location > span::before {
    width: 14px;
    height: 14px;
    border-radius: 999px;
}

.contact-card > span svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: var(--pink);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-whatsapp > span svg {
    stroke: #10b981;
}

.contact-card h2 {
    margin: 0 0 6px;
    font-family: var(--body-font);
    font-size: 16px;
}

.contact-card a,
.contact-card p {
    margin: 0;
    color: var(--gray);
}

.contact-form-card {
    display: grid;
    gap: 18px;
    max-width: 560px;
    margin-top: 36px;
    padding: 28px 26px;
}

.contact-form-card input {
    border-radius: 999px;
}

.contact-form-card textarea {
    min-height: 120px;
    border-radius: 18px;
}

.policy-page {
    width: min(704px, calc(100% - 32px));
    min-height: 58.5vh;
    padding-top: 58px;
}

.policy-page h1 {
    margin: 0 0 26px;
    font-family: var(--display-font);
    font-size: 40px;
    line-height: 1.1;
}

.policy-page h2 {
    margin: 26px 0 14px;
    font-family: var(--display-font);
    font-size: 22px;
    line-height: 1.2;
}

.policy-page p,
.policy-page li {
    color: var(--ink-soft);
    font-size: 17px;
    line-height: 1.62;
}

.policy-page p {
    margin: 0 0 18px;
}

.policy-page ol,
.policy-page ul {
    margin: 0 0 24px;
    padding-left: 22px;
}

.about-page .site-main,
.policy-page-body .site-main {
    min-height: 0;
}

.about-page .site-footer {
    margin-top: 80px;
}

label {
    display: grid;
    gap: 7px;
    font-weight: 800;
}

input,
textarea,
select {
    width: 100%;
    min-height: 46px;
    padding: 11px 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
}

textarea {
    min-height: 110px;
    resize: vertical;
}

.field-full {
    grid-column: 1 / -1;
}

.field-error {
    color: var(--danger);
    font-size: 13px;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
}

.summary-line.total {
    border-bottom: 0;
    font-size: 20px;
    font-weight: 900;
}

.flash {
    width: min(1180px, calc(100% - 32px));
    margin: 14px auto 0;
    padding: 12px 14px;
    border-radius: 8px;
    font-weight: 800;
}

.flash-success {
    color: var(--success);
    background: #e9f7ef;
}

.flash-error {
    color: var(--danger);
    background: #fff0ee;
}

.quick-buy-modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: grid;
    place-items: start center;
    padding: 40px 18px;
    overflow-y: auto;
    background: rgba(10, 10, 10, 0.46);
}

.quick-buy-modal[hidden] {
    display: none;
}

.quick-buy-panel {
    position: relative;
    width: min(448px, 100%);
    max-height: calc(100vh - 80px);
    padding: 24px;
    overflow-y: auto;
    border-radius: 24px;
    background: var(--white);
    box-shadow: 0 28px 80px rgba(10, 10, 10, 0.2);
}

.quick-buy-product-row {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    margin: 0 30px 20px 0;
}

.quick-buy-product-row img {
    width: 64px;
    height: 72px;
    border-radius: 14px;
    object-fit: cover;
    background: var(--blush);
}

.quick-buy-product-row h2 {
    margin: 0 0 4px;
    font-family: var(--display-font);
    font-size: 16px;
    line-height: 1.15;
    font-weight: 900;
}

.quick-buy-product-row strong,
.quick-buy-product-row span {
    display: block;
}

.quick-buy-product-row strong {
    color: var(--pink);
    font-size: 15px;
}

.quick-buy-product-row .shipping-note {
    color: var(--success);
    font-size: 12px;
    font-weight: 700;
}

.quick-buy-form {
    display: grid;
    gap: 12px;
}

.quick-buy-form-fields {
    display: grid;
    gap: 10px;
}

.quick-buy-form-fields label {
    display: block;
    color: var(--black);
    font-size: 12px;
    font-weight: 600;
}

.quick-buy-form-fields label span {
    color: var(--gray);
    font-weight: 500;
}

.quick-buy-form-fields input,
.quick-buy-form-fields textarea {
    display: block;
    min-height: 42px;
    margin-top: 5px;
    padding: 10px 14px;
    border-color: #dedbe0;
    border-radius: 18px;
    font-size: 14px;
    font-weight: 400;
}

.quick-buy-form-fields textarea {
    min-height: 58px;
}

.quick-buy-quantity-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 52px;
    padding: 10px 16px;
    border-radius: 18px;
    background: var(--blush);
}

.quick-buy-quantity-row label {
    font-size: 14px;
    font-weight: 700;
}

.quick-buy-stepper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.quick-buy-stepper button {
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    border: 0;
    border-radius: 999px;
    color: #8f8b92;
    background: rgba(255, 255, 255, 0.72);
    cursor: pointer;
    font-size: 18px;
}

.quick-buy-stepper input {
    width: 28px;
    min-height: 32px;
    padding: 0;
    border: 0;
    background: transparent;
    font-size: 18px;
    font-weight: 800;
    text-align: center;
    appearance: textfield;
}

.quick-buy-stepper input::-webkit-outer-spin-button,
.quick-buy-stepper input::-webkit-inner-spin-button {
    margin: 0;
    appearance: none;
}

.quick-buy-form .cod-note {
    display: grid;
    gap: 4px;
    margin: 2px 0 4px;
    padding: 12px 16px;
    border-radius: 16px;
    background: var(--blush);
    font-size: 12px;
}

.quick-buy-panel .quick-buy-form .cod-note span,
.field-help {
    margin-top: 0;
    color: var(--gray);
    font-size: 12px;
}

.quick-buy-total-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 2px;
    color: var(--gray);
    font-size: 14px;
}

.quick-buy-total-row strong {
    color: var(--black);
    font-size: 20px;
}

.quick-buy-form .button-pink,
.quick-buy-whatsapp {
    min-height: 52px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 900;
}

.quick-buy-whatsapp {
    gap: 8px;
    color: var(--white);
    background: #10b981;
}

.quick-buy-whatsapp svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    display: grid;
    place-items: center;
    width: 24px;
    height: 24px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    cursor: pointer;
    font-size: 24px;
    line-height: 1;
}

.whatsapp-fab {
    position: fixed;
    right: 18px;
    bottom: 88px;
    z-index: 70;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 16px;
    border-radius: 999px;
    color: var(--white);
    background: #16a34a;
    box-shadow: var(--shadow);
    font-weight: 900;
}

.mobile-bottom-nav {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    display: none;
    grid-template-columns: repeat(5, 1fr);
    min-height: 64px;
    padding: 0 0 env(safe-area-inset-bottom);
    background: var(--white);
    border-top: 1px solid var(--line);
    box-shadow: 0 -10px 30px rgba(10, 10, 10, 0.08);
}

.mobile-bottom-nav a {
    display: grid;
    place-items: center;
    min-width: 0;
    padding: 6px 3px;
    border-radius: 8px;
    color: var(--gray);
    font-size: 12px;
    font-weight: 800;
    text-align: center;
}

.mobile-bottom-nav a.is-active {
    color: var(--pink);
    background: var(--blush);
}

.site-footer {
    margin-top: 0;
    padding: 56px clamp(16px, 4vw, 56px) 0;
    color: var(--white);
    background: #050505;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr repeat(3, 1fr);
    gap: 56px;
    width: min(1216px, 100%);
    margin: 0 auto;
    padding-bottom: 32px;
}

.footer-grid h3,
.footer-grid p {
    margin-top: 0;
}

.footer-grid p {
    margin-bottom: 8px;
}

.footer-grid h3 {
    margin-bottom: 16px;
    color: var(--white);
    font-family: var(--display-font);
    font-size: 15px;
    letter-spacing: 0.02em;
}

.footer-brand h3 {
    margin-bottom: 14px;
    font-size: 28px;
    line-height: 1;
    text-transform: none;
}

.footer-grid p,
.footer-grid a {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.55;
}

.footer-grid a {
    display: block;
    margin-bottom: 8px;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 22px;
}

.footer-social a {
    position: relative;
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    margin: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
}

.footer-social-chat::before {
    content: "";
    width: 14px;
    height: 12px;
    border: 1.8px solid var(--white);
    border-radius: 999px;
}

.footer-social-chat::after {
    content: "";
    position: absolute;
    left: 13px;
    bottom: 11px;
    width: 5px;
    height: 5px;
    border-left: 1.8px solid var(--white);
    border-bottom: 1.8px solid var(--white);
    transform: skew(-20deg);
}

.footer-social-instagram::before {
    content: "";
    width: 15px;
    height: 15px;
    border: 1.8px solid var(--white);
    border-radius: 5px;
}

.footer-social-instagram::after {
    content: "";
    position: absolute;
    width: 5px;
    height: 5px;
    border: 1.8px solid var(--white);
    border-radius: 999px;
}

.footer-bottom {
    padding: 18px 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.62);
    font-size: 12px;
    text-align: center;
}

@media (min-width: 768px) {
    .cart-empty-state {
        min-height: 404px;
    }

    .checkout-empty-state {
        min-height: 378px;
    }

    .section.about-story {
        min-height: 610px;
        padding-top: 57px;
    }

    .section.policy-page {
        min-height: 484px;
        padding-top: 57px;
    }

    .section.contact-page {
        padding-top: 57px;
    }

    .cart-empty-page .site-footer {
        margin-top: 66px;
    }

    .checkout-empty-page .site-footer {
        margin-top: 80px;
    }

    .about-page .site-footer {
        margin-top: 73px;
    }

    .policy-page-body .site-footer {
        margin-top: 64px;
    }

    .contact-page-body .site-footer {
        margin-top: 26px;
    }
}

.table-wrap {
    overflow-x: auto;
}

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

.admin-product-cell {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
}

.admin-product-cell img {
    width: 48px;
    height: 58px;
    border-radius: 8px;
    object-fit: cover;
    background: var(--blush);
}

.admin-product-cell small {
    display: block;
    color: var(--gray);
}

.status-pill {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 4px 9px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
}

.status-active {
    color: var(--success);
    background: #e9f7ef;
}

.status-muted {
    color: var(--gray);
    background: #f3f4f6;
}

.table-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.admin-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 18px;
}

.admin-tabs a {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 8px 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    color: var(--ink);
    font-weight: 900;
}

.admin-tabs a.is-active {
    border-color: var(--pink);
    color: var(--pink);
    background: var(--blush);
}

.seo-admin-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 18px;
    align-items: start;
}

.seo-editor-block {
    margin: 18px 0;
}

.seo-stats {
    margin-bottom: 18px;
}

.seo-answer {
    display: grid;
    gap: 8px;
    margin-top: 18px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
}

.seo-answer strong {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0;
    color: var(--pink);
}

.seo-sections,
.seo-faq-list {
    display: grid;
    gap: 14px;
}

.seo-faq-list details {
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
}

.seo-faq-list summary {
    cursor: pointer;
    font-weight: 900;
}

.table-actions a,
.table-actions button {
    border: 0;
    background: transparent;
    color: var(--pink);
    cursor: pointer;
    font-weight: 800;
    padding: 0;
}

.checkbox-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 18px;
    margin-top: 18px;
}

.checkbox-row label {
    display: flex;
    align-items: center;
    gap: 7px;
}

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

.admin-image-card {
    display: grid;
    gap: 10px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
}

.admin-image-card img {
    width: 100%;
    aspect-ratio: 4 / 5;
    border-radius: 8px;
    object-fit: cover;
    background: var(--blush);
}

.admin-alt-form {
    display: grid;
    gap: 8px;
}

.admin-alt-form button {
    justify-self: start;
}

th,
td {
    padding: 12px;
    border-bottom: 1px solid var(--line);
    text-align: left;
    vertical-align: top;
}

th {
    background: var(--blush);
}

@media (max-width: 767px) {
    .seo-admin-grid {
        grid-template-columns: 1fr;
    }

    .admin-tabs a {
        flex: 1 1 auto;
        justify-content: center;
    }

    .desktop-nav {
        display: none;
    }

    .hero,
    .split-band,
    .product-detail,
    .cart-layout,
    .checkout-layout,
    .admin-layout {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
        background: var(--black);
    }

    .hero-media {
        min-height: 360px;
    }

    .product-grid,
    .category-grid,
    .use-case-grid,
    .stats-grid,
    .policy-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .trust-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .product-info {
        position: static;
    }
}

@media (max-width: 640px) {
    .site-shell {
        padding-bottom: 64px;
    }

    .site-header {
        min-height: 64px;
        padding: 10px 14px;
    }

    .header-actions .button {
        display: none;
    }

    .search-panel {
        position: fixed;
        top: 72px;
        left: 12px;
        right: 12px;
        width: auto;
    }

    .icon-link span {
        display: none;
    }

    .hero {
        padding: 28px 16px 22px;
    }

    .hero h1,
    .page-hero h1 {
        font-size: 46px;
    }

    .hero-media {
        min-height: 310px;
    }

    .hero-offer {
        left: 14px;
        right: 14px;
        width: auto;
    }

    .section {
        padding: 34px 0;
    }

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

    .product-grid,
    .category-grid,
    .use-case-grid,
    .policy-grid,
    .reel-grid,
    .trust-strip,
    .footer-grid,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .filter-bar,
    .admin-image-grid {
        grid-template-columns: 1fr;
    }

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

    .cart-item {
        grid-template-columns: 76px minmax(0, 1fr);
    }

    .cart-item > form,
    .cart-item > .cart-item-total {
        grid-column: 1 / -1;
    }

    .mobile-bottom-nav {
        display: grid;
    }

    .whatsapp-fab {
        right: 14px;
        bottom: 82px;
    }

    .sticky-buy-bar {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 66px;
        z-index: 55;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        padding: 10px 12px;
        background: var(--white);
        border-top: 1px solid var(--line);
    }

    .sticky-buy-bar .button {
        min-height: 44px;
        padding: 10px 8px;
    }
}

/* Final Style Hub cascade layer. */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

body {
    font-feature-settings: "ss01", "cv11";
    -webkit-font-smoothing: antialiased;
}

.top-sale-bar {
    min-height: 36px;
    padding: 8px 16px;
    font-weight: 600;
    letter-spacing: 0;
}

.site-header {
    height: 64px;
    min-height: 64px;
    padding: 0 max(16px, calc((100vw - 1280px) / 2 + 32px));
    background: rgba(255, 255, 255, 0.9);
}

.brand {
    gap: 0;
    font-family: var(--display-font);
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
}

.desktop-nav {
    gap: 28px;
    font-size: 14px;
    font-weight: 600;
}

.desktop-nav a {
    padding: 21px 0;
}

.header-actions {
    gap: 4px;
}

.icon-button,
.icon-link {
    position: relative;
    display: grid;
    place-items: center;
    width: 40px;
    min-width: 40px;
    height: 40px;
    min-height: 40px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: transparent;
}

.icon-search::before {
    content: "";
    width: 16px;
    height: 16px;
    border: 2px solid currentColor;
    border-radius: 999px;
}

.icon-search::after {
    content: "";
    position: absolute;
    width: 8px;
    height: 2px;
    margin-top: 16px;
    margin-left: 16px;
    background: currentColor;
    border-radius: 999px;
    transform: rotate(45deg);
}

.icon-cart::before {
    content: "";
    width: 18px;
    height: 16px;
    border: 2px solid currentColor;
    border-top: 0;
    border-radius: 0 0 5px 5px;
}

.icon-cart::after {
    content: "";
    position: absolute;
    top: 10px;
    width: 10px;
    height: 7px;
    border: 2px solid currentColor;
    border-bottom: 0;
    border-radius: 999px 999px 0 0;
}

.icon-link strong {
    position: absolute;
    top: 2px;
    right: 0;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    font-size: 10px;
}

.search-panel {
    right: -42px;
    width: min(448px, calc(100vw - 32px));
    padding: 0;
    overflow: hidden;
    border-radius: 16px;
}

.search-panel label {
    display: block;
    padding: 12px;
}

.search-panel input {
    height: 42px;
    padding: 0 16px 0 42px;
    border: 0;
    border-radius: 999px;
    background: #f5f5f5;
}

.search-results {
    gap: 0;
    margin-top: 0;
    border-top: 1px solid var(--line);
}

.container,
.section {
    width: min(1216px, calc(100% - 32px));
}

.section {
    padding: 40px 0;
}

.hero {
    min-height: auto;
    padding: 80px max(16px, calc((100vw - 1280px) / 2 + 32px));
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 56px;
    color: var(--black);
    background: var(--blush);
}

.sale-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 28px;
    margin: 0 0 26px;
    padding: 6px 12px;
    border-radius: 999px;
    background: var(--white);
    color: var(--black);
    font-size: 13px;
    font-weight: 800;
}

.sale-chip::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--pink);
    box-shadow: 0 0 0 4px rgba(255, 31, 143, 0.12);
}

.hero-media {
    align-self: center;
    aspect-ratio: 4 / 5;
    min-height: 0;
    border-radius: 24px;
    overflow: visible;
    box-shadow: none;
}

.hero-media > img {
    height: 100%;
    border-radius: 24px;
    box-shadow: var(--shadow);
}

.hero-copy {
    transform: translateY(-16px);
}

.hero h1,
.page-hero h1 {
    font-size: 72px;
    line-height: 1.02;
    letter-spacing: 0;
}

.hero h1 span {
    color: var(--pink);
}

.hero p,
.page-hero p {
    color: rgba(10, 10, 10, 0.7);
}

.hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 28px;
    color: rgba(10, 10, 10, 0.55);
    font-size: 13px;
}

.button {
    border-radius: 999px;
    font-weight: 700;
}

.trust-strip {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 16px max(16px, calc((100vw - 1280px) / 2 + 32px));
    gap: 16px;
    border-width: 1px 0;
    border-radius: 0;
    background: var(--blush);
}

.trust-strip div {
    position: relative;
    min-height: 44px;
    padding: 0 0 0 48px;
    align-content: center;
    background: transparent;
}

.hero-offer {
    right: auto;
    left: -24px;
    bottom: -26px;
    grid-template-columns: 42px minmax(0, 1fr);
    width: 306px;
    min-height: 74px;
    align-items: center;
    padding: 16px;
    border-radius: 20px;
}

.hero-offer .heart-dot {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    color: var(--pink);
    background: var(--blush);
    border-radius: 999px;
    font-size: 22px;
}

.hero-offer strong {
    font-family: var(--body-font);
    font-size: 14px;
}

.hero-offer small {
    grid-column: 2;
    color: var(--gray);
    font-size: 12px;
}

.trust-strip div::before {
    content: none;
    position: absolute;
    left: 0;
    top: 50%;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    background: var(--white);
    transform: translateY(-50%);
}

.trust-strip div::after {
    content: none;
    position: absolute;
    left: 12px;
    top: 50%;
    width: 12px;
    height: 12px;
    border: 2px solid var(--pink);
    border-radius: 999px;
    transform: translateY(-50%);
}

.trust-strip .trust-icon {
    position: absolute;
    left: 0;
    top: 50%;
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    margin: 0;
    color: var(--pink);
    background: var(--white);
    border-radius: 999px;
    transform: translateY(-50%);
}

.trust-strip .trust-icon svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.product-grid {
    gap: 40px 16px;
}

.home-reels .section-header,
.section-header {
    align-items: end;
}

.occasion-section .section-header {
    justify-content: center;
    text-align: center;
}

.occasion-section .section-header > div {
    margin: 0 auto;
}

.product-card {
    border: 0;
    border-radius: 0;
    background: transparent;
    overflow: visible;
}

.product-media {
    border-radius: 16px;
}

.product-media img {
    transition: transform 500ms ease;
}

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

.badge-stack {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.badge {
    position: static;
    min-height: 24px;
    padding: 4px 10px;
    font-size: 12px;
}

.product-card-body {
    display: block;
    padding: 12px 2px 0;
}

.product-card h3 {
    font-family: var(--display-font);
    font-size: 16px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.price-row {
    gap: 8px;
    margin-top: 6px;
}

.price-row strong {
    font-size: 16px;
}

.shipping-note {
    display: block;
    margin-top: 4px;
    color: #17834d;
    font-size: 11px;
}

.product-actions {
    padding-top: 12px;
}

.product-actions .button {
    width: 100%;
    min-height: 40px;
    color: var(--white);
    background: var(--black);
    font-size: 12px;
}

.product-actions .button::before,
.reel-buy::before {
    content: "\26A1\FE0E";
    margin-right: 6px;
    color: currentColor;
    font-family: "Segoe UI Symbol", Arial, sans-serif;
}

.filter-chips {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
}

.filter-chips::-webkit-scrollbar {
    display: none;
}

.filter-chips a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex: 0 0 auto;
    padding: 8px 16px;
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
}

.chip-icon {
    font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
    font-size: 12px;
    line-height: 1;
}

.filter-chips a.is-active {
    color: var(--white);
    background: var(--black);
    border-color: var(--black);
}

.reels-strip {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 0 0 8px;
    scrollbar-width: none;
}

.reels-strip::-webkit-scrollbar {
    display: none;
}

.mini-reel {
    position: relative;
    flex: 0 0 192px;
    aspect-ratio: 9 / 16;
    overflow: hidden;
    color: var(--white);
    background: var(--black);
    background-position: center;
    background-size: cover;
    border-radius: 18px;
}

.mini-reel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
}

.mini-reel::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.02));
}

.mini-reel span {
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 10px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.3;
}

.category-card.has-media {
    position: relative;
    display: flex;
    min-height: 0;
    aspect-ratio: 3 / 4;
    flex-direction: column;
    justify-content: end;
    overflow: hidden;
    color: var(--white);
    background-size: cover;
    background-position: center;
    border: 0;
    border-radius: 18px;
}

.category-card.has-media::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0));
}

.category-card.has-media > * {
    position: relative;
}

.category-card.has-media h3,
.category-card.has-media p {
    color: var(--white);
}

.category-card.has-media p {
    color: rgba(255, 255, 255, 0.82);
}

.page-hero {
    width: min(1280px, calc(100% - 32px));
    margin: 0 auto;
    padding: 40px 0 30px;
    color: var(--black);
    background: var(--white);
    text-align: center;
}

.page-hero p {
    margin-left: auto;
    margin-right: auto;
}

.page-hero .eyebrow {
    color: var(--pink);
}

.page-hero-media {
    position: relative;
    min-height: 320px;
    margin-top: 28px;
    padding: 44px;
    overflow: hidden;
    color: var(--white);
    background-size: cover;
    background-position: center;
    border-radius: 24px;
    text-align: left;
}

.page-hero-media::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.04));
}

.page-hero-media > * {
    position: relative;
}

.page-hero-media p {
    margin-left: 0;
    color: rgba(255, 255, 255, 0.84);
}

.shop-page {
    padding-top: 40px;
}

.shop-page h1 {
    margin: 0;
    font-family: var(--display-font);
    font-size: 48px;
    line-height: 1.04;
    letter-spacing: 0;
}

.shop-page > p {
    margin: 8px 0 0;
    max-width: 560px;
    color: var(--gray);
}

.shop-page .filter-chips {
    margin-top: 24px;
}

.shop-page .product-grid {
    margin-top: 32px;
}

.split-band {
    width: 100%;
    max-width: none;
    padding: 56px max(16px, calc((100vw - 1280px) / 2 + 32px));
    gap: 40px;
}

.packaging-band {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 56px;
    align-items: center;
    margin-top: 40px;
    padding: 56px max(16px, calc((100vw - 1280px) / 2 + 32px));
    color: var(--white);
    background: var(--black);
}

.banner-media {
    position: relative;
    display: grid;
    min-height: 320px;
    align-items: end;
    overflow: hidden;
    padding: 24px;
    border-radius: 24px;
    background-size: cover;
    background-position: center;
}

.packaging-band .banner-media {
    min-height: 390px;
}

.banner-media::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.05));
}

.banner-media ul {
    position: relative;
    margin: 0;
}

.packaging-copy h2 {
    margin: 0;
    font-family: var(--display-font);
    font-size: 42px;
    line-height: 1.08;
}

.packaging-copy p:not(.eyebrow) {
    color: rgba(255, 255, 255, 0.72);
}

.packaging-copy ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 24px;
    padding: 0;
    margin: 24px 0 0;
    list-style: none;
}

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

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

.reels-hero {
    padding: 40px 0 24px;
}

.reels-hero .eyebrow {
    margin: 0 0 8px;
    font-size: 12px;
}

.reels-hero h1 {
    font-size: 48px;
    line-height: 1;
}

.reels-hero > p:not(.eyebrow) {
    margin-top: 8px;
    font-size: 14px;
}

.reels-section {
    padding-top: 18px;
}

@media (max-width: 980px) {
    .reels-section .reel-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.reel-card {
    position: relative;
    display: block;
    min-height: 0;
    aspect-ratio: 9 / 16;
    padding: 0;
    overflow: hidden;
    border-radius: 18px;
    background: var(--black);
}

.reel-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.92;
    transition: transform 500ms ease;
}

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

.reel-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.02));
}

.reel-pill,
.reel-like,
.reel-copy {
    position: absolute;
    z-index: 2;
}

.reel-pill,
.reel-like {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    top: 12px;
    padding: 4px 9px;
    border-radius: 999px;
    color: var(--white);
    background: rgba(0, 0, 0, 0.42);
    font-size: 10px;
    font-weight: 700;
}

.reel-pill {
    left: 12px;
}

.reel-like {
    right: 12px;
}

.reel-copy {
    left: 12px;
    right: 12px;
    bottom: 12px;
}

.reel-copy strong,
.reel-copy small {
    display: block;
}

.reel-copy strong {
    font-family: var(--body-font);
    font-size: 13px;
    line-height: 1.3;
}

.reel-copy small {
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 11px;
}

.reel-buy {
    width: 100%;
    min-height: 40px;
    margin-top: 8px;
    font-size: 12px;
}

.gallery-main {
    position: relative;
    aspect-ratio: 4 / 5;
    min-height: 0;
    border-radius: 24px;
}

.gallery-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
}

.gallery-thumbs img {
    width: 64px;
    height: 80px;
    border-radius: 12px;
}

.gallery-thumbs {
    display: flex;
    gap: 10px;
}

.product-detail {
    width: min(1216px, calc(100% - 32px));
    padding-top: 32px;
    grid-template-columns: minmax(0, 580px) minmax(0, 580px);
    justify-content: space-between;
    gap: 56px;
}

.product-info h1 {
    margin-top: 5px;
    font-size: 38px;
    line-height: 1.08;
}

.breadcrumb-nav {
    width: min(1216px, calc(100% - 32px));
    margin: 42px auto -24px;
    color: var(--gray);
    font-size: 12px;
}

.breadcrumb-nav a:hover {
    color: var(--pink);
}

.product-info > .price-row {
    margin-top: 20px;
}

.product-info > .price-row strong {
    font-size: 32px;
}

.rating-row {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-top: 10px;
    color: var(--pink);
    font-weight: 800;
}

.rating-row small {
    color: var(--gray);
    font-size: 12px;
    font-weight: 500;
}

.save-pill {
    padding: 4px 10px;
    border-radius: 999px;
    color: var(--pink);
    background: rgba(255, 31, 143, 0.1);
    font-size: 12px;
    font-weight: 800;
}

.trust-pills {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 18px;
}

.trust-pills div {
    min-height: 74px;
    padding: 10px 12px;
    border: 1px solid var(--line);
    border-radius: 14px;
    text-align: center;
}

.trust-pills div::before {
    content: none;
    display: block;
    width: 16px;
    height: 16px;
    margin: 0 auto 5px;
    border: 2px solid var(--pink);
    border-radius: 999px;
}

.trust-pills svg {
    display: block;
    width: 16px;
    height: 16px;
    margin: 0 auto 4px;
    fill: none;
    stroke: var(--pink);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.trust-pills strong,
.trust-pills span,
.cod-note strong,
.cod-note span {
    display: block;
}

.trust-pills strong {
    font-size: 12px;
    line-height: 1.2;
}

.trust-pills span {
    margin-top: 1px;
    color: var(--gray);
    font-size: 11px;
    line-height: 1.2;
}

.cod-note {
    margin-top: 8px;
    padding: 14px 16px;
    border-radius: 18px;
    background: var(--blush);
}

.meta-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 56px;
    margin: 22px 0 18px;
}

.meta-list li {
    display: block;
    padding: 0;
    border: 0;
}

.meta-list span {
    display: block;
    color: var(--gray);
    font-size: 12px;
    line-height: 1.2;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.meta-list strong {
    display: block;
    margin-top: 2px;
    line-height: 1.2;
}

.button-whatsapp {
    color: #059669;
    background: var(--white);
    border: 2px solid #10b981;
}

.whatsapp-fab {
    width: 56px;
    min-width: 56px;
    height: 56px;
    min-height: 56px;
    padding: 0;
    overflow: hidden;
    border-radius: 999px;
    color: transparent;
    background: #10b981;
}

.whatsapp-fab::before {
    content: "";
    width: 22px;
    height: 18px;
    border: 2px solid var(--white);
    border-radius: 999px;
}

.whatsapp-fab::after {
    content: "";
    position: absolute;
    right: 18px;
    bottom: 17px;
    width: 7px;
    height: 7px;
    border-right: 2px solid var(--white);
    border-bottom: 2px solid var(--white);
    transform: rotate(20deg);
}

.cod-note span {
    margin-top: 4px;
    color: rgba(10, 10, 10, 0.7);
    font-size: 13px;
    line-height: 1.35;
}

.product-reel-card {
    position: relative;
    display: grid;
    width: min(290px, 100%);
    aspect-ratio: 9 / 16;
    align-items: end;
    overflow: hidden;
    padding: 18px;
    color: var(--white);
    background-size: cover;
    background-position: center;
    border-radius: 24px;
    box-shadow: var(--shadow);
}

.product-reel-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.04));
}

.product-reel-card > * {
    position: relative;
}

.product-reel-card span {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.42);
    font-size: 11px;
    font-weight: 800;
}

.product-reel-card strong,
.product-reel-card small {
    display: block;
}

.product-reel-card small {
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.84);
}

.filter-bar {
    display: none;
}

.product-info .action-row {
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
    margin-top: 20px;
}

.product-info .action-row form,
.product-info .action-row .button {
    width: 100%;
}

.product-info .action-row .button::before {
    content: none;
}

.product-info .action-row form .button::before {
    content: none;
}

.product-info .action-row .js-quick-buy::before {
    content: none;
}

.product-info .action-row .button-whatsapp::before {
    content: none;
}

@media (min-width: 768px) and (max-width: 980px) {
    .product-info > .price-row {
        gap: 8px;
        margin-top: 20px;
    }

    .trust-pills {
        gap: 10px;
        margin-top: 18px;
    }

    .trust-pills div {
        min-height: 84px;
        padding: 9px 8px;
    }

    .trust-pills svg {
        width: 16px;
        height: 16px;
        margin-bottom: 4px;
    }

    .cod-note {
        padding: 13px 15px;
    }

    .meta-list {
        gap: 10px 36px;
        margin: 20px 0 16px;
    }

    .product-info .action-row {
        margin-top: 16px;
    }
}

.button-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    margin-right: 8px;
    flex: 0 0 auto;
}

.button-icon svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.section.about-story {
    width: min(704px, calc(100% - 32px));
}

.section.policy-page {
    width: min(704px, calc(100% - 32px));
}

.top-sale-bar {
    line-height: 1.25;
}

.brand {
    font-size: 24px;
    font-weight: 700;
}

.brand strong {
    font-weight: 700;
}

.desktop-nav {
    font-weight: 500;
}

.hero .sale-chip {
    min-height: 28px;
    margin-bottom: 20px;
    color: var(--black);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;
}

.hero .sale-chip::before {
    width: auto;
    height: auto;
    color: var(--pink);
    background: transparent;
    box-shadow: none;
    content: "\2728";
    font-size: 14px;
    line-height: 1;
}

.sale-badge {
    font-size: 16px;
}

.sale-badge strong {
    font-size: 16px;
    font-weight: 900;
}

.sale-badge strong:nth-of-type(2) {
    margin: -2px 0;
    font-size: 30px;
}

.sale-badge strong:nth-of-type(3) {
    font-size: 16px;
}

.sale-badge .sparkle::before {
    content: "\2728";
}

.category-card.has-media .category-icon {
    position: relative;
    display: block;
    margin-bottom: 6px;
    font-size: 28px;
    line-height: 1;
}

.review-card {
    border-radius: 16px;
    padding: 20px;
}

.review-stars {
    margin-bottom: 10px;
    color: var(--pink);
    font-size: 0;
    line-height: 1;
}

.review-stars::before {
    content: "\2605\2605\2605\2605\2605";
    font-size: 16px;
    letter-spacing: 0;
}

.review-stars[aria-label="4 stars"]::before {
    content: "\2605\2605\2605\2605";
}

.review-card h3 {
    margin: 14px 0 0;
    font-family: var(--body-font);
    font-size: 12px;
    font-weight: 700;
}

.review-card h3::after {
    content: none;
}

.review-card h3 span::before {
    content: " · ";
}

.review-card h3 span {
    color: rgba(10, 10, 10, 0.6);
}

.review-card p {
    margin: 0;
    color: rgba(10, 10, 10, 0.78);
    font-size: 14px;
    line-height: 1.55;
}

.search-field-row {
    position: relative;
    display: flex;
    gap: 8px;
    align-items: center;
    padding: 12px;
}

.search-field-row label {
    position: relative;
    flex: 1 1 auto;
    min-width: 0;
    padding: 0;
}

.search-field-row label::before {
    position: absolute;
    left: 16px;
    top: 50%;
    width: 13px;
    height: 13px;
    border: 2px solid var(--gray);
    border-radius: 999px;
    content: "";
    pointer-events: none;
    transform: translateY(-58%);
}

.search-field-row label::after {
    position: absolute;
    left: 29px;
    top: 50%;
    width: 7px;
    height: 2px;
    border-radius: 999px;
    background: var(--gray);
    content: "";
    pointer-events: none;
    transform: translateY(5px) rotate(45deg);
}

.search-close {
    position: relative;
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: transparent;
    cursor: pointer;
}

.search-close::before,
.search-close::after {
    position: absolute;
    top: 17px;
    left: 9px;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    content: "";
}

.search-close::before {
    transform: rotate(45deg);
}

.search-close::after {
    transform: rotate(-45deg);
}

.search-trending {
    padding: 0;
    margin: 0;
    list-style: none;
}

.search-trending-title {
    padding: 12px 16px;
    border-bottom: 1px solid var(--line);
    color: var(--gray);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.search-trending button {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    min-height: 48px;
    padding: 12px 16px;
    border: 0;
    border-bottom: 1px solid var(--line);
    background: transparent;
    cursor: pointer;
    text-align: left;
}

.search-term-icon {
    position: relative;
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
    border: 2px solid currentColor;
    border-radius: 999px;
    color: var(--gray);
}

.search-term-icon::after {
    position: absolute;
    right: -5px;
    bottom: -3px;
    width: 7px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    content: "";
    transform: rotate(45deg);
}

.final-sale-cta {
    width: min(1216px, calc(100% - 32px));
    margin: 8px auto 64px;
    padding: 96px 32px;
    overflow: hidden;
    border-radius: 24px;
    color: var(--white);
    background: var(--pink);
    text-align: center;
}

.final-sale-cta h2 {
    position: relative;
    margin: 0;
    font-family: var(--display-font);
    font-size: clamp(40px, 4.8vw, 52px);
    line-height: 1.08;
}

.final-sale-cta p {
    position: relative;
    max-width: 560px;
    margin: 16px auto 0;
    color: rgba(255, 255, 255, 0.9);
}

.final-sale-cta .hero-actions {
    justify-content: center;
}

.final-sale-cta .button-light {
    color: var(--pink);
}

.section.contact-page {
    width: min(960px, calc(100% - 32px));
    text-align: left;
}

.contact-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: none;
}

.contact-form-card {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 672px;
}

.contact-form-card label:nth-child(3),
.contact-form-card button {
    grid-column: 1 / -1;
}

.whatsapp-fab {
    position: fixed;
}

.whatsapp-fab svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: var(--white);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.whatsapp-fab::before {
    content: none;
}

.whatsapp-fab::after {
    content: none;
}

.product-reel-layout {
    display: grid;
    grid-template-columns: minmax(220px, 290px) minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    margin-top: 20px;
}

.product-reel-copy {
    max-width: 320px;
}

.product-reel-copy p {
    margin: 0 0 14px;
    color: rgba(10, 10, 10, 0.68);
    font-size: 18px;
    line-height: 1.45;
}

.product-reel-copy a {
    color: var(--pink);
    font-size: 14px;
    font-weight: 700;
}

.product-reel-card .reel-play {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    padding: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    transform: translate(-50%, -50%);
}

.product-reel-card .reel-play::before {
    width: 0;
    height: 0;
    margin-left: 3px;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 12px solid var(--pink);
    content: "";
}

.product-reel-card .reel-label {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    padding: 5px 9px;
    border-radius: 999px;
    color: var(--white);
    background: rgba(0, 0, 0, 0.5);
    font-size: 11px;
    font-weight: 800;
}

.product-reel-card .reel-like {
    top: 16px;
    right: 16px;
    left: auto;
    color: var(--white);
    background: rgba(0, 0, 0, 0.46);
}

.product-info .action-row form .button::before {
    content: none;
}

.product-info .action-row .js-quick-buy::before {
    content: none;
}

.product-info .action-row .button-whatsapp::before {
    content: none;
}

@media (max-width: 767px) {
    .desktop-nav {
        display: none;
    }

    .site-header {
        display: grid;
        grid-template-columns: 40px 1fr 80px;
        padding: 0 16px;
    }

    .mobile-menu-icon {
        display: block;
    }

    .brand {
        justify-self: center;
    }

    .header-actions {
        justify-self: end;
    }

    .hero {
        grid-template-columns: 1fr;
        padding: 34px 16px 40px;
        gap: 32px;
    }

    .product-grid,
    .category-grid,
    .use-case-grid,
    .stats-grid,
    .policy-grid,
    .trust-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .split-band {
        grid-template-columns: 1fr;
        padding: 40px 16px;
    }

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

    .product-info {
        position: static;
    }
}

@media (max-width: 640px) {
    .site-shell {
        padding-bottom: 64px;
    }

    .brand {
        font-size: 24px;
        font-weight: 700;
    }

    .top-sale-bar {
        min-height: 48px;
        line-height: 1.25;
    }

    .hero {
        padding-top: 48px;
    }

    .hero h1,
    .page-hero h1 {
        font-size: 50px;
    }

    .hero-copy {
        transform: translateY(-16px);
    }

    .hero p {
        font-size: 16px;
    }

    .hero-media {
        order: -1;
    }

    .hero-offer {
        display: none;
    }

    .shop-page h1 {
        font-size: 42px;
    }

    .about-story h1 {
        font-size: 36px;
    }

    .section.about-story {
        padding-top: 50px;
    }

    .section.contact-page {
        padding-top: 58px;
    }

    .section.policy-page {
        min-height: 787px;
        padding-top: 62px;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-stats div {
        padding: 24px 16px;
    }

    .about-page .about-story {
        min-height: 1062px;
    }

    .cart-empty-state {
        min-height: 559px;
    }

    .checkout-empty-state {
        min-height: 405px;
    }

    .reels-hero {
        padding: 39px 0 18px;
    }

    .reels-hero h1 {
        font-size: 38px;
        line-height: 1.05;
    }

    .reels-section {
        padding-top: 22px;
    }

    .reels-section .reel-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .reel-buy {
        min-height: 36px;
    }

    .search-panel {
        top: 64px;
        left: 12px;
        right: 12px;
        width: auto;
    }

    .product-grid,
    .category-grid,
    .use-case-grid,
    .policy-grid,
    .reel-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .trust-strip {
        padding: 18px 16px;
    }

    .page-hero-media {
        min-height: 280px;
        padding: 28px 22px;
        border-radius: 18px;
    }

    .product-card h3,
    .price-row strong {
        font-size: 14px;
    }

    .trust-pills {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .breadcrumb-nav {
        margin: 28px auto 18px;
    }

    .product-detail {
        gap: 28px;
        padding-top: 0;
    }

    .product-info h1 {
        font-size: 42px;
    }

    .product-info > .price-row strong {
        font-size: 32px;
    }

    .mobile-bottom-nav svg {
        width: 20px;
        height: 20px;
        margin-bottom: 2px;
        fill: none;
        stroke: currentColor;
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    .mobile-bottom-nav a {
        min-height: 63px;
        padding: 0;
        border-radius: 0;
        font-size: 11px;
        font-weight: 500;
    }

    .mobile-bottom-nav a:nth-child(5) {
        color: #16a34a;
    }

    .mobile-bottom-nav a span::before {
        content: none;
    }

    .mobile-bottom-nav a.is-active {
        background: transparent;
    }

    .whatsapp-fab {
        display: none;
    }
}

@media (max-width: 767px) {
    .mobile-bottom-nav {
        display: grid;
    }

    .quick-buy-modal {
        place-items: end center;
        padding: 0;
    }

    .quick-buy-panel {
        width: 100%;
        max-height: calc(100vh - 72px);
        border-radius: 24px 24px 0 0;
    }

    .mobile-bottom-nav svg {
        width: 20px;
        height: 20px;
        margin-bottom: 2px;
        fill: none;
        stroke: currentColor;
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    .mobile-bottom-nav a {
        min-height: 63px;
        padding: 0;
        border-radius: 0;
        font-size: 11px;
        font-weight: 500;
    }

    .mobile-bottom-nav a:nth-child(5) {
        color: #16a34a;
    }

    .mobile-bottom-nav a span::before {
        content: none;
    }

    .contact-grid,
    .contact-form-card,
    .product-reel-layout {
        grid-template-columns: 1fr;
    }

    .product-detail .product-info .action-row {
        display: none;
    }

    .product-reel-copy {
        display: none;
    }

    .contact-page {
        text-align: left;
    }

    .contact-grid,
    .contact-form-card {
        max-width: none;
    }

    .contact-page > p {
        margin-bottom: 30px;
        font-size: 16px;
        line-height: 1.4;
    }

    .contact-card {
        min-height: 130px;
        padding: 22px;
    }

    .contact-card > span {
        width: 36px;
        height: 36px;
        margin-bottom: 16px;
    }

    .final-sale-cta {
        margin-bottom: 40px;
        padding: 42px 20px;
        border-radius: 22px;
    }

    .final-sale-cta h2 {
        font-size: 36px;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .category-card.has-media {
        padding: 18px;
    }

    .category-card.has-media .category-icon {
        margin-bottom: 4px;
        font-size: 24px;
    }

    .category-card.has-media h3 {
        margin-bottom: 4px;
        font-size: 20px;
        line-height: 1.05;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .category-card.has-media p {
        display: block;
        margin: 0;
        overflow: hidden;
        color: rgba(255, 255, 255, 0.82);
        font-size: 13px;
        line-height: 1.25;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .packaging-band {
        grid-template-columns: 1fr;
        gap: 28px;
        margin-top: 40px;
        padding: 56px 16px 48px;
    }

    .packaging-band .banner-media {
        min-height: 264px;
        border-radius: 20px;
    }

    .packaging-copy h2 {
        font-size: 38px;
        line-height: 1.06;
    }

    .packaging-copy p:not(.eyebrow) {
        font-size: 17px;
        line-height: 1.45;
    }

    .packaging-copy ul {
        gap: 14px 18px;
        margin-top: 24px;
        font-size: 14px;
    }

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

    .search-panel {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: auto;
        border: 0;
        border-top: 1px solid var(--line);
        border-radius: 0;
        background: transparent;
        box-shadow: none;
    }

    .search-field-row {
        flex-direction: row-reverse;
        min-height: 64px;
        padding: 10px 16px;
        background: var(--white);
        border-bottom: 1px solid var(--line);
    }

    .search-field-row label::before {
        left: 14px;
    }

    .search-field-row label::after {
        left: 27px;
    }

    .search-panel input {
        height: 40px;
        min-height: 40px;
        padding-left: 40px;
        border: 0;
        outline: 0;
        background: #f5f5f5;
        font-size: 14px;
        font-weight: 400;
    }

    .search-close {
        flex: 0 0 24px;
        width: 24px;
        height: 24px;
        margin-right: 2px;
    }

    .search-close::before,
    .search-close::after {
        top: 11px;
        left: 2px;
        width: 20px;
    }

    .search-results {
        max-height: none;
        border-top: 0;
        background: rgba(255, 240, 246, 0.58);
        backdrop-filter: blur(2px);
    }

    .search-trending-title {
        min-height: 40px;
        padding: 12px 16px;
        background: rgba(255, 240, 246, 0.9);
    }

    .search-trending button {
        min-height: 45px;
        padding: 10px 16px;
        background: transparent;
    }
}
