/* Nespresso-style shop — matches main landing black/gold */
:root {
    --black: #0a0a0a;
    --gold: #c5a258;
    --gold-dark: #a88a3e;
    --line: #e8e8e8;
    --muted: #6b6b6b;
    --radius: 12px;
    /* Full desktop width — use padding for side gutters (works in all browsers) */
    --max: 1680px;
    --shop-gutter: clamp(16px, 4vw, 48px);
    --shadow-lg: 0 16px 60px rgba(0,0,0,0.18);
    --red: #e53935;
}

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

html { scroll-behavior: smooth; width: 100%; overflow-x: hidden; }

body {
    font-family: "Inter", -apple-system, sans-serif;
    color: var(--black);
    background: #f7f6f3;
    -webkit-font-smoothing: antialiased;
    margin: 0;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button { font-family: inherit; cursor: pointer; }

.shop-wrap {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: none;
}

/* Top bar */
.shop-topbar {
    background: var(--black);
    color: #fff;
    font-size: 12px;
    text-align: center;
    padding: 8px 16px;
    letter-spacing: 0.02em;
}

/* Header */
.shop-header {
    background: #fff;
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    z-index: 50;
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.shop-header__inner {
    max-width: var(--max);
    width: 100%;
    margin: 0 auto;
    padding: 14px var(--shop-gutter);
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    box-sizing: border-box;
}

.shop-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.shop-logo img {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    object-fit: contain;
    background: #fff;
    border: 1px solid var(--line);
    padding: 4px;
}

.shop-search {
    flex: 1;
    min-width: 200px;
    max-width: min(420px, 100%);
    position: relative;
}

.shop-search input {
    width: 100%;
    padding: 12px 16px 12px 44px;
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 14px;
    background: #fafafa;
}

.shop-search input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(197,162,88,0.15);
}

.shop-search svg {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.45;
}

.shop-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
}

.shop-lang {
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 600;
}

.shop-cart {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--black);
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 600;
}

.shop-cart .badge {
    background: var(--gold);
    color: var(--black);
    min-width: 22px;
    height: 22px;
    border-radius: 50%;
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Nav */
.shop-nav {
    max-width: var(--max);
    width: 100%;
    margin: 0 auto;
    padding: 0 var(--shop-gutter) 12px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    border-bottom: 1px solid var(--line);
    background: #fff;
    box-sizing: border-box;
}

.shop-nav a {
    font-size: 13px;
    font-weight: 600;
    color: var(--muted);
    padding: 6px 12px;
    border-radius: 8px;
}

.shop-nav a:hover,
.shop-nav a.is-active {
    color: var(--black);
    background: #f5f3ef;
}

/* Breadcrumb */
.shop-crumb {
    max-width: var(--max);
    width: 100%;
    margin: 0 auto;
    padding: 16px var(--shop-gutter) 8px;
    font-size: 13px;
    color: var(--muted);
    box-sizing: border-box;
}

.shop-crumb span { color: var(--black); font-weight: 500; }

/* Hero strip */
.shop-hero {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 20px 20px;
}

.shop-hero__inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 24px;
    align-items: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 16px;
    overflow: hidden;
    min-height: 200px;
}

.shop-hero__img {
    position: relative;
    min-height: 220px;
}

.shop-hero__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shop-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.5) 0%, transparent 70%);
}

.shop-hero__text {
    padding: 28px 28px 28px 0;
    color: #fff;
    position: relative;
    z-index: 1;
}

.shop-hero__text h1 {
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    line-height: 1.3;
    margin-bottom: 10px;
}

.shop-hero__text p {
    font-size: 14px;
    opacity: 0.88;
    line-height: 1.5;
}

/* Layout */
.shop-layout {
    max-width: var(--max);
    margin: 0 auto;
    padding: 8px 20px 48px;
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 28px;
    align-items: start;
}

/* Filters */
.shop-filters {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 18px;
    position: sticky;
    top: 100px;
}

.shop-filters h2 {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 14px;
    color: var(--muted);
}

.filter-group { margin-bottom: 18px; }

.filter-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    margin-bottom: 8px;
    cursor: pointer;
}

.filter-group input { accent-color: var(--black); }

/* Toolbar */
.shop-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 18px;
}

.shop-toolbar__count {
    font-size: 14px;
    color: var(--muted);
}

.shop-toolbar select {
    padding: 10px 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    font-size: 14px;
    background: #fff;
}

/* Product grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
}

/* Kompakter Shop: 4 Maschinen, volle Breite */
.shop-layout--slim {
    grid-template-columns: 1fr;
    padding-top: 12px;
}

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

.shop-main-col--full {
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
}

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

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

.shop-hero-pro--slim .shop-hero-pro__content {
    padding: 20px 22px 24px;
}

.shop-hero-pro--slim .shop-hero-pro__lead {
    font-size: 15px;
}

.shop-footer--slim .shop-footer__cols {
    max-width: 720px;
}

.product-card__price--zero {
    color: #7a5e16;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.product-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    transition: box-shadow 0.2s, transform 0.2s;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

.product-card__img {
    aspect-ratio: 1;
    background: #fafafa;
    position: relative;
}

.product-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-card__img img.product-card__photo {
    object-position: center 42%;
}

.product-card__img::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(
        180deg,
        rgba(255,255,255,0) 0%,
        rgba(0,0,0,0.04) 100%
    );
}

.product-card__badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--gold);
    color: var(--black);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
    text-transform: uppercase;
}

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

.product-card__cat {
    font-size: 11px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 6px;
}

.product-card h3 {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.35;
    margin-bottom: 8px;
    min-height: 2.7em;
}

.product-card__meta {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 10px;
}

.product-card__price-row {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-top: auto;
    margin-bottom: 12px;
}

.product-card__price {
    font-size: 20px;
    font-weight: 700;
}

.product-card__price--old {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
}

.product-card__btn {
    width: 100%;
    padding: 12px;
    background: var(--black);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
}

.product-card__btn:hover {
    background: #333;
}

/* Trust strip */
.shop-trust {
    max-width: var(--max);
    margin: 0 auto 32px;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.shop-trust__item {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 16px 18px;
    font-size: 13px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.shop-trust__item strong { display: block; margin-bottom: 4px; }

/* Footer */
.shop-footer {
    margin-top: auto;
    background: var(--black);
    color: rgba(255,255,255,0.65);
    padding: 32px 20px;
    font-size: 12px;
}

.shop-footer__inner {
    max-width: var(--max);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: space-between;
    align-items: flex-start;
}

.shop-footer a {
    color: var(--gold);
    margin-right: 16px;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* ===== Marquee ===== */
.shop-marquee {
    background: linear-gradient(90deg, #1a1a1a, #2a2a2a);
    color: rgba(255,255,255,0.85);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    overflow: hidden;
    white-space: nowrap;
}

.shop-marquee__track {
    display: inline-flex;
    gap: 48px;
    padding: 8px 0;
    animation: marquee 28s linear infinite;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Subnav */
.shop-subnav {
    position: relative;
    z-index: 2;
    background: #fff;
    border-bottom: 1px solid var(--line);
}

.shop-nav {
    gap: 6px;
}

.shop-nav a,
.shop-nav__btn {
    font-size: 13px;
    font-weight: 600;
    color: var(--muted);
    padding: 8px 14px;
    border-radius: 999px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-family: inherit;
}

.shop-nav a:hover,
.shop-nav__btn:hover,
.shop-nav a.is-active,
.shop-nav__btn.is-active {
    color: var(--black);
    background: #f5f3ef;
}

.shop-icon-btn {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    border: 1px solid var(--line);
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.shop-icon-btn:hover { border-color: var(--gold); }

.shop-crumb a { color: var(--muted); }
.shop-crumb a:hover { color: var(--gold-dark); }

/* ===== Hero pro ===== */
.shop-hero-pro {
    max-width: var(--max);
    margin: 0 auto;
    padding: 12px 20px 24px;
}

.shop-hero-pro__grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 0;
    background: #111;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.shop-hero-pro__visual {
    position: relative;
    min-height: 320px;
}

.shop-hero-pro__visual picture {
    display: block;
    width: 100%;
    height: 100%;
}

.shop-hero-pro__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 320px;
}

.shop-hero-pro__shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.55) 0%, transparent 55%);
    pointer-events: none;
}

.shop-hero-pro__credit {
    position: absolute;
    bottom: 10px;
    right: 12px;
    z-index: 4;
    font-size: 10px;
    color: rgba(255,255,255,0.5);
}

.shop-hero-pro__content {
    padding: 32px 28px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.shop-hero-pro__eyebrow {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 10px;
}

.shop-hero-pro__content h1 {
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(1.25rem, 2.8vw, 1.85rem);
    line-height: 1.3;
    margin-bottom: 12px;
}

.shop-hero-pro__lead {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 20px;
}

.shop-hero-pro__stats {
    display: flex;
    gap: 24px;
    margin-bottom: 22px;
}

.shop-hero-pro__stats div {
    text-align: left;
}

.shop-hero-pro__stats strong {
    display: block;
    font-size: 22px;
    color: var(--gold);
}

.shop-hero-pro__stats span {
    font-size: 11px;
    opacity: 0.75;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

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

.btn-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
    border-radius: 999px;
    border: none;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black);
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
}

.btn-gold:hover { filter: brightness(1.05); }

.btn-ghost {
    padding: 12px 20px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.35);
    background: transparent;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
}

.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

.btn-block { width: 100%; }

/* Spotlight */
.shop-spotlight {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 20px 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.spot-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 140px 1fr;
    align-items: center;
    min-height: 120px;
}

.spot-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 120px;
}

.spot-card__logo-img {
    object-fit: contain !important;
    padding: 20px;
    background: #fafafa;
}

.spot-card__body { padding: 16px; }
.spot-card__body h2 { font-size: 16px; margin-bottom: 6px; }
.spot-card__body p { font-size: 13px; color: var(--muted); }

/* Service features row */
.shop-features {
    background: #fff;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 20px;
}

.shop-features__inner {
    max-width: var(--max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.shop-features__item {
    text-align: center;
    padding: 12px 8px;
    border-radius: 12px;
    transition: background 0.2s;
}

.shop-features__item:hover {
    background: #fafafa;
}

.shop-features__icon {
    display: block;
    font-size: 26px;
    margin-bottom: 8px;
}

.shop-features__item strong {
    display: block;
    font-size: 14px;
    margin-bottom: 4px;
}

.shop-features__item span:last-child {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.4;
}

/* Visual strip */
.shop-visual-strip {
    max-width: var(--max);
    margin: 0 auto;
    padding: 24px 20px 8px;
}

.shop-visual-strip__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.shop-visual-strip figure {
    margin: 0;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--line);
    background: #fff;
    box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}

.shop-visual-strip img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.shop-visual-strip figcaption {
    padding: 12px 14px;
    font-size: 13px;
    font-weight: 600;
    color: var(--muted);
}

@media (max-width: 768px) {
    .shop-features__inner {
        grid-template-columns: repeat(2, 1fr);
    }
    .shop-visual-strip__inner {
        grid-template-columns: 1fr;
    }
}

/* Pay row */
.shop-pay-row {
    max-width: var(--max);
    margin: 0 auto 16px;
    padding: 12px 20px;
    font-size: 12px;
    color: var(--muted);
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    justify-content: center;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: #fff;
}

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

.shop-filters--pro {
    top: 120px;
}

.filter-block {
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--line);
}

.filter-block h3,
.filter-group h3 {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--muted);
    margin-bottom: 10px;
}

.price-range {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.price-range input {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    font-size: 14px;
}

.link-btn {
    background: none;
    border: none;
    color: var(--gold-dark);
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    text-decoration: underline;
    padding: 0;
}

.shop-toolbar--pro {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 12px 16px;
}

.shop-toolbar__right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sort-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--muted);
}

.sort-wrap select {
    padding: 8px 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    font-size: 14px;
}

/* Product card advanced */
.product-card__wish {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.15s;
}

.product-card__wish:hover { transform: scale(1.08); }
.product-card__wish.is-active svg { fill: var(--red); stroke: var(--red); }

.product-card__badge--sale { background: #c62828; color: #fff; }
.product-card__badge--new { background: #0d47a1; color: #fff; }

.product-card__rating {
    font-size: 12px;
    color: var(--gold-dark);
    margin-bottom: 6px;
}

.product-card__rating span { color: var(--muted); margin-left: 4px; }

.product-card__stock {
    font-size: 12px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.product-card__stock .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #43a047;
}

.product-card__stock--no .dot { background: #c62828; }
.product-card__stock--no { color: #c62828; }

.product-card__img--svg {
    object-fit: contain !important;
    padding: 28px;
    background: #fafafa;
}

.product-card__btn--ghost {
    background: #fff !important;
    color: var(--muted) !important;
    border: 1px solid var(--line) !important;
}

.product-card.is-hidden { display: none !important; }

/* Newsletter */
.shop-newsletter {
    background: #1a1a1a;
    color: #fff;
    padding: 48px 20px;
    margin-top: 24px;
}

.shop-newsletter__inner {
    max-width: var(--max);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: space-between;
    align-items: center;
}

.shop-newsletter__inner h2 {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 22px;
    margin-bottom: 6px;
}

.shop-newsletter__inner p { opacity: 0.8; font-size: 14px; }

.shop-newsletter__form {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.shop-newsletter__form input {
    min-width: 240px;
    padding: 12px 16px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.08);
    color: #fff;
    font-size: 14px;
}

.shop-newsletter__form input::placeholder { color: rgba(255,255,255,0.45); }

/* Footer pro */
.shop-footer--pro {
    padding: 40px var(--shop-gutter) 32px;
}

.shop-footer__cols {
    max-width: var(--max);
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 28px;
    box-sizing: border-box;
}

.shop-footer__cols strong {
    display: block;
    color: #fff;
    margin-bottom: 12px;
    font-size: 13px;
}

.shop-footer__cols a,
.shop-footer__cols p {
    display: block;
    font-size: 13px;
    margin-bottom: 8px;
    color: rgba(255,255,255,0.55);
}

.shop-footer__cols a:hover { color: var(--gold); }

.shop-footer__credit {
    font-size: 11px !important;
    line-height: 1.45;
    color: rgba(255,255,255,0.42) !important;
    margin-bottom: 12px !important;
}

/* Cart drawer */
.cart-drawer {
    position: fixed;
    inset: 0;
    z-index: 200;
    pointer-events: none;
    visibility: hidden;
}

.cart-drawer.is-open {
    pointer-events: auto;
    visibility: visible;
}

.cart-drawer__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    opacity: 0;
    transition: opacity 0.25s;
}

.cart-drawer.is-open .cart-drawer__backdrop { opacity: 1; }

.cart-drawer__panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(420px, 100%);
    height: 100%;
    background: #fff;
    box-shadow: -8px 0 40px rgba(0,0,0,0.15);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.cart-drawer.is-open .cart-drawer__panel { transform: translateX(0); }

.cart-drawer__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--line);
}

.cart-drawer__head h2 { font-size: 18px; }

.cart-drawer__close {
    width: 40px;
    height: 40px;
    border: none;
    background: #f5f5f5;
    border-radius: 10px;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
}

.cart-drawer__empty {
    text-align: center;
    padding: 28px 20px;
    font-size: 14px;
    color: var(--muted);
    margin: 0;
}

.cart-drawer__list {
    flex: 1;
    overflow-y: auto;
    padding: 8px 16px 16px;
    list-style: none;
}

.cart-line {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    font-size: 14px;
}

.cart-line__title {
    flex: 1;
    line-height: 1.35;
    font-weight: 500;
}

.cart-line__meta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.cart-line__meta strong {
    font-size: 15px;
    white-space: nowrap;
}

.cart-line__remove {
    width: 30px;
    height: 30px;
    border: none;
    border-radius: 8px;
    background: #f0f0f0;
    color: #555;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    transition: background 0.15s;
}

.cart-line__remove:hover {
    background: #e0e0e0;
}

.cart-drawer__footer {
    padding: 16px 20px 24px;
    border-top: 1px solid var(--line);
}

.cart-drawer__total {
    display: flex;
    justify-content: space-between;
    margin-bottom: 14px;
    font-size: 16px;
}

/* Toast */
.shop-toast {
    position: fixed;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%) translateY(120px);
    background: var(--black);
    color: #fff;
    padding: 12px 22px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    z-index: 300;
    opacity: 0;
    transition: transform 0.35s ease, opacity 0.35s ease;
    pointer-events: none;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.shop-toast.is-visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

@media (max-width: 900px) {
    .shop-layout {
        grid-template-columns: 1fr;
    }
    .shop-filters {
        position: static;
    }
    .shop-hero__inner {
        grid-template-columns: 1fr;
    }
    .shop-hero__text {
        padding: 20px;
    }
    .shop-hero__img { min-height: 180px; }
    /* Do not collapse the showcase hero here — it uses its own breakpoint */
    .shop-hero-pro__grid:not(.shop-hero-pro__grid--showcase) {
        grid-template-columns: 1fr;
    }
    .shop-hero-pro__visual { min-height: 220px; }
    .shop-spotlight {
        grid-template-columns: 1fr;
    }
    .spot-card {
        grid-template-columns: 100px 1fr;
    }
    .shop-layout--pro {
        grid-template-columns: 1fr;
    }
    .shop-marquee__track {
        animation-duration: 40s;
    }
}

/* ========== Showcase hero — vertical machines + pro polish ========== */
:root {
    --pro-radius: 20px;
}

.shop-wrap--pro {
    background: linear-gradient(185deg, #e8e6e1 0%, #f5f4f0 28%, #f7f6f3 100%);
}

.shop-topbar--pro {
    background: linear-gradient(90deg, #070707 0%, #141210 40%, #070707 100%);
    background-size: 200% auto;
    animation: proTopbarDrift 14s ease-in-out infinite;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 11px;
}

@keyframes proTopbarDrift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.shop-header--pro {
    box-shadow: 0 4px 30px rgba(0,0,0,0.07);
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.shop-crumb--pro {
    letter-spacing: 0.02em;
}

.shop-hero-pro--showcase {
    max-width: var(--max);
    width: 100%;
    margin: 0 auto;
    padding: 16px var(--shop-gutter) 12px;
    box-sizing: border-box;
}

.shop-hero-pro__grid--showcase {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 36%);
    align-items: stretch;
    min-height: 520px;
    border-radius: var(--pro-radius);
    overflow: hidden;
    background: #0a0a0a;
    box-shadow:
        0 32px 90px rgba(0,0,0,0.28),
        0 0 0 1px rgba(197,162,88,0.18),
        inset 0 1px 0 rgba(255,255,255,0.06);
}

.shop-hero-pro__visual {
    position: relative;
    min-height: 460px;
}

.shop-hero-pro--showcase .shop-hero-pro__visual-inner {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.shop-hero-pro--showcase .shop-hero-pro__hero-img {
    width: 100%;
    height: 100%;
    min-height: 460px;
    object-fit: cover;
    display: block;
    transform-origin: 58% 38%;
    animation: heroKenBurns 22s ease-in-out infinite alternate;
}

@keyframes heroKenBurns {
    0% { transform: scale(1) rotate(0deg); }
    100% { transform: scale(1.09) rotate(0.35deg); }
}

.shop-hero-pro__mesh {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(118deg, rgba(197,162,88,0.2) 0%, transparent 42%),
        linear-gradient(328deg, rgba(0,0,0,0.55) 0%, transparent 55%);
    mix-blend-mode: overlay;
    animation: heroMeshPulse 12s ease-in-out infinite alternate;
}

@keyframes heroMeshPulse {
    0% { opacity: 0.75; }
    100% { opacity: 1; }
}

.shop-hero-pro--showcase .shop-hero-pro__shine {
    background: linear-gradient(
        100deg,
        rgba(0,0,0,0.65) 0%,
        rgba(0,0,0,0.08) 48%,
        transparent 65%
    );
}

.shop-hero-pro__orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(72px);
    opacity: 0.42;
    animation: heroOrbFloat 10s ease-in-out infinite alternate;
}

.shop-hero-pro__orb--1 {
    width: 200px;
    height: 200px;
    background: var(--gold);
    top: 12%;
    left: 8%;
}

.shop-hero-pro__orb--2 {
    width: 140px;
    height: 140px;
    background: rgba(255,255,255,0.7);
    bottom: 18%;
    right: 12%;
    animation-delay: -4s;
}

@keyframes heroOrbFloat {
    from { transform: translate(0, 0) scale(1); }
    to { transform: translate(16px, -12px) scale(1.08); }
}

.shop-hero-pro__panel {
    position: relative;
    padding: 26px 22px 24px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    background: linear-gradient(168deg, #141414 0%, #0a0a0a 42%, #101010 100%);
    overflow: hidden;
}

.shop-hero-pro__panel::before {
    content: "";
    position: absolute;
    top: -30%;
    right: -25%;
    width: 85%;
    height: 85%;
    background: radial-gradient(circle at 30% 30%, rgba(197,162,88,0.14) 0%, transparent 55%);
    pointer-events: none;
}

.shop-hero-pro--showcase .shop-hero-pro__content {
    position: relative;
    z-index: 1;
    padding: 0;
}

.shop-hero-pro--showcase .shop-hero-pro__content h1 {
    font-size: clamp(1.35rem, 2.6vw, 1.95rem);
    line-height: 1.22;
    letter-spacing: -0.02em;
}

.shop-hero-pro--showcase .shop-hero-pro__lead {
    font-size: 14px;
    line-height: 1.55;
    opacity: 0.82;
    margin-bottom: 16px;
}

.shop-hero-pro--showcase .shop-hero-pro__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 28px;
    margin-bottom: 18px;
}

.shop-hero-pro__stat {
    position: relative;
    padding-left: 14px;
    border-left: 2px solid rgba(197,162,88,0.55);
}

.shop-hero-pro__stat strong {
    font-size: 20px;
    color: var(--gold);
}

.shop-hero-pro__stat span {
    font-size: 10px;
    opacity: 0.72;
}

.btn-gold--pulse {
    animation: ctaPulseRing 3s ease-in-out infinite;
}

@keyframes ctaPulseRing {
    0%, 100% { box-shadow: 0 0 0 0 rgba(197,162,88,0.4); }
    50% { box-shadow: 0 0 0 12px rgba(197,162,88,0); }
}

.hero-product-stack {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: min(58vh, 520px);
    overflow-y: auto;
    padding-right: 4px;
    scrollbar-width: thin;
    scrollbar-color: rgba(197,162,88,0.5) transparent;
}

.hero-product-stack::-webkit-scrollbar {
    width: 5px;
}

.hero-product-stack::-webkit-scrollbar-thumb {
    background: rgba(197,162,88,0.45);
    border-radius: 99px;
}

.product-card--hero-row.product-card {
    display: grid;
    grid-template-columns: 84px 1fr auto;
    align-items: center;
    gap: 12px 14px;
    padding: 12px 14px;
    margin: 0;
    background: rgba(255,255,255,0.045);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 14px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
    opacity: 0;
    transform: translateY(16px);
    animation: heroRowReveal 0.65s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: calc(0.1s + 0.08s * var(--row-index, 0));
    transition: transform 0.22s ease, border-color 0.22s, background 0.22s;
}

@keyframes heroRowReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-card--hero-row:hover {
    transform: translateY(-3px);
    border-color: rgba(197,162,88,0.38);
    background: rgba(255,255,255,0.07);
    box-shadow: 0 16px 48px rgba(0,0,0,0.35);
}

.product-card--hero-row .product-card__img {
    width: 84px;
    min-width: 84px;
    height: 84px;
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
}

.product-card--hero-row .product-card__img::after {
    display: none;
}

.product-card--hero-row .product-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-card--hero-row .product-card__badge {
    font-size: 9px;
    padding: 3px 6px;
    top: 6px;
    left: 6px;
}

.product-card--hero-row .product-card__body {
    padding: 0;
    min-width: 0;
}

.product-card--hero-row .product-card__cat {
    font-size: 10px;
    color: rgba(255,255,255,0.42);
    margin-bottom: 4px;
}

.product-card--hero-row h3 {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 8px;
    min-height: 0;
}

.product-card--hero-row .product-card__price-row {
    margin: 0;
}

.product-card--hero-row .product-card__price--zero {
    color: var(--gold);
    font-size: 17px;
}

.product-card--hero-row .product-card__price--old {
    color: rgba(255,255,255,0.38);
    font-size: 13px;
}

.product-card__btn--hero {
    align-self: center;
    width: auto;
    min-width: 104px;
    padding: 10px 14px;
    font-size: 11px;
    font-weight: 700;
    border-radius: 10px;
    border: none;
    background: linear-gradient(140deg, var(--gold), var(--gold-dark));
    color: var(--black);
    text-transform: none;
    letter-spacing: 0.02em;
}

.product-card__btn--hero:hover {
    filter: brightness(1.09);
}

.shop-catalog-bar {
    max-width: var(--max);
    width: 100%;
    margin: 0 auto;
    padding: 8px var(--shop-gutter) 32px;
    box-sizing: border-box;
}

.shop-catalog-bar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
    padding: 16px 22px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}

.shop-footer--lux {
    border-top: 1px solid rgba(197,162,88,0.2);
    background: linear-gradient(180deg, #0a0a0a 0%, #070707 100%);
}

.shop-footer--lux .shop-footer__cols a:hover {
    color: var(--gold);
}

/* Stack showcase only on small screens (phones / narrow tablets) */
@media (max-width: 720px) {
    .shop-hero-pro__grid--showcase {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .shop-hero-pro--showcase .shop-hero-pro__visual {
        min-height: 260px;
    }

    .shop-hero-pro--showcase .shop-hero-pro__hero-img {
        min-height: 260px;
    }

    .hero-product-stack {
        max-height: none;
        overflow-y: visible;
    }

    .product-card--hero-row.product-card {
        grid-template-columns: 72px 1fr;
        grid-template-rows: auto auto;
    }

    .product-card--hero-row .product-card__btn--hero {
        grid-column: 1 / -1;
        width: 100%;
    }

    .product-card--hero-row .product-card__img {
        width: 72px;
        min-width: 72px;
        height: 72px;
    }
}

/* Large desktop: wider product rail, taller hero */
@media (min-width: 1200px) {
    .shop-hero-pro__grid--showcase {
        grid-template-columns: minmax(0, 1.2fr) minmax(380px, 520px);
        min-height: 560px;
    }

    .shop-hero-pro--showcase .shop-hero-pro__visual,
    .shop-hero-pro--showcase .shop-hero-pro__hero-img {
        min-height: 520px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .shop-topbar--pro,
    .shop-hero-pro--showcase .shop-hero-pro__hero-img,
    .shop-hero-pro__mesh,
    .shop-hero-pro__orb,
    .btn-gold--pulse {
        animation: none !important;
    }

    .shop-hero-pro--showcase .shop-hero-pro__hero-img {
        transform: none;
    }

    .product-card--hero-row.product-card {
        opacity: 1;
        transform: none;
        animation: none;
    }
}

/* ══════════════════════════════════════════════════════════════
   Reference layout — MOBILE FIRST (dark / gold), then desktop (641px+)
   ══════════════════════════════════════════════════════════════ */

body:has(.shop-reference) {
    background: #000;
    overflow-x: hidden;
}

.shop-reference {
    --ref-green: #1a8f54;
    --ref-green-dark: #157a48;
    --ref-gold: #b39659;
    --ref-gold-dark: #967d48;
    --ref-card: #1a1a1a;
    --ref-line-m: #2a2a2a;
}

.shop-reference.shop-wrap {
    background: #000;
}

/* ── Header (mobile: compact, no overflow) ── */
.shop-reference .shop-header.shop-header--ref {
    background: #000;
    color: #fff;
    border-bottom: 1px solid var(--ref-line-m);
    box-shadow: none;
    position: sticky;
    top: 0;
    z-index: 50;
}

.shop-reference .shop-header__inner--ref {
    max-width: 960px;
    width: 100%;
    margin: 0 auto;
    padding: 10px 14px;
    flex-wrap: nowrap;
    gap: 8px;
    min-width: 0;
}

.shop-reference .shop-logo--ref {
    color: #fff;
    flex-shrink: 1;
    min-width: 0;
    font-family: "Playfair Display", Georgia, serif;
    font-weight: 700;
    font-size: clamp(16px, 4.2vw, 22px);
    letter-spacing: 0.06em;
}

.shop-reference .shop-logo--ref span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.shop-reference .shop-logo--ref img {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
    width: 36px;
    height: 36px;
}

.shop-reference .shop-search--ref-hide {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.shop-reference .shop-lang--ref {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: transparent;
    border-radius: 4px;
    padding: 7px 10px;
    font-size: 12px;
    flex-shrink: 0;
}

.shop-reference .shop-lang--ref:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.shop-reference .shop-cart--ref {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 10px;
    background: transparent;
    border: 1px solid #fff;
    border-radius: 999px;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    flex-shrink: 0;
}

.shop-reference .shop-cart__text {
    max-width: 90px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.shop-reference .shop-cart--ref svg {
    flex-shrink: 0;
}

.shop-reference .shop-actions--ref {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    min-width: 0;
}

/* ── Club strip (mobile dark) ── */
.shop-reference .shop-club-strip {
    margin: 0;
    background: #111;
    color: rgba(255, 255, 255, 0.65);
    text-align: center;
    font-size: 12px;
    padding: 8px 14px;
    letter-spacing: 0.04em;
}

/* ── Main column ── */
.shop-reference .shop-narrow-outer {
    flex: 1;
    display: flex;
    justify-content: center;
    width: 100%;
    background: #000;
    padding: 0 14px 28px;
    box-sizing: border-box;
}

.shop-reference .shop-narrow-inner {
    width: 100%;
    max-width: 900px;
    box-sizing: border-box;
}

.shop-ref-toolbar {
    display: none;
}

.shop-crumb--ref {
    display: none;
}

.shop-reference .shop-nav--ref {
    display: none;
}

/* ── Hero (mobile: Playfair + stats + gold CTA) ── */
.shop-reference .shop-hero-ref {
    padding: 20px 0 18px;
}

.shop-reference .shop-hero-ref__intro h1 {
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(1.35rem, 4.5vw, 1.65rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.22;
    margin: 0 0 12px;
    letter-spacing: -0.02em;
}

.shop-reference .shop-hero-ref__lead {
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    line-height: 1.55;
    margin: 0 0 18px;
    max-width: 680px;
}

.shop-reference .shop-hero-ref__stats {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 0;
    margin: 0 0 18px;
    padding: 14px 0;
    border-top: 1px solid rgba(179, 150, 89, 0.35);
    border-bottom: 1px solid rgba(179, 150, 89, 0.35);
}

.shop-reference .shop-hero-ref__stat {
    flex: 1;
    text-align: center;
    padding: 0 6px;
    position: relative;
}

.shop-reference .shop-hero-ref__stat:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 70%;
    background: rgba(179, 150, 89, 0.45);
}

.shop-reference .shop-hero-ref__stat-num {
    display: block;
    font-family: "Inter", sans-serif;
    font-size: clamp(1.25rem, 4vw, 1.5rem);
    font-weight: 700;
    color: var(--ref-gold);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.shop-reference .shop-hero-ref__stat-label {
    display: block;
    margin-top: 6px;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.88);
    text-transform: uppercase;
    line-height: 1.25;
}

.shop-reference .shop-hero-ref__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 320px;
    margin: 0 0 8px;
    padding: 14px 22px;
    border: none;
    border-radius: 999px;
    background: linear-gradient(145deg, var(--ref-gold), var(--ref-gold-dark));
    color: #0a0a0a;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.02em;
    cursor: pointer;
}

.shop-reference .shop-hero-ref__cta:hover {
    filter: brightness(1.06);
}

/* ── Product stack ── */
.shop-reference .hero-product-stack {
    max-height: none;
    overflow: visible;
    gap: 12px;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.shop-reference .hero-product-stack::-webkit-scrollbar {
    display: none;
}

/* ── Product row (mobile: 3 columns — image | info | button) ── */
.shop-reference .product-card--hero-row.product-card {
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px 12px;
    padding: 12px 12px;
    margin: 0;
    background: var(--ref-card);
    border: 1px solid var(--ref-line-m);
    border-radius: 12px;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    overflow: visible;
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    transition: border-color 0.15s;
}

.shop-reference .product-card--hero-row:hover {
    border-color: rgba(179, 150, 89, 0.45);
}

.shop-reference .product-card--hero-row .product-card__img {
    position: relative;
    width: 76px;
    min-width: 76px;
    height: 76px;
    border-radius: 10px;
    overflow: hidden;
    background: #0d0d0d;
    align-self: center;
}

.shop-reference .product-card--hero-row .product-card__img::after {
    display: none;
}

.shop-reference .product-card__badges-overlay {
    position: absolute;
    top: 5px;
    left: 5px;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    max-width: calc(100% - 8px);
}

.shop-reference .product-card__badges-overlay .product-card__pill {
    font-size: 8px;
    font-weight: 800;
    padding: 3px 6px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1.2;
}

.shop-reference .product-card__pill--offer {
    background: #c62828;
    color: #fff;
}

.shop-reference .product-card__pill--pts {
    background: #c9a46c;
    color: #0a0a0a;
}

.shop-reference .product-card__pill--newbadge {
    background: #1565c0;
    color: #fff;
}

.shop-reference .product-card__meta-tags--desktop {
    display: none;
}

.shop-reference .product-card--hero-row .product-card__body {
    padding: 0;
    min-width: 0;
    align-self: center;
}

.shop-reference .product-card--hero-row .product-card__cat {
    color: rgba(255, 255, 255, 0.45);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 4px;
}

.shop-reference .product-card--hero-row h3 {
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
    min-height: 0;
    line-height: 1.3;
}

.shop-reference .product-card--hero-row .product-card__desc {
    display: none;
}

.shop-reference .product-card--hero-row .product-card__buy {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 8px;
    min-width: 0;
    margin: 0;
    align-self: stretch;
}

.shop-reference .product-card__price-col {
    align-items: flex-start;
    text-align: left;
    min-width: 0;
}

.shop-reference .product-card__price-row--now {
    flex-wrap: wrap;
    align-items: baseline;
    gap: 4px 6px;
    justify-content: flex-start;
    margin: 0;
}

.shop-reference .product-card__price-row--now .product-card__jetzt {
    display: none;
}

.shop-reference .product-card--hero-row .product-card__price--zero {
    color: var(--ref-gold);
    font-size: 17px;
    font-weight: 700;
}

.shop-reference .product-card--hero-row .product-card__price--old {
    color: rgba(255, 255, 255, 0.38);
    font-size: 12px;
    text-decoration: line-through;
}

.shop-reference .product-card__ship,
.shop-reference .product-card__ship--express {
    display: none;
}

.shop-reference .product-card__btn--hero.product-card__btn--tower {
    margin: 0;
    padding: 10px 12px;
    min-width: 0;
    width: auto;
    max-width: 124px;
    border-radius: 999px;
    border: none;
    background: linear-gradient(145deg, var(--ref-gold), var(--ref-gold-dark));
    color: #0a0a0a;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: 0.02em;
    text-transform: none;
    white-space: normal;
    text-align: center;
    align-self: center;
}

.shop-reference .product-card__btn--hero.product-card__btn--tower:hover {
    filter: brightness(1.08);
}

/* Catalog + footer (mobile) */
.shop-reference .shop-catalog-bar--ref {
    max-width: none;
    margin: 0;
    padding: 12px 0 20px;
}

.shop-reference .shop-catalog-bar--ref .shop-catalog-bar__inner {
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid var(--ref-line-m);
    background: #111;
    box-shadow: none;
}

.shop-reference .shop-catalog-bar--ref .shop-toolbar__count {
    color: rgba(255, 255, 255, 0.55);
}

.shop-reference .shop-catalog-bar--ref .sort-wrap {
    color: rgba(255, 255, 255, 0.55);
}

.shop-reference .shop-catalog-bar--ref .sort-wrap select {
    background: #1a1a1a;
    color: #fff;
    border-color: var(--ref-line-m);
}

.shop-reference .shop-footer--ref {
    border-top: 1px solid var(--ref-line-m);
    margin-top: 8px;
    padding: 22px 0 20px;
    background: transparent;
}

.shop-reference .shop-footer__cols--ref {
    display: flex;
    flex-direction: column;
    gap: 18px;
    font-size: 13px;
}

.shop-reference .shop-footer__cols--ref strong {
    color: #fff;
}

.shop-reference .shop-footer__cols--ref a,
.shop-reference .shop-footer__cols--ref p {
    color: rgba(255, 255, 255, 0.5);
}

.shop-reference .shop-footer__cols--ref a:hover {
    color: var(--ref-gold);
}

.shop-reference .btn-checkout--ref {
    background: linear-gradient(145deg, var(--ref-gold), var(--ref-gold-dark)) !important;
    color: #0a0a0a !important;
}

/* ═══════════════ Desktop (641px+): light reference, green accents ═══════════════ */

@media (min-width: 641px) {
    body:has(.shop-reference) {
        background: #fff;
    }

    .shop-reference.shop-wrap {
        background: #fff;
    }

    .shop-reference .shop-header__inner--ref {
        padding: 14px 24px;
        gap: 12px;
    }

    .shop-reference .shop-logo--ref {
        font-size: 22px;
    }

    .shop-reference .shop-logo--ref img {
        width: 44px;
        height: 44px;
    }

    .shop-reference .shop-lang--ref {
        padding: 8px 14px;
        font-size: 13px;
    }

    .shop-reference .shop-cart--ref {
        padding: 8px 16px;
        font-size: 14px;
        font-weight: 500;
        border-radius: 4px;
    }

    .shop-reference .shop-cart__text {
        max-width: none;
    }

    .shop-reference .shop-club-strip {
        background: #ececec;
        color: #333;
    }

    .shop-reference .shop-narrow-outer {
        background: #fff;
        padding: 0 24px 40px;
    }

    .shop-reference .shop-hero-ref {
        padding: 28px 0 24px;
    }

    .shop-reference .shop-hero-ref__intro h1 {
        font-family: "Inter", -apple-system, sans-serif;
        font-size: clamp(1.5rem, 3.5vw, 2rem);
        font-weight: 700;
        color: #111;
        line-height: 1.25;
        margin: 0 0 14px;
        letter-spacing: -0.02em;
    }

    .shop-reference .shop-hero-ref__lead {
        color: #555;
        font-size: 15px;
        margin: 0 0 16px;
    }

    .shop-reference .shop-hero-ref__stats {
        display: none;
    }

    .shop-reference .shop-hero-ref__cta {
        display: none;
    }

    .shop-reference .hero-product-stack {
        gap: 0;
    }

    .shop-reference .product-card--hero-row.product-card {
        grid-template-columns: 140px 1fr auto;
        gap: 0 24px;
        padding: 24px 0;
        background: #fff;
        border: none;
        border-bottom: 1px solid #e5e5e5;
        border-radius: 0;
    }

    .shop-reference .product-card--hero-row:first-child {
        border-top: 1px solid #e5e5e5;
    }

    .shop-reference .product-card--hero-row:hover {
        background: #fafafa;
    }

    .shop-reference .product-card__badges-overlay {
        display: none;
    }

    .shop-reference .product-card__meta-tags--desktop {
        display: flex;
    }

    .shop-reference .product-card--hero-row .product-card__img {
        width: 140px;
        min-width: 140px;
        height: 120px;
        border-radius: 0;
        background: #f5f5f5;
    }

    .shop-reference .product-card--hero-row .product-card__cat {
        color: #777;
        font-size: 11px;
    }

    .shop-reference .product-card--hero-row h3 {
        color: #111;
        font-size: 16px;
        font-weight: 700;
    }

    .shop-reference .product-card--hero-row .product-card__desc {
        display: block;
        font-size: 13px;
        color: #555;
        line-height: 1.5;
        margin: 0;
    }

    .product-card__meta-tags {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 6px;
        margin-top: 10px;
    }

    .shop-reference .product-card__pill {
        font-size: 9px;
        font-weight: 800;
        padding: 4px 8px;
        border-radius: 3px;
        text-transform: uppercase;
        letter-spacing: 0.04em;
        line-height: 1;
    }

    .shop-reference .product-card__pill--navy {
        background: #1e3a5f;
        color: #fff;
    }

    .shop-reference .product-card__pill--gold {
        background: #c9a227;
        color: #1a1a1a;
    }

    .shop-reference .product-card__pill--energy {
        background: #e8c840;
        color: #1a1a1a;
        font-weight: 900;
        font-size: 10px;
        text-transform: none;
    }

    .shop-reference .product-card--hero-row .product-card__buy {
        flex-direction: row;
        align-items: center;
        gap: 16px;
    }

    .shop-reference .product-card__price-col {
        align-items: flex-end;
        text-align: right;
        min-width: 120px;
        flex: 0 0 auto;
    }

    .shop-reference .product-card__price-row--now .product-card__jetzt {
        display: inline;
        font-size: 12px;
        font-weight: 800;
        color: var(--ref-green);
    }

    .shop-reference .product-card--hero-row .product-card__price--zero {
        color: var(--ref-green);
        font-size: 18px;
    }

    .shop-reference .product-card--hero-row .product-card__price--old {
        color: #999;
        font-size: 13px;
    }

    .shop-reference .product-card__ship,
    .shop-reference .product-card__ship--express {
        display: block;
        font-size: 11px;
        color: var(--ref-green);
        margin: 0;
        font-weight: 600;
        line-height: 1.4;
    }

    .shop-reference .product-card__ship--express {
        font-weight: 500;
    }

    .shop-reference .product-card__btn--hero.product-card__btn--tower {
        min-width: 180px;
        max-width: none;
        padding: 14px 24px;
        border-radius: 4px;
        background: var(--ref-green);
        color: #fff;
        font-size: 13px;
        text-transform: uppercase;
        letter-spacing: 0.03em;
        white-space: nowrap;
    }

    .shop-reference .product-card__btn--hero.product-card__btn--tower:hover {
        filter: brightness(1.06);
    }

    .shop-reference .shop-catalog-bar--ref .shop-catalog-bar__inner {
        padding: 12px 0;
        border-radius: 0;
        border: none;
        border-top: 1px solid #e5e5e5;
        background: transparent;
    }

    .shop-reference .shop-catalog-bar--ref .shop-toolbar__count {
        color: var(--muted);
    }

    .shop-reference .shop-catalog-bar--ref .sort-wrap {
        color: var(--muted);
    }

    .shop-reference .shop-catalog-bar--ref .sort-wrap select {
        background: #fff;
        color: var(--black);
        border-color: var(--line);
    }

    .shop-reference .shop-footer--ref {
        border-top: 1px solid #e5e5e5;
        background: transparent;
        color: rgba(0, 0, 0, 0.75);
    }

    .shop-reference .shop-footer__cols--ref {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 32px;
    }

    .shop-reference .shop-footer__cols--ref strong {
        color: #111;
    }

    .shop-reference .shop-footer__cols--ref a,
    .shop-reference .shop-footer__cols--ref p {
        color: var(--muted);
    }

    .shop-reference .btn-checkout--ref {
        background: var(--ref-green) !important;
        color: #fff !important;
    }
}
