:root {
    --fg: #0f172a;
    --muted: #475569;
    --border: #e2e8f0;
    --bg: #f6f7fb;
    --card: #ffffff;
    --surface: #f1f5f9;
    --primary: #ff6a3d;
    --on-primary: #ffffff;
    --reviews-bg: #0b1530;
    --reviews-fg: #ffffff;
    --radius: 16px;
    --radius-sm: 12px;
    --space: 16px;
    --shadow: 0 10px 30px rgba(15, 23, 42, .08);
}

* {
    box-sizing: border-box
}

html,
body {
    overflow-x: hidden
}

body {
    margin: 0;
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: var(--fg);
    background: var(--bg);
    line-height: 1.45;
    min-height: 100vh;
    display: flex;
    flex-direction: column
}

main {
    max-width: none;
    margin: 0;
    padding: var(--space);
    background: var(--card)
}

.nav {
    flex: 0 0 auto
}

main {
    flex: 1 0 auto
}

.footer {
    flex: 0 0 auto
}

/* Footer spacing: keep air on most pages, but allow opt-out per page. */
.footer {
    margin-top: 0;
    padding-top: calc(var(--space) * 2);
    background: var(--card);
}

main.no-footer-gap+.footer {
    padding-top: 0;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
}

a {
    color: inherit
}

img {
    max-width: 100%
}

/* Navbar */
.nav {
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--border);
    background: rgba(255, 255, 255, .92);
    backdrop-filter: saturate(180%) blur(10px)
}

.nav-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 28px 24px 28px;
    /* Padding bottom increased */
    gap: 16px;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 102;
    position: relative;
}

.nav-burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: 0;
    padding: 0;
    cursor: pointer;
    z-index: 102;
    position: relative;
}

.burger-bar {
    width: 100%;
    height: 2px;
    background: var(--fg);
    border-radius: 2px;
    transition: transform .2s ease, opacity .2s ease;
}

.nav-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1;
    margin-left: 20px;
}

.nav-center {
    display: flex;
    gap: 22px;
    align-items: center;
    justify-content: center;
}

.nav-right {
    display: flex;
    gap: 14px;
    align-items: center;
    justify-content: flex-end;
}

@media (max-width: 980px) {
    .nav-burger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--card);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        margin: 0;
        padding: 80px 20px;
        transform: translateY(-100%);
        transition: transform .3s ease;
        z-index: 100;
        opacity: 0;
        pointer-events: none;
    }

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

    .nav-center,
    .nav-right {
        flex-direction: column;
        width: 100%;
        gap: 20px;
    }

    .nav-burger.is-active .burger-bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-burger.is-active .burger-bar:nth-child(2) {
        opacity: 0;
    }

    .nav-burger.is-active .burger-bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
    text-decoration: none;
    letter-spacing: -.02em
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 10px;
    background: rgba(255, 106, 61, .14);
    color: var(--primary);
    font-size: 14px
}

.brand-title {
    font-size: 22px;
    letter-spacing: -.02em
}

.link {
    text-decoration: none;
    opacity: .85;
    font-weight: 650
}

.link:hover {
    opacity: 1;
    color: var(--primary)
}

/* Page headers */
.page-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 16px;
    flex-wrap: wrap;
    margin: 0 0 18px
}

.page-title {
    font-size: 28px;
    letter-spacing: -.02em;
    margin: 0
}

.page-subtitle {
    color: var(--muted);
    margin: 6px 0 0
}

/* Cards & grid */
.grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 16px
}

@media(min-width:820px) {
    .grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden
}

.card__body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px
}

.card__footer {
    padding: 16px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: center
}

.thumb {
    width: 100%;
    aspect-ratio: 3/4;
    background: var(--surface);
    display: block;
    object-fit: cover
}

.thumb.square {
    aspect-ratio: 1/1
}

.thumb.is-zoomable {
    cursor: zoom-in;
}

/* Product gallery */
.product-gallery {
    position: relative;
}

/* Product mosaic (vertical) */
.product-mosaic {
    padding: 12px;
    column-count: 2;
    column-gap: 12px;
}

@media (max-width: 420px) {
    .product-mosaic {
        column-count: 1;
    }
}

.product-mosaic-item {
    position: relative;
    display: inline-block;
    width: 100%;
    margin: 0 0 12px;
    padding: 0;
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    background: var(--surface);
    cursor: zoom-in;
    break-inside: avoid;
}

.product-mosaic-img {
    width: 100%;
    height: auto;
    display: block;
}

.product-mosaic-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: rgba(15, 23, 42, .95);
    opacity: 0;
    transition: opacity .15s ease;
    background: rgba(255, 255, 255, .08);
}

.product-mosaic-item:hover .product-mosaic-img {
    filter: grayscale(1) brightness(.85);
}

.product-mosaic-item:hover .product-mosaic-overlay {
    opacity: 1;
}

/* Admin product images: reorder + delete */
.admin-image-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

@media (max-width: 820px) {
    .admin-image-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 520px) {
    .admin-image-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.admin-image-item {
    position: relative;
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    background: var(--surface);
    cursor: grab;
}

.admin-image-item.is-dragging {
    opacity: .65;
    cursor: grabbing;
}

.admin-image-thumb {
    width: 100%;
    height: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    display: block;
}

.admin-image-handle {
    position: absolute;
    left: 10px;
    top: 10px;
    font-weight: 900;
    font-size: 14px;
    color: rgba(15, 23, 42, .85);
    background: rgba(255, 255, 255, .85);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 6px 8px;
    line-height: 1;
    user-select: none;
}

.admin-image-delete {
    position: absolute;
    right: 10px;
    top: 10px;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, .9);
    color: rgba(15, 23, 42, .9);
    font-size: 18px;
    font-weight: 900;
    line-height: 1;
    cursor: pointer;
}

.admin-image-delete:hover {
    filter: brightness(.98);
}

.product-gallery-main {
    position: relative;
    padding: 0;
    border: 0;
    background: transparent;
    width: 100%;
    display: block;
    cursor: zoom-in;
}

.product-gallery-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: rgba(15, 23, 42, .95);
    opacity: 0;
    transition: opacity .15s ease;
}

.product-gallery-main:hover .thumb,
.product-thumb:hover img {
    filter: grayscale(1) brightness(.85);
}

.product-gallery-main:hover .product-gallery-overlay,
.product-thumb:hover .product-thumb-overlay {
    opacity: 1;
}

.product-gallery-main .thumb {
    transition: filter .15s ease;
}

.product-gallery-thumbs {
    display: flex;
    gap: 10px;
    padding: 12px;
    border-top: 1px solid var(--border);
}

.product-thumb {
    position: relative;
    padding: 0;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    width: 74px;
    height: 74px;
    background: var(--card);
    cursor: zoom-in;
}

.product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: filter .15s ease;
}

.product-thumb-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: rgba(15, 23, 42, .95);
    opacity: 0;
    transition: opacity .15s ease;
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 60;
}

.lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(2, 6, 23, .72);
}

.lightbox-panel {
    position: absolute;
    inset: 0;
    margin: auto;
    width: min(1000px, calc(100% - 32px));
    height: min(720px, calc(100% - 32px));
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: var(--shadow);
    display: grid;
    grid-template-rows: 1fr auto;
    overflow: hidden;
}

.lightbox-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #0b1020;
}

.lightbox-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .2);
    background: rgba(2, 6, 23, .35);
    color: #fff;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .2);
    background: rgba(2, 6, 23, .35);
    color: #fff;
    font-size: 26px;
    cursor: pointer;
}

.lightbox-nav.prev {
    left: 10px;
}

.lightbox-nav.next {
    right: 10px;
}

.lightbox-thumbs {
    display: flex;
    gap: 10px;
    padding: 12px;
    overflow-x: auto;
    border-top: 1px solid var(--border);
    background: #fff;
}

.lightbox-thumb {
    padding: 0;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    width: 64px;
    height: 64px;
    background: var(--card);
    cursor: pointer;
    flex: 0 0 auto;
}

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

.lightbox-thumb.is-active {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 106, 61, .18);
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 12px;
    color: var(--muted);
    width: fit-content
}

/* Admin / status badges (soft, not shouty) */
.status-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .01em;
    background: rgba(15, 23, 42, .04);
    color: var(--muted);
    white-space: nowrap;
}

.status-badge--accepted {
    background: rgba(34, 197, 94, .12);
    border-color: rgba(34, 197, 94, .28);
    color: #166534;
}

.status-badge--refused {
    background: rgba(239, 68, 68, .10);
    border-color: rgba(239, 68, 68, .25);
    color: #991b1b;
}

.status-badge--unknown {
    background: rgba(100, 116, 139, .10);
    border-color: rgba(100, 116, 139, .22);
    color: #334155;
}

.price {
    font-weight: 900;
    letter-spacing: -.01em
}

.price-block {
    display: inline-flex;
    align-items: baseline;
    justify-content: flex-end;
    gap: 10px;
    flex-wrap: wrap
}

.price-current {
    font-weight: 950;
}

.price-old {
    color: var(--muted);
    text-decoration: line-through;
    font-weight: 800;
    opacity: .65
}

.price-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
    border-radius: 999px;
    background: var(--primary);
    color: var(--on-primary);
    font-weight: 950;
    font-size: 12px;
    letter-spacing: .02em;
    white-space: nowrap
}

/* Catalogue layout (e-commerce) */
.catalog-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    align-items: start;
}

@media(min-width: 980px) {
    .catalog-layout {
        grid-template-columns: 320px 1fr;
        gap: 18px;
    }
}

.catalog-filters {
    position: sticky;
    top: 88px;
}

@media(max-width: 979px) {
    .catalog-filters {
        position: static;
    }
}

.product-card .card__body {
    gap: 8px;
}

.product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card .card__body {
    flex: 1 1 auto;
}

.product-card .card__footer {
    margin-top: auto;
}

.product-title {
    display: -webkit-box;
    line-clamp: 1;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-desc {
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Product page */
.product {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: start
}

@media(min-width:920px) {
    .product {
        grid-template-columns: 1.2fr .8fr;
    }
}

.panel {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px;
    position: sticky;
    top: 88px;
    box-shadow: var(--shadow)
}

.divider {
    height: 1px;
    background: var(--border);
    margin: 14px 0
}

/* Typography helpers */
.muted {
    color: var(--muted)
}

.h1 {
    font-size: 28px;
    margin: 0 0 8px 0;
    letter-spacing: -.02em
}

.h2 {
    font-size: 18px;
    margin: 0 0 12px 0;
    letter-spacing: -.01em
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border-radius: 12px;
    border: 1px solid var(--border);
    text-decoration: none;
    background: var(--card);
    font-weight: 800
}

.btn.hover-primary {
    transition: background-color .12s ease, border-color .12s ease, color .12s ease, transform .12s ease;
}

.btn.hover-primary:hover,
.btn.hover-primary:focus-visible {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--on-primary);
}

.btn.primary {
    background: var(--primary);
    color: var(--on-primary);
    border-color: var(--primary);
    box-shadow: 0 12px 26px rgba(255, 106, 61, .22)
}

.btn.wide {
    width: 100%;
    padding: 14px 16px;
    border-radius: 999px
}

.btn.pill {
    border-radius: 999px;
    padding: 12px 18px
}

.btn.light {
    background: #fff;
    border-color: rgba(255, 255, 255, .35);
    color: #0f172a
}

/* Forms */
label {
    font-size: 13px;
    font-weight: 800
}

input,
select,
textarea {
    padding: 11px 12px;
    border-radius: 12px;
    border: 1px solid var(--border);
    font-size: 14px;
    background: #fff
}

.input {
    width: 100%
}

.notice {
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: #fff
}

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

.list {
    list-style: none;
    padding: 0;
    margin: 12px 0 0;
    display: flex;
    flex-direction: column;
    gap: 10px
}

.list li {
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--card)
}

.payment-list li {
    transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease;
}

.payment-list li:hover {
    background: var(--primary);
    color: var(--on-primary);
    border-color: var(--primary);
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.payment-list li:focus-within {
    background: var(--primary);
    color: var(--on-primary);
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

.payment-list li:hover .muted,
.payment-list li:focus-within .muted {
    color: rgba(255, 255, 255, .88);
}

.payment-list li:hover b,
.payment-list li:focus-within b {
    color: var(--on-primary);
}

.payment-list li .tag {
    transition: background-color .12s ease, border-color .12s ease, color .12s ease;
}

.payment-list li:hover .tag {
    background: transparent;
    border-color: rgba(255, 255, 255, .7);
    color: var(--on-primary);
}

.payment-list li:focus-within .tag {
    background: transparent;
    border-color: rgba(255, 255, 255, .8);
    color: var(--on-primary);
}

/* Auth */
.centered {
    max-width: 560px;
    margin: 0 auto
}

.stack {
    display: flex;
    flex-direction: column;
    gap: 12px
}

/* Accordions */
details.accordion {
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--card);
    overflow: hidden
}

details.accordion+details.accordion {
    margin-top: 10px
}

details.accordion summary {
    cursor: pointer;
    list-style: none;
    padding: 16px 14px;
    font-weight: 900;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px
}

details.accordion summary::-webkit-details-marker {
    display: none
}

details.accordion summary::after {
    content: "▾";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--muted);
    font-size: 16px;
    line-height: 1;
    transition: transform .18s ease, color .18s ease
}

details.accordion[open] summary::after {
    transform: rotate(180deg);
    color: var(--fg)
}

details.accordion .accordion-body {
    padding: 12px 14px 14px;
    color: var(--muted);
    border-top: 1px solid var(--border)
}

/* Product page: match peach accordion cards */
.product .panel details.accordion {
    background: rgba(255, 106, 61, .12);
    border-color: rgba(255, 106, 61, .18);
}

.product .panel details.accordion summary::after {
    border: 0;
    background: transparent;
    width: auto;
    height: auto;
    border-radius: 0;
    color: var(--fg);
    font-size: 18px;
}

.product .panel details.accordion .accordion-body {
    border-top-color: rgba(255, 106, 61, .14);
}

/* Services Section */
.services {
    background: #f8f9fa;
    padding: 80px 20px;
    margin-top: 60px;
    color: #1e293b;
}

.services.full-bleed {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding-left: max(22px, calc((100vw - 1100px)/2 + 22px));
    padding-right: max(22px, calc((100vw - 1100px)/2 + 22px));
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 40px;
    text-align: center;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: #eef0f2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #334155;
}

.service-icon svg {
    width: 32px;
    height: 32px;
    stroke-width: 1.5;
    stroke: currentColor;
    fill: none;
}

.service-item h3 {
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0;
    color: #0f172a;
}

.service-item p {
    font-size: 15px;
    color: #475569;
    margin: 0;
    line-height: 1.6;
    max-width: 320px;
}

/* Reviews */
.reviews {
    margin-top: 32px;
    background: var(--reviews-bg);
    color: var(--reviews-fg);
    border-radius: 22px;
    padding: 46px 22px 130px;
    box-shadow: 0 30px 80px rgba(2, 6, 23, .35)
}

.reviews.full-bleed {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    border-radius: 0;
    padding-left: max(22px, calc((100vw - 1100px)/2 + 22px));
    padding-right: max(22px, calc((100vw - 1100px)/2 + 22px));
    overflow-x: clip
}

.reviews-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto
}

.pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    font-weight: 900;
    font-size: 12px;
    letter-spacing: .06em
}

.reviews-title {
    font-size: 44px;
    letter-spacing: -.03em;
    margin: 14px 0 6px
}

.reviews-subtitle {
    color: rgba(255, 255, 255, .74);
    font-size: 15px;
    margin: 0 0 18px
}

.reviews-empty {
    margin-top: 18px;
    text-align: center;
    color: rgba(255, 255, 255, .74)
}

.reviews-carousel {
    position: relative;
    margin-top: 30px
}

.carousel-track {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 20px 44px 26px;
    scrollbar-width: none
}

.carousel-track::-webkit-scrollbar {
    display: none
}

.review-card {
    scroll-snap-align: start;
    min-width: 280px;
    max-width: 280px;
    background: #fff;
    border-radius: 18px;
    padding: 22px 18px;
    min-height: 420px;
    box-shadow: 0 18px 60px rgba(0, 0, 0, .35);
    border: 1px solid rgba(15, 23, 42, .08);
    position: relative
}

@media(min-width:920px) {
    .review-card {
        min-width: 320px;
        max-width: 320px
    }
}

.review-stars-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border: 1px solid rgba(15, 23, 42, .12);
    border-radius: 10px;
    padding: 4px 10px;
    font-weight: 900;
    font-size: 12px;
    letter-spacing: 2px;
    color: #ff6a3d;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .18)
}

.review-name {
    margin-top: 20px;
    font-weight: 900;
    font-size: 16px;
    color: #0f172a
}

.review-text {
    margin-top: 14px;
    color: #475569;
    font-size: 15px;
    line-height: 1.7
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(15, 23, 42, .12);
    background: rgba(255, 255, 255, .68);
    backdrop-filter: blur(6px);
    color: rgba(15, 23, 42, .55);
    font-size: 28px;
    line-height: 44px;
    text-align: center;
    cursor: pointer;
    z-index: 5;
    box-shadow: 0 18px 40px rgba(2, 6, 23, .18)
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, .78)
}

.carousel-btn.prev {
    left: 12px
}

.carousel-btn.next {
    right: 12px
}

/* Sticky buy bar (activé à l'arrivée sur les avis) */
.sticky-buybar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 30;
    display: flex;
    justify-content: center;
    padding: 10px 12px 10px;
    pointer-events: none;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity .16s ease, transform .16s ease
}

.sticky-buybar.is-active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto
}

.sticky-buybar-inner {
    width: min(1100px, 100%);
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, .12);
    padding: 12px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px
}

.sticky-buybar-left {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0
}

.sticky-buybar-thumb {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    object-fit: cover;
    background: var(--surface);
    border: 1px solid var(--border);
    flex: 0 0 auto
}

.sticky-buybar-meta {
    min-width: 0
}

.sticky-buybar-title {
    font-weight: 900;
    letter-spacing: -.02em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 52vw
}

.sticky-buybar-prices {
    display: flex;
    gap: 10px;
    align-items: baseline;
    margin-top: 2px
}

.sticky-buybar-price {
    font-weight: 900;
    color: var(--muted);
    font-size: 13px
}

.sticky-buybar-cta {
    border-radius: 999px;
    padding: 12px 18px;
    white-space: nowrap
}

@media(max-width:520px) {
    .sticky-buybar {
        bottom: 0
    }

    .sticky-buybar-title {
        max-width: 44vw
    }

    .sticky-buybar-cta {
        padding: 12px 14px
    }
}

/* Admin */
.admin-shell {
    max-width: 1100px;
    margin: 0 auto;
    padding: 28px
}

@media(max-width:520px) {
    .admin-shell {
        padding: 16px
    }
}

@media(min-width:1100px) {
    .admin-shell {
        max-width: 1400px
    }
}

.admin-strong {
    font-weight: 900;
    letter-spacing: -.01em
}

.admin-num {
    text-align: right;
    white-space: nowrap
}

.admin-search {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap
}

.admin-form {
    width: 100%
}

.admin-form-row {
    display: flex;
    gap: 12px;
    align-items: flex-end;
    flex-wrap: wrap
}

.admin-form-actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    margin-top: 14px
}

.admin-inline-form {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap
}

.admin-table-wrap {
    overflow: auto;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--card)
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 760px
}

.admin-table th,
.admin-table td {
    padding: 12px;
    border-bottom: 1px solid var(--border);
    vertical-align: top
}

.admin-table th {
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
    text-align: left;
    background: rgba(255, 255, 255, .02)
}

.admin-table tr:last-child td {
    border-bottom: 0
}

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

.admin-tab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 12px;
    border: 1px solid var(--border);
    border-radius: 999px;
    text-decoration: none;
    font-weight: 800;
    background: var(--card)
}

.admin-table-section {
    margin-top: 18px
}

.admin-row-actions {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    flex-wrap: nowrap;
    white-space: nowrap
}

.admin-icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: var(--card);
    text-decoration: none;
    font-weight: 900;
    line-height: 1;
    cursor: pointer
}

.admin-icon-btn:hover {
    filter: brightness(1.02)
}

.admin-icon-btn.danger {
    border-color: var(--border)
}

.admin-section-title {
    font-weight: 950;
    letter-spacing: -.02em
}

/* Admin products */
.admin-products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px
}

@media(min-width:920px) {
    .admin-products-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.admin-product-title {
    font-weight: 950;
    letter-spacing: -.02em;
    font-size: 18px
}

.admin-product-meta {
    color: var(--muted);
    font-weight: 650;
    margin-top: 4px
}

.admin-product-thumbs {
    display: flex;
    gap: 10px;
    margin-top: 12px;
    flex-wrap: wrap
}

.admin-product-thumb {
    width: 64px;
    height: 64px;
    border-radius: 10px;
    border: 1px solid var(--border);
    object-fit: cover
}

.admin-product-form {
    margin-top: 14px;
    display: flex;
    flex-direction: column;
    gap: 12px
}

.admin-product-form .divider {
    margin: 18px 0 8px
}

.admin-form-row>div {
    display: flex;
    flex-direction: column;
    gap: 6px
}

.admin-product .card__body {
    gap: 14px
}

.admin-top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin: 0 0 18px
}

.admin-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none
}

.admin-brand-logo {
    width: 28px;
    height: 28px;
    border-radius: 10px;
    background: rgba(255, 106, 61, .14);
    padding: 6px
}

.admin-brand-title {
    font-weight: 900;
    letter-spacing: -.02em;
    font-size: 22px;
    line-height: 1.1
}

.admin-brand-sub {
    color: var(--muted);
    font-weight: 650;
    margin-top: 4px
}

.admin-nav {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center
}

.admin-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px
}

@media(min-width:920px) {
    .admin-grid {
        grid-template-columns: 1fr 1fr;
    }
}

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

@media(min-width:720px) {
    .kpis {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.kpi {
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--card);
    padding: 12px
}

.kpi-label {
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase
}

.kpi-value {
    margin-top: 6px;
    font-weight: 950;
    letter-spacing: -.02em;
    font-size: 18px
}

.mini-list {
    list-style: none;
    padding: 0;
    margin: 12px 0 0;
    display: flex;
    flex-direction: column;
    gap: 10px
}

.mini-list li {
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--card);
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: baseline
}

.mini-list .mini-left {
    min-width: 0
}

.mini-list .mini-title {
    font-weight: 900;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 44ch
}

.mini-list .mini-sub {
    color: var(--muted);
    font-size: 13px;
    margin-top: 2px
}

.mini-list .mini-right {
    font-weight: 950;
    white-space: nowrap
}

/* Footer */
.footer {
    border-top: 1px solid var(--border);
    background: var(--card)
}

.footer-topbar {
    border-bottom: 1px solid var(--border);
    background: var(--card)
}

.footer-topbar-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 18px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: nowrap
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 18px 28px 100px
}

.footer-brandline {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex: 0 0 auto
}

.footer-logo {
    width: 28px;
    height: 28px;
    border-radius: 10px;
    background: rgba(255, 106, 61, .14);
    color: var(--primary);
    padding: 6px
}

.footer-brand {
    font-weight: 900;
    letter-spacing: -.02em;
    text-decoration: none;
    font-size: 16px
}

.footer-links,
.footer-social {
    display: flex;
    gap: 16px;
    flex-wrap: nowrap;
    align-items: center
}

.footer-links {
    min-width: 0;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none
}

.footer-links::-webkit-scrollbar {
    display: none
}

.footer-link {
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
    color: var(--muted);
    font-weight: 500;
    font-size: 14px
}

.footer-link:hover {
    color: var(--primary)
}

.footer-social {
    gap: 10px;
    flex: 0 0 auto
}

.social-icon {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(15, 23, 42, .06);
    color: var(--fg);
    text-decoration: none;
    border: 1px solid var(--border);
    transition: transform .12s ease, background .12s ease
}

.social-icon:hover {
    background: rgba(15, 23, 42, .09);
    transform: translateY(-1px)
}

.social-icon-img {
    width: 18px;
    height: 18px;
    display: block
}

.footer-payments {
    display: flex;
    gap: 10px;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    padding: 12px 0;
    overflow-x: auto;
    scrollbar-width: none
}

.footer-payments::-webkit-scrollbar {
    display: none
}

/* Drag and Drop Upload */
.drop-zone {
    max-width: 100%;
    height: 120px;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    color: var(--muted);
    border: 2px dashed var(--border);
    border-radius: var(--radius);
    background: var(--surface);
    transition: border .2s ease, background .2s ease;
    position: relative;
    flex-direction: column;
    gap: 10px;
}

.drop-zone--over {
    border-style: solid;
    border-color: var(--primary);
    background: rgba(255, 106, 61, .05);
}

.drop-zone__input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    display: block;
    z-index: 10;
}

.drop-zone__thumb {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
    background-color: #cccccc;
    background-size: cover;
    position: relative;
}

.drop-zone__thumb::after {
    content: attr(data-label);
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 5px 0;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.75);
    font-size: 14px;
    text-align: center;
}

.drop-zone-preview {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 10px;
    margin-top: 10px;
}

.drop-zone-preview-item {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border);
    position: relative;
}

.drop-zone-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.pay-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--fg);
    border: 1px solid var(--border);
    border-radius: 6px;
    background: #fff;
    padding: 6px 10px;
    flex: 0 0 auto
}

.pay-logo-img {
    height: 20px;
    width: auto;
    display: block
}

.footer-bottom {
    margin-top: 12px;
    font-size: 14px
}

@media(max-width:980px) {
    .footer-topbar-inner {
        flex-wrap: wrap
    }

    .footer-links {
        flex-basis: 100%
    }
}

/* Modal de remboursement */
.refund-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(4px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
}

.refund-modal-overlay.active {
    display: flex;
}

.refund-modal {
    background: var(--card);
    border-radius: var(--radius);
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.3);
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    animation: modalSlideIn 0.2s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.refund-modal-header {
    padding: 24px;
    border-bottom: 1px solid var(--border);
}

.refund-modal-title {
    font-size: 20px;
    font-weight: 950;
    letter-spacing: -0.02em;
    margin: 0;
}

.refund-modal-body {
    padding: 24px;
}

.refund-option {
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 16px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: all 0.15s ease;
    display: flex;
    align-items: center;
    gap: 12px;
}

.refund-option:hover {
    border-color: var(--primary);
    background: rgba(255, 106, 61, 0.03);
}

.refund-option.selected {
    border-color: var(--primary);
    background: rgba(255, 106, 61, 0.08);
}

.refund-option input[type="radio"] {
    width: 20px;
    height: 20px;
    margin: 0;
    cursor: pointer;
}

.refund-option-label {
    flex: 1;
}

.refund-option-title {
    font-weight: 700;
    margin-bottom: 4px;
}

.refund-option-desc {
    font-size: 14px;
    color: var(--muted);
}

.refund-partial-input {
    margin-top: 16px;
    display: none;
}

.refund-partial-input.visible {
    display: block;
}

.refund-partial-input label {
    display: block;
    font-weight: 650;
    margin-bottom: 8px;
    font-size: 14px;
}

.refund-partial-input .input {
    width: 100%;
}

.refund-info {
    background: var(--surface);
    border-radius: var(--radius-sm);
    padding: 16px;
    margin-top: 16px;
    font-size: 14px;
    color: var(--muted);
}

.refund-info-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.refund-info-row:last-child {
    margin-bottom: 0;
}

.refund-info-label {
    font-weight: 650;
}

.refund-info-value {
    font-weight: 700;
    color: var(--fg);
}

.refund-modal-footer {
    padding: 20px 24px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.refund-error {
    background: #fee;
    border: 1px solid #fcc;
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    margin-bottom: 16px;
    color: #c00;
    font-size: 14px;
    display: none;
}

.refund-error.visible {
    display: block;
}

.refund-success {
    background: #efe;
    border: 1px solid #cfc;
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    margin-bottom: 16px;
    color: #060;
    font-size: 14px;
    display: none;
}

.refund-success.visible {
    display: block;
}




