:root {
    --ink: #150c11;
    --ink-2: #30202a;
    --muted: #74646d;
    --line: rgba(21, 12, 17, .11);
    --cream: #fff8f2;
    --paper: #ffffff;
    --rose: #b64f73;
    --rose-2: #e98eaa;
    --plum: #3c1429;
    --gold: #d8ad61;
    --green: #0f3b2f;
    --shadow: 0 24px 70px rgba(44, 20, 33, .13);
    --radius: 28px;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background:
        radial-gradient(circle at 10% 0%, rgba(233, 142, 170, .18), transparent 30rem),
        linear-gradient(180deg, #fffaf6 0%, #fff 48%, #fff7f1 100%);
    font-size: 16px;
    line-height: 1.65;
}

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

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

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

.skip-link {
    position: fixed;
    left: 1rem;
    top: -5rem;
    z-index: 1000;
    background: var(--ink);
    color: #fff;
    padding: .8rem 1rem;
    border-radius: 999px;
}

.skip-link:focus {
    top: 1rem;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 90;
    padding: 14px clamp(16px, 4vw, 54px);
    background: rgba(255, 248, 242, .82);
    border-bottom: 1px solid rgba(21, 12, 17, .08);
    backdrop-filter: blur(22px);
    transition: box-shadow .25s ease, padding .25s ease;
}

.site-header.is-scrolled {
    padding-block: 10px;
    box-shadow: 0 14px 40px rgba(34, 12, 24, .08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    max-width: 1440px;
    margin: 0 auto;
}

.brand img {
    width: clamp(142px, 15vw, 220px);
    height: auto;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: clamp(18px, 3vw, 38px);
    font-size: .92rem;
    font-weight: 700;
    letter-spacing: .02em;
}

.main-nav a {
    position: relative;
    padding: .5rem 0;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: var(--rose);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .2s ease;
}

.main-nav a:hover::after {
    transform: scaleX(1);
}

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

.instagram-pill {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    min-height: 42px;
    padding: .5rem .85rem;
    color: #fff;
    background: linear-gradient(135deg, #f09433, #dc2743 45%, #bc1888 75%, #515bd4);
    border-radius: 999px;
    font-size: .86rem;
    font-weight: 900;
    box-shadow: 0 14px 30px rgba(188, 24, 136, .18);
}

.instagram-pill em {
    font-style: normal;
}

.language-switcher {
    position: relative;
}

.language-switcher > button {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    min-height: 42px;
    padding: .55rem .85rem;
    color: var(--ink);
    background: rgba(255, 255, 255, .72);
    border: 1px solid var(--line);
    border-radius: 999px;
    font-weight: 950;
}

.language-switcher > button small {
    color: var(--muted);
    font-size: .8rem;
}

.language-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    display: grid;
    min-width: 190px;
    padding: 8px;
    background: rgba(255, 255, 255, .98);
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity .2s ease, transform .2s ease;
}

.language-switcher.is-open .language-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.language-menu a {
    display: flex;
    align-items: center;
    gap: .7rem;
    padding: .65rem .75rem;
    border-radius: 14px;
}

.language-menu a:hover,
.language-menu a[aria-current="true"] {
    background: #fff1f6;
}

.language-menu strong {
    min-width: 34px;
}

.cart-pill {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    min-height: 44px;
    padding: .55rem .75rem .55rem 1rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, .72);
    font-weight: 800;
}

.cart-pill strong {
    display: grid;
    min-width: 28px;
    min-height: 28px;
    place-items: center;
    color: #fff;
    background: var(--ink);
    border-radius: 50%;
}

.cart-pill.is-empty {
    padding-inline: .9rem;
}

.menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: var(--ink);
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px auto;
    background: #fff;
    border-radius: 999px;
}

.flash {
    position: fixed;
    right: 18px;
    top: 92px;
    z-index: 120;
    max-width: min(360px, calc(100vw - 36px));
    padding: 1rem 1.2rem;
    color: #fff;
    background: var(--green);
    border-radius: 18px;
    box-shadow: var(--shadow);
}

.flash-error {
    background: #9c243f;
}

.breadcrumbs {
    max-width: 1240px;
    margin: 26px auto 0;
    padding: 0 clamp(18px, 4vw, 32px);
    color: var(--muted);
    font-size: .9rem;
}

.breadcrumbs span {
    margin: 0 .55rem;
}

.section {
    max-width: 1240px;
    margin: 0 auto;
    padding: clamp(54px, 8vw, 96px) clamp(18px, 4vw, 32px);
}

.section-head {
    max-width: 760px;
    margin-bottom: 28px;
}

.section-head.with-link {
    display: flex;
    max-width: none;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
}

.section-head h1,
.section-head h2,
.page-hero h1 {
    margin: .25rem 0 0;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.05;
    letter-spacing: -.055em;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    color: #fff;
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "✦";
    color: var(--gold);
    letter-spacing: 0;
}

.eyebrow.dark {
    color: var(--rose);
}

.btn,
button {
    cursor: pointer;
}

.btn,
.product-bottom button,
.search-box button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    min-height: 48px;
    padding: .85rem 1.15rem;
    border: 0;
    border-radius: 999px;
    font-weight: 900;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover,
.product-bottom button:hover,
.search-box button:hover {
    transform: translateY(-2px);
}

.btn.primary,
.product-bottom button,
.search-box button {
    color: #fff;
    background: linear-gradient(135deg, var(--rose), #7e2347);
    box-shadow: 0 16px 36px rgba(182, 79, 115, .28);
}

.btn.soft {
    color: #fff;
    background: rgba(255, 255, 255, .18);
    border: 1px solid rgba(255, 255, 255, .32);
}

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

.btn.full {
    width: 100%;
}

.hero-slider {
    position: relative;
    min-height: clamp(600px, 78vh, 820px);
    overflow: hidden;
    color: #fff;
    isolation: isolate;
}

.hero-bg,
.hero-bg img,
.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.03);
    transition: opacity 1s ease, transform 5s ease;
}

.hero-bg img.is-active {
    opacity: 1;
    transform: scale(1);
}

.hero-overlay {
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(18, 9, 14, .86) 0%, rgba(18, 9, 14, .55) 43%, rgba(18, 9, 14, .18) 100%),
        radial-gradient(circle at 65% 35%, rgba(216, 173, 97, .18), transparent 24rem);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(720px, calc(100% - 36px));
    padding: clamp(100px, 16vh, 180px) 0 120px;
    margin-left: clamp(18px, 8vw, 120px);
}

.hero-content h1 {
    margin: 18px 0;
    font-size: clamp(2.7rem, 7vw, 6.6rem);
    line-height: .92;
    letter-spacing: -.075em;
}

.hero-content p {
    max-width: 620px;
    margin: 0 0 28px;
    color: rgba(255, 255, 255, .82);
    font-size: clamp(1.05rem, 2vw, 1.35rem);
}

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

.hero-mini {
    position: absolute;
    right: clamp(18px, 5vw, 80px);
    bottom: clamp(18px, 5vw, 64px);
    z-index: 2;
    width: min(360px, calc(100% - 36px));
    padding: 22px;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 28px;
    backdrop-filter: blur(18px);
}

.hero-mini strong,
.hero-mini span {
    display: block;
}

.hero-mini span {
    margin-top: .4rem;
    color: rgba(255, 255, 255, .75);
    font-size: .94rem;
}

.category-strip {
    padding-bottom: 36px;
}

.category-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.category-pills a,
.category-menu a {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: .65rem 1rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 999px;
    font-weight: 800;
    box-shadow: 0 10px 30px rgba(44, 20, 33, .05);
}

.split-showcase {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
    gap: 22px;
    padding-top: 24px;
}

.showcase-card,
.trust-band,
.summary-card,
.contact-card,
.admin-card {
    background: rgba(255, 255, 255, .78);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.showcase-card {
    min-height: 330px;
    padding: clamp(28px, 5vw, 52px);
    color: #fff;
    background:
        linear-gradient(135deg, rgba(61, 16, 39, .88), rgba(22, 8, 15, .92)),
        url("../uploads/2018/02/h1-slide-3.jpg") center/cover;
}

.showcase-card span,
.big-star {
    display: inline-grid;
    width: 54px;
    height: 54px;
    place-items: center;
    color: var(--ink);
    background: var(--gold);
    border-radius: 18px;
    font-size: 1.4rem;
}

.showcase-card h2 {
    max-width: 680px;
    margin: 26px 0 12px;
    font-size: clamp(2rem, 4vw, 4.2rem);
    line-height: 1;
    letter-spacing: -.06em;
}

.showcase-card p {
    max-width: 620px;
    color: rgba(255, 255, 255, .78);
}

.showcase-metrics {
    display: grid;
    gap: 16px;
}

.showcase-metrics div {
    display: grid;
    align-content: center;
    min-height: 98px;
    padding: 24px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 24px;
}

.showcase-metrics strong {
    font-size: clamp(1.7rem, 4vw, 3rem);
    line-height: 1;
    letter-spacing: -.04em;
}

.showcase-metrics span {
    color: var(--muted);
    font-weight: 700;
}

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

.product-grid.four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-card {
    display: flex;
    min-width: 0;
    overflow: hidden;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 28px;
    box-shadow: 0 18px 48px rgba(44, 20, 33, .09);
}

.product-media {
    position: relative;
    display: block;
    aspect-ratio: 1 / 1.08;
    overflow: hidden;
    background: #f6ece8;
}

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

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

.badge {
    position: absolute;
    left: 14px;
    top: 14px;
    padding: .45rem .7rem;
    color: #fff;
    background: rgba(21, 12, 17, .78);
    border-radius: 999px;
    font-size: .74rem;
    font-weight: 900;
    backdrop-filter: blur(12px);
}

.badge.muted {
    background: rgba(116, 100, 109, .8);
}

.sale-badge {
    color: #2b1220;
    background: linear-gradient(135deg, #ffd8e6, #d8ad61);
}

.product-info {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 20px;
}

.product-kicker {
    color: var(--rose);
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.product-info h3 {
    margin: .3rem 0 .35rem;
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    line-height: 1.15;
}

.product-info p {
    display: -webkit-box;
    min-height: 3.1em;
    overflow: hidden;
    margin: 0 0 16px;
    color: var(--muted);
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

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

.product-bottom strong {
    white-space: nowrap;
    font-size: 1.12rem;
}

.price-stack,
.detail-price-stack {
    display: grid;
    gap: 3px;
}

.price-stack del,
.detail-price-stack del,
.cart-unit-price del,
.admin-price-stack del {
    color: var(--muted);
    font-size: .9rem;
    font-weight: 800;
    text-decoration-thickness: 2px;
}

.price-stack strong {
    color: var(--rose);
}

.sale-label {
    display: inline-flex;
    width: fit-content;
    padding: .38rem .7rem;
    color: #2b1220;
    background: rgba(216, 173, 97, .24);
    border-radius: 999px;
    font-size: .8rem;
    font-weight: 900;
}

.product-bottom button {
    min-height: 42px;
    padding: .62rem .9rem;
    white-space: nowrap;
    font-size: .9rem;
}

.trust-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 70px;
    padding: clamp(28px, 5vw, 44px);
    color: #fff;
    background: linear-gradient(135deg, var(--green), #17231e);
}

.instagram-showcase {
    display: grid;
    grid-template-columns: minmax(0, .88fr) minmax(360px, 1.12fr);
    gap: 28px;
    align-items: center;
    padding-top: 24px;
}

.instagram-copy {
    padding: clamp(26px, 5vw, 46px);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.instagram-copy h2 {
    margin: 12px 0;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1;
    letter-spacing: -.06em;
}

.instagram-copy p {
    color: var(--muted);
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    padding: 10px;
    background: linear-gradient(135deg, #fff, #fff3f7);
    border: 1px solid var(--line);
    border-radius: 30px;
    box-shadow: var(--shadow);
}

.instagram-grid img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 22px;
}

.instagram-grid img:nth-child(1),
.instagram-grid img:nth-child(6) {
    grid-column: span 2;
    grid-row: span 2;
}

.about-layout {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(340px, 1.05fr);
    gap: 28px;
    align-items: center;
    padding-top: 28px;
}

.about-copy-card {
    padding: clamp(26px, 5vw, 48px);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.about-copy-card p {
    color: var(--muted);
    font-size: 1.04rem;
}

.about-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin: 24px 0;
}

.about-metrics div {
    padding: 16px;
    background: #fff8f2;
    border: 1px solid var(--line);
    border-radius: 18px;
}

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

.about-metrics strong {
    font-size: 1.45rem;
    line-height: 1;
}

.about-metrics span {
    color: var(--muted);
    font-size: .86rem;
    font-weight: 800;
}

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

.about-image-grid img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 26px;
    box-shadow: 0 16px 44px rgba(44, 20, 33, .1);
}

.about-image-grid img:nth-child(2) {
    margin-top: 42px;
}

.about-image-grid img:nth-child(3) {
    margin-top: -42px;
}

.trust-band h2 {
    margin: 0 0 8px;
    font-size: clamp(1.7rem, 4vw, 3rem);
    line-height: 1;
}

.trust-band p {
    max-width: 720px;
    margin: 0;
    color: rgba(255, 255, 255, .76);
}

.page-hero {
    max-width: 1240px;
    margin: 0 auto;
    padding: clamp(54px, 9vw, 108px) clamp(18px, 4vw, 32px) 24px;
}

.page-hero.compact p {
    max-width: 720px;
    color: var(--muted);
    font-size: 1.08rem;
}

.shop-layout {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 30px;
    align-items: start;
    padding-top: 34px;
}

.shop-sidebar {
    position: sticky;
    top: 100px;
    display: grid;
    gap: 18px;
}

.search-box,
.category-menu {
    padding: 18px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: 0 16px 40px rgba(44, 20, 33, .06);
}

.search-box label {
    display: block;
    margin-bottom: 10px;
    font-weight: 900;
}

.search-box div {
    display: flex;
    gap: 8px;
}

.search-box input,
.checkout-form input,
.checkout-form select,
.checkout-form textarea,
.admin-card input,
.admin-card select,
.admin-card textarea,
.buy-box input {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fff;
    padding: .9rem 1rem;
    color: var(--ink);
    outline: none;
}

.search-box input:focus,
.checkout-form input:focus,
.checkout-form select:focus,
.checkout-form textarea:focus,
.admin-card input:focus,
.admin-card select:focus,
.admin-card textarea:focus {
    border-color: rgba(182, 79, 115, .55);
    box-shadow: 0 0 0 4px rgba(182, 79, 115, .12);
}

.category-menu {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.category-menu a {
    justify-content: space-between;
    box-shadow: none;
}

.category-menu a.active {
    color: #fff;
    background: linear-gradient(135deg, var(--rose), #2b1220);
    border-color: transparent;
}

.shop-toolbar {
    display: flex;
    justify-content: space-between;
    margin-bottom: 18px;
    color: var(--muted);
    font-weight: 800;
}

.product-detail {
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(320px, .96fr);
    gap: clamp(26px, 6vw, 70px);
    align-items: start;
}

.main-product-image {
    overflow: hidden;
    border-radius: 34px;
    background: #fff;
    box-shadow: var(--shadow);
}

.main-product-image img {
    width: 100%;
    aspect-ratio: 1 / 1.1;
    object-fit: cover;
}

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

.thumb-row img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 18px;
}

.product-summary {
    position: sticky;
    top: 110px;
}

.product-summary h1 {
    margin: 10px 0;
    font-size: clamp(2.2rem, 5vw, 4.4rem);
    line-height: .98;
    letter-spacing: -.065em;
}

.lead {
    color: var(--muted);
    font-size: 1.12rem;
}

.detail-price {
    display: block;
    margin: 0;
    font-size: 2rem;
}

.detail-price-stack {
    margin: 24px 0;
}

.buy-box {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 12px;
    padding: 16px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 24px;
}

.buy-box label {
    font-weight: 900;
}

.delivery-note {
    display: flex;
    gap: 14px;
    margin-top: 16px;
    padding: 18px;
    background: rgba(216, 173, 97, .14);
    border: 1px solid rgba(216, 173, 97, .28);
    border-radius: 22px;
}

.delivery-note span {
    color: var(--gold);
}

.delivery-note p {
    margin: 0;
    color: var(--muted);
}

.product-description,
.content-wrap {
    padding-top: 24px;
}

.rich-text {
    max-width: 920px;
    color: var(--ink-2);
}

.rich-text h1,
.rich-text h2,
.rich-text h3 {
    line-height: 1.1;
}

.legal-text {
    padding: clamp(24px, 5vw, 44px);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 18px 48px rgba(44, 20, 33, .06);
}

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

.cart-table,
.checkout-form {
    display: grid;
    gap: 14px;
}

.cart-row {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr) 120px 120px;
    gap: 16px;
    align-items: center;
    padding: 14px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 24px;
}

.cart-row img {
    width: 92px;
    height: 92px;
    object-fit: cover;
    border-radius: 18px;
}

.cart-row h2 {
    margin: 0;
    font-size: 1.1rem;
}

.cart-unit-price {
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
    color: var(--rose);
    font-weight: 900;
}

.cart-row label,
.checkout-form label,
.admin-card label {
    display: grid;
    gap: 8px;
    color: var(--ink);
    font-weight: 900;
}

.summary-card {
    padding: 24px;
}

.summary-card.sticky {
    position: sticky;
    top: 110px;
}

.summary-card h2 {
    margin-top: 0;
}

.summary-card div {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin: 12px 0;
}

.summary-card span {
    color: var(--muted);
}

.summary-card .grand {
    font-size: 1.18rem;
}

.summary-card hr {
    border: 0;
    border-top: 1px solid var(--line);
}

.secure-note {
    color: var(--muted);
    font-size: .92rem;
}

.checkout-form {
    padding: clamp(20px, 4vw, 34px);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

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

.span-2 {
    grid-column: span 2;
}

.payment-methods {
    display: grid;
    gap: 10px;
    margin: 8px 0;
    padding: 18px;
    background: #fff8f2;
    border: 1px solid var(--line);
    border-radius: 20px;
}

.payment-methods label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
}

.payment-methods input {
    width: auto;
}

.form-errors {
    padding: 12px 16px;
    color: #8a1430;
    background: rgba(232, 70, 108, .12);
    border-radius: 18px;
}

.form-errors p {
    margin: .25rem 0;
}

.thank-you {
    min-height: 55vh;
    display: grid;
    place-items: center;
}

.thank-card,
.empty-state {
    max-width: 720px;
    margin: 0 auto;
    padding: clamp(28px, 6vw, 54px);
    text-align: center;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.thank-card h1,
.empty-state h1 {
    margin: 18px 0 8px;
    font-size: clamp(2rem, 5vw, 4rem);
    line-height: 1;
    letter-spacing: -.06em;
}

.success {
    color: #167446;
    font-weight: 900;
}

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

.contact-card {
    min-height: 240px;
    padding: 24px;
}

.contact-card.dark {
    color: #fff;
    background: linear-gradient(135deg, var(--plum), var(--ink));
}

.contact-card > span {
    display: inline-grid;
    width: 46px;
    height: 46px;
    place-items: center;
    margin-bottom: 14px;
    color: var(--ink);
    background: rgba(216, 173, 97, .26);
    border-radius: 16px;
}

.contact-card h2 {
    margin: 0 0 8px;
}

.contact-card a {
    display: block;
    margin: .35rem 0;
    font-weight: 800;
}

.contact-instagram-link {
    margin-top: 12px !important;
    color: #fff !important;
    opacity: .9;
}

.map-panel {
    padding-top: 0;
}

.map-panel iframe {
    width: 100%;
    min-height: 420px;
    border: 0;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.admin-shell {
    min-height: 70vh;
    display: grid;
    place-items: center;
}

.admin-shell.wide {
    display: block;
}

.admin-card {
    width: min(520px, 100%);
    padding: clamp(24px, 5vw, 42px);
}

.admin-card.product-form {
    width: min(920px, 100%);
    margin: 0 auto;
}

.admin-card form,
.admin-card.product-form {
    display: grid;
    gap: 16px;
}

.admin-list {
    max-width: 1180px;
    margin-inline: auto;
    padding-top: 54px;
}

.admin-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.admin-table {
    display: grid;
    gap: 10px;
}

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

.admin-stat-grid div {
    padding: 18px;
    background: rgba(255, 255, 255, .86);
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: 0 14px 36px rgba(44, 20, 33, .06);
}

.admin-stat-grid span {
    display: block;
    color: var(--muted);
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.admin-stat-grid strong {
    display: block;
    margin-top: 6px;
    font-size: 1.65rem;
}

.admin-row {
    display: grid;
    grid-template-columns: 70px minmax(0, 1fr) 160px 120px;
    gap: 16px;
    align-items: center;
    padding: 12px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.admin-row:hover {
    transform: translateY(-2px);
    border-color: rgba(182, 79, 115, .26);
    box-shadow: 0 16px 40px rgba(44, 20, 33, .08);
}

.admin-row img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 16px;
}

.admin-row span,
.admin-row strong {
    font-weight: 900;
}

.admin-row-title {
    display: grid;
    gap: 4px;
}

.admin-row-title small {
    color: var(--rose);
    font-size: .78rem;
    font-weight: 900;
}

.admin-price-stack {
    display: grid;
    gap: 2px;
    color: var(--rose);
}

.admin-row em {
    color: var(--muted);
    font-style: normal;
}

.admin-checkline {
    grid-template-columns: auto 1fr;
    align-items: flex-start;
    padding: 16px;
    background: rgba(216, 173, 97, .11);
    border: 1px solid rgba(216, 173, 97, .28);
    border-radius: 20px;
}

.admin-checkline input {
    width: 20px;
    height: 20px;
    margin-top: 3px;
    accent-color: var(--rose);
}

.admin-checkline small {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-weight: 700;
    line-height: 1.45;
}

.publish-status,
.order-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: .5rem .8rem;
    border-radius: 999px;
    font-size: .82rem;
    font-weight: 900;
}

.publish-status.is-active,
.order-status.is-paid {
    color: #07553d;
    background: rgba(20, 184, 130, .14);
}

.publish-status.is-passive,
.order-status.is-failed {
    color: #8a2630;
    background: rgba(190, 48, 66, .12);
}

.order-status.is-pending,
.order-status.is-preparing {
    color: #8a5a0f;
    background: rgba(216, 173, 97, .18);
}

.order-row {
    grid-template-columns: minmax(150px, .9fr) minmax(220px, 1.3fr) 140px 160px;
}

.order-row small,
.order-id small,
.order-item-row small,
.notification-box small {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-size: .82rem;
    font-weight: 700;
}

.admin-empty {
    padding: 32px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 24px;
}

.order-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
    gap: 18px;
    align-items: start;
}

.order-detail-card {
    width: 100%;
    margin: 0;
    padding: clamp(20px, 3vw, 30px);
}

.order-detail-card h2 {
    margin-bottom: 18px;
}

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

.detail-list div,
.notification-box {
    padding: 14px;
    background: rgba(253, 247, 250, .72);
    border: 1px solid var(--line);
    border-radius: 18px;
}

.detail-list dt {
    color: var(--muted);
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.detail-list dd {
    margin: 5px 0 0;
    font-weight: 800;
}

.status-form {
    display: grid;
    gap: 14px;
}

.notification-box {
    margin-top: 18px;
}

.order-products-card {
    margin-top: 18px;
}

.order-items,
.order-history,
.order-totals {
    display: grid;
    gap: 10px;
}

.order-item-row,
.order-totals div,
.order-history div {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 14px;
    align-items: center;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 18px;
}

.order-item-row em {
    color: var(--muted);
    font-style: normal;
    font-weight: 800;
}

.order-totals {
    margin-top: 16px;
}

.order-totals div {
    grid-template-columns: 1fr auto;
}

.order-totals .grand {
    color: #fff;
    background: var(--dark);
}

.order-history div {
    grid-template-columns: 150px 1fr;
}

.order-history time {
    color: var(--muted);
    font-weight: 800;
}

.flash-message {
    width: min(1120px, calc(100% - 36px));
    margin: 18px auto 0;
    padding: 14px 18px;
    border-radius: 18px;
    color: #07553d;
    background: rgba(20, 184, 130, .14);
    border: 1px solid rgba(20, 184, 130, .22);
    font-weight: 900;
}

.flash-message.error {
    color: #8a2630;
    background: rgba(190, 48, 66, .12);
    border-color: rgba(190, 48, 66, .22);
}

.admin-preview {
    width: 160px;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 22px;
}

.site-footer {
    color: #fff;
    background:
        radial-gradient(circle at 20% 0%, rgba(182, 79, 115, .32), transparent 28rem),
        linear-gradient(180deg, #21111b, #11090e);
    padding: 62px clamp(18px, 4vw, 54px) 26px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr repeat(3, 1fr);
    gap: 34px;
    max-width: 1240px;
    margin: 0 auto;
}

.footer-logo {
    width: 156px;
    margin-bottom: 18px;
}

.site-footer h2 {
    margin: 0 0 12px;
    font-size: 1rem;
}

.site-footer a {
    display: block;
    margin: .4rem 0;
    color: rgba(255, 255, 255, .78);
}

.site-footer p {
    color: rgba(255, 255, 255, .68);
}

.footer-cta {
    padding: .75rem 1rem;
    color: #fff !important;
    background: rgba(255, 255, 255, .12);
    border-radius: 999px;
    text-align: center;
}

.footer-cta.ghost {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, .2);
}

.footer-bottom {
    display: flex;
    max-width: 1240px;
    justify-content: space-between;
    gap: 18px;
    margin: 46px auto 0;
    padding-top: 22px;
    color: rgba(255, 255, 255, .55);
    border-top: 1px solid rgba(255, 255, 255, .12);
}

.floating-whatsapp {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 80;
    display: grid;
    width: 58px;
    height: 58px;
    place-items: center;
    color: #fff;
    background: #25d366;
    border-radius: 50%;
    box-shadow: 0 18px 42px rgba(37, 211, 102, .32);
}

.floating-whatsapp svg {
    width: 32px;
    height: 32px;
    fill: currentColor;
}

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

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

    .cart-layout,
    .checkout-layout,
    .product-detail,
    .split-showcase,
    .instagram-showcase,
    .about-layout {
        grid-template-columns: 1fr;
    }

    .product-summary,
    .summary-card.sticky,
    .shop-sidebar {
        position: static;
    }

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

@media (max-width: 780px) {
    body {
        font-size: 15px;
    }

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

    .header-inner {
        gap: 10px;
    }

    .brand img {
        width: 138px;
    }

    .menu-toggle {
        display: block;
    }

    .main-nav {
        position: fixed;
        left: 12px;
        right: 12px;
        top: 76px;
        display: grid;
        gap: 8px;
        padding: 14px;
        background: rgba(255, 255, 255, .96);
        border: 1px solid var(--line);
        border-radius: 22px;
        box-shadow: var(--shadow);
        transform: translateY(-12px);
        opacity: 0;
        pointer-events: none;
    }

    .instagram-pill em {
        display: none;
    }

    .language-menu {
        right: -48px;
    }

    .main-nav.is-open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .cart-pill span {
        display: none;
    }

    .cart-pill.is-empty {
        display: none;
    }

    .hero-slider {
        min-height: 650px;
    }

    .hero-content {
        width: calc(100% - 32px);
        margin: 0 auto;
        padding-top: 110px;
    }

    .hero-content h1 {
        font-size: clamp(2.7rem, 15vw, 4.2rem);
    }

    .hero-mini {
        left: 16px;
        right: 16px;
        bottom: 18px;
        width: auto;
    }

    .section {
        padding-block: 48px;
    }

    .section-head.with-link,
    .trust-band,
    .footer-bottom,
    .shop-toolbar {
        align-items: flex-start;
        flex-direction: column;
    }

    .product-grid,
    .product-grid.four,
    .contact-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

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

    .instagram-grid img:nth-child(1),
    .instagram-grid img:nth-child(6) {
        grid-column: auto;
        grid-row: auto;
    }

    .about-metrics {
        grid-template-columns: 1fr;
    }

    .about-image-grid img:nth-child(2),
    .about-image-grid img:nth-child(3) {
        margin-top: 0;
    }

    .product-media {
        aspect-ratio: 1 / .98;
    }

    .product-info {
        padding: 18px;
    }

    .product-bottom {
        align-items: stretch;
        flex-direction: column;
    }

    .product-bottom form,
    .product-bottom button {
        width: 100%;
    }

    .cart-row {
        grid-template-columns: 72px 1fr;
    }

    .cart-row img {
        width: 72px;
        height: 72px;
    }

    .cart-row label,
    .cart-row strong {
        grid-column: 2;
    }

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

    .span-2 {
        grid-column: span 1;
    }

    .buy-box {
        grid-template-columns: 1fr;
    }

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

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

    .admin-row {
        grid-template-columns: 56px 1fr;
    }

    .admin-row img {
        width: 56px;
        height: 56px;
    }

    .admin-row strong,
    .admin-row em {
        grid-column: 2;
    }

    .admin-checkline {
        grid-template-columns: 1fr;
    }

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

    .order-row strong,
    .order-row em {
        grid-column: auto;
    }

    .order-detail-grid,
    .detail-list,
    .order-item-row,
    .order-history div {
        grid-template-columns: 1fr;
    }

    .admin-actions {
        width: 100%;
    }

    .admin-actions .btn {
        flex: 1 1 auto;
    }
}

@media (max-width: 420px) {
    .brand img {
        width: 124px;
    }

    .cart-pill {
        min-height: 42px;
        padding: .5rem;
    }

    .menu-toggle {
        width: 44px;
        height: 44px;
    }

    .hero-content {
        padding-top: 96px;
    }

    .hero-content p {
        font-size: 1rem;
    }

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

    .instagram-pill,
    .language-switcher > button {
        min-height: 40px;
        padding-inline: .65rem;
    }

    .admin-stat-grid {
        grid-template-columns: 1fr;
    }
}

[dir="rtl"] .main-nav a::after {
    transform-origin: right;
}

[dir="rtl"] .language-menu {
    right: auto;
    left: 0;
}
