/* ==========================================================================
   Loveify Product Page v2.0 – White + #B61261
   ========================================================================== */
.lvy-single-product {
    --accent: #B61261;
    --accent-h: #9e0f54;
    --accent-bg: #fdf0f5;
    --text: #2c2c2c;
    --text-l: #6b6b6b;
    --bg: #ffffff;
    --bg2: #f9f9f9;
    --border: #e5e5e5;
    --border-l: #f0f0f0;
    --green: #27ae60;
    --star: #B61261;
    --r: 6px;
    --max-w: 1200px;
    --shadow: 0 2px 12px rgba(0,0,0,.06);

    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    color: var(--text); background: var(--bg); line-height: 1.6; font-size: 15px;
}
.lvy-single-product *, .lvy-single-product *::before, .lvy-single-product *::after { box-sizing: border-box; }
.lvy-single-product a { color: var(--accent); text-decoration: none; transition: color .2s; }
.lvy-single-product a:hover { color: var(--accent-h); text-decoration: underline; }
.lvy-single-product img { max-width: 100%; height: auto; display: block; }

.lvy-container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }
.lvy-section-title { font-size: 1.5rem; font-weight: 800; text-transform: uppercase; letter-spacing: .02em; margin: 0 0 1.5rem; }

/* ===== Buttons ===== */
.lvy-btn {
    display: inline-flex; align-items: center; justify-content: center;
    border: none; border-radius: 0; font-weight: 700; letter-spacing: .05em;
    text-transform: uppercase; cursor: pointer; transition: background .2s, transform .1s;
    text-decoration: none !important;
}
.lvy-btn--cart {
    height: 48px; padding: 0 28px; background: var(--accent); color: #fff !important;
    font-size: .95rem; border-radius: 0;
}
.lvy-btn--cart:hover { background: var(--accent-h); color: #fff !important; }
.lvy-btn--cart:active { transform: scale(.98); }

.lvy-btn--cart-sm {
    display: block; width: 100%; text-align: center; padding: 8px;
    background: var(--accent); color: #fff !important; border-radius: 0;
    font-size: .7rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
}
.lvy-btn--cart-sm:hover { background: var(--accent-h); color: #fff !important; }

.lvy-btn--dark {
    height: 36px; padding: 0 20px; background: var(--text); color: #fff !important;
    font-size: .85rem;
}
.lvy-btn--dark:hover { background: #444; color: #fff !important; }

/* ===== Badges ===== */
.lvy-badge { display: inline-flex; align-items: center; gap: 4px; font-size: .75rem; font-weight: 600; padding: 3px 10px; border-radius: 0; }
.lvy-badge--sale { background: var(--accent-bg); color: var(--accent); }
.lvy-badge--stock { background: #e8f8ef; color: var(--green); }
.lvy-badge--stock svg { stroke: var(--green); }
.lvy-badge--out { background: #fef0f0; color: #e74c3c; }

/* ===========================================================================
   HERO
   =========================================================================== */
.lvy-hero { background: var(--bg); padding: 2rem 0; border-bottom: 1px solid var(--border-l); }
.lvy-hero__inner { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }

/* Gallery */
.lvy-gallery { display: grid; grid-template-columns: 72px 1fr; gap: 1rem; position: sticky; top: 2rem; }
.lvy-gallery__thumbs { display: flex; flex-direction: column; gap: .5rem; }
.lvy-gallery__thumb { width: 64px; height: 64px; padding: 2px; border: 2px solid transparent; border-radius: 0; background: var(--bg); cursor: pointer; transition: border-color .2s; overflow: hidden; }
.lvy-gallery__thumb:hover, .lvy-gallery__thumb.is-active { border-color: var(--accent); }
.lvy-gallery__thumb img { width: 100%; height: 100%; object-fit: cover; border-radius: 0; }

.lvy-gallery__main { position: relative; background: var(--bg); border-radius: 0; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.lvy-gallery__slide { display: none; width: 100%; animation: lvyFade .3s ease; }
.lvy-gallery__slide.is-active { display: flex; align-items: center; justify-content: center; }
.lvy-gallery__slide img { max-width: 100%; height: auto; object-fit: contain; cursor: zoom-in; }
@keyframes lvyFade { from{opacity:0} to{opacity:1} }

.lvy-gallery__zoom { position: absolute; top: 1rem; right: 1rem; width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.9); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: 0 2px 8px rgba(0,0,0,.1); }
.lvy-gallery__zoom:hover { background: #fff; }

/* Lightbox */
.lvy-lightbox {
    display: none; position: fixed; inset: 0; z-index: 999999;
    background: rgba(0,0,0,.85); align-items: center; justify-content: center;
    cursor: zoom-out; animation: lvyFade .25s ease;
}
.lvy-lightbox.is-open { display: flex; }
.lvy-lightbox__img {
    max-width: 90vw; max-height: 90vh; object-fit: contain;
    border-radius: 0; box-shadow: 0 8px 40px rgba(0,0,0,.4);
    cursor: default; animation: lvyLBScale .3s ease;
}
@keyframes lvyLBScale { from { transform: scale(.92); opacity: 0; } to { transform: scale(1); opacity: 1; } }

.lvy-lightbox__close {
    position: absolute; top: 1.25rem; right: 1.5rem;
    width: 44px; height: 44px; border-radius: 50%;
    background: rgba(255,255,255,.15); border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background .2s;
}
.lvy-lightbox__close:hover { background: rgba(255,255,255,.3); }
.lvy-lightbox__close svg { stroke: #fff; }

.lvy-lightbox__nav {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 48px; height: 48px; border-radius: 50%;
    background: rgba(255,255,255,.15); border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background .2s;
}
.lvy-lightbox__nav:hover { background: rgba(255,255,255,.3); }
.lvy-lightbox__nav svg { stroke: #fff; }
.lvy-lightbox__nav--prev { left: 1.25rem; }
.lvy-lightbox__nav--next { right: 1.25rem; }

.lvy-lightbox__counter {
    position: absolute; bottom: 1.25rem; left: 50%; transform: translateX(-50%);
    color: rgba(255,255,255,.7); font-size: .85rem; font-weight: 600;
}

/* Product Info */
.lvy-product-info { padding: .5rem 0; }
.lvy-product-info__badges { display: flex; align-items: center; gap: 1rem; margin-bottom: .5rem; flex-wrap: wrap; }
.lvy-product-info__cats { font-size: .85rem; color: var(--text-l); margin-bottom: .25rem; }
.lvy-product-info__cats a { color: var(--text-l); }
.lvy-product-info__title { font-size: 1.5rem; font-weight: 800; text-transform: uppercase; margin: 0 0 .25rem; line-height: 1.3; }
.lvy-product-info__short-desc { font-size: .9rem; color: var(--text-l); margin-bottom: .75rem; }

/* Rating */
.lvy-rating { display: flex; align-items: center; gap: .5rem; margin-bottom: .75rem; }
.lvy-rating__stars { display: flex; gap: 2px; }
.lvy-rating__count { font-size: .8rem; color: var(--text-l); }

/* Stock */
.lvy-stock--instock { color: var(--green); font-weight: 600; }
.lvy-stock--low { color: #e67e22; font-weight: 600; }
.lvy-stock--outofstock { color: #e74c3c; font-weight: 600; }
.lvy-stock--onbackorder { color: #f39c12; font-weight: 600; }

/* === Variations === */
.lvy-variations-wrap { margin-bottom: 1rem; }
.lvy-variations-wrap .variations_form { margin-bottom: 0; }
.lvy-variations-wrap .variations { width: 100%; border-collapse: collapse; }
.lvy-variations-wrap .variations td { padding: .4rem 0; }
.lvy-variations-wrap .variations td.label label { font-weight: 600; font-size: .9rem; }

.lvy-variations-wrap .variations select {
    min-width: 180px; padding: 10px 36px 10px 14px;
    border: 1px solid var(--border); border-radius: 0;
    font-size: .9rem; font-weight: 600; color: var(--text);
    background: var(--bg); cursor: pointer;
    appearance: none; -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%232c2c2c' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 12px center;
    transition: border-color .2s;
}
.lvy-variations-wrap .variations select:hover,
.lvy-variations-wrap .variations select:focus { border-color: var(--text); outline: none; }

.lvy-variations-wrap .woocommerce-variation-price { margin: .75rem 0; }
.lvy-variations-wrap .woocommerce-variation-price .price { font-size: 2rem; font-weight: 800; }
.lvy-variations-wrap .woocommerce-variation-price .price del { font-size: .85rem; font-weight: 400; color: var(--text-l); }
.lvy-variations-wrap .woocommerce-variation-price .price ins { text-decoration: none; }

.lvy-variations-wrap .woocommerce-variation-add-to-cart { display: flex; gap: .75rem; align-items: center; flex-wrap: wrap; }

/* Variation qty: replace with dropdown via JS */
.lvy-variations-wrap .woocommerce-variation-add-to-cart .quantity input[type="number"] {
    width: 72px; height: 48px; padding: 0 8px;
    border: 1px solid var(--border); border-radius: 0;
    font-size: 1rem; font-weight: 600; color: var(--text);
    text-align: center; background: var(--bg);
}

.lvy-variations-wrap .single_add_to_cart_button {
    flex: 1; height: 48px;
    background: var(--accent) !important; color: #fff !important;
    border: none !important; border-radius: 0 !important;
    font-size: .95rem !important; font-weight: 700 !important;
    letter-spacing: .05em; text-transform: uppercase; cursor: pointer;
}
.lvy-variations-wrap .single_add_to_cart_button:hover { background: var(--accent-h) !important; }

.lvy-variations-wrap .woocommerce-variation-description { font-size: .85rem; color: var(--text-l); margin-bottom: .5rem; }
.lvy-variations-wrap .woocommerce-variation-availability .stock { font-size: .82rem; font-weight: 600; }

/* === Purchase (simple) === */
.lvy-purchase { margin-bottom: 1.5rem; }
.lvy-purchase__price-row { display: flex; align-items: baseline; gap: .75rem; flex-wrap: wrap; margin-bottom: 1rem; }
.lvy-purchase__old-price { font-size: .85rem; color: var(--text-l); }
.lvy-purchase__discount { font-size: .8rem; font-weight: 700; color: var(--accent); }
.lvy-purchase__price { font-size: 2rem; font-weight: 800; }
.lvy-purchase__price .woocommerce-Price-amount { font-size: inherit; font-weight: inherit; }
.lvy-purchase__form { display: flex; gap: .75rem; align-items: center; margin-bottom: .75rem; }

/* Lagerbestand-Anzeige direkt vor dem Add-to-cart Button */
.lvy-purchase__stock {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .3px;
    margin: 0 0 1rem;
    padding: 0;
}
.lvy-purchase__stock-dot {
    font-size: 14px;
    line-height: 1;
}
.lvy-purchase__stock--instock,
.lvy-purchase__stock--instock .lvy-purchase__stock-dot { color: #2da44e; }
.lvy-purchase__stock--low,
.lvy-purchase__stock--low .lvy-purchase__stock-dot { color: #c81e6d; }
.lvy-purchase__stock--outofstock,
.lvy-purchase__stock--outofstock .lvy-purchase__stock-dot { color: #888; }
.lvy-purchase__stock--onbackorder,
.lvy-purchase__stock--onbackorder .lvy-purchase__stock-dot { color: #d97706; }
.lvy-purchase__unavailable { padding: 12px 20px; background: #fef0f0; color: #e74c3c; border-radius: 0; font-weight: 600; }
.lvy-purchase__tax-note { font-size: .75rem; color: var(--text-l); }

/* Qty dropdown – NEUTRAL colors, with divider line */
.lvy-qty-wrap { position: relative; }
.lvy-qty-select {
    width: 80px; height: 48px; padding: 0 36px 0 16px;
    border: 1px solid var(--border); border-radius: 0;
    font-size: 1rem; font-weight: 600; color: var(--text); background: var(--bg);
    appearance: none; -webkit-appearance: none;
    background-image:
        url("data:image/svg+xml,%3Csvg width='1' height='24' xmlns='http://www.w3.org/2000/svg'%3E%3Cline x1='0' y1='0' x2='0' y2='24' stroke='%23e5e5e5' stroke-width='1'/%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' stroke='%232c2c2c' stroke-width='1.5' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='1 1 5 5 9 1'/%3E%3C/svg%3E");
    background-repeat: no-repeat, no-repeat;
    background-position: right 32px center, right 12px center;
    cursor: pointer;
}
.lvy-qty-select:hover { border-color: #999; }
.lvy-qty-select:focus { border-color: #555; outline: none; box-shadow: 0 0 0 2px rgba(44,44,44,.1); }

/* Trust */
.lvy-trust { display: flex; gap: 1.5rem; flex-wrap: wrap; padding: 1rem 0; border-top: 1px solid var(--border-l); border-bottom: 1px solid var(--border-l); margin-bottom: 1rem; }
.lvy-trust__item { display: flex; align-items: center; gap: 6px; font-size: .8rem; font-weight: 600; }
.lvy-trust__item svg { stroke: var(--green); flex-shrink: 0; }

.lvy-brand-row { font-size: .82rem; color: var(--text-l); margin-bottom: .5rem; }
.lvy-brand-row strong { color: var(--text); }

.lvy-product-links { display: flex; gap: 1.5rem; margin-top: .5rem; }
.lvy-product-link { display: inline-flex; align-items: center; gap: 4px; font-size: .85rem; }

/* ===========================================================================
   BUNDLE
   =========================================================================== */
.lvy-bundle { padding: 2.5rem 0; background: var(--bg2); border-top: 1px solid var(--border-l); border-bottom: 1px solid var(--border-l); }
.lvy-bundle__row { display: flex; align-items: stretch; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: thin; gap: 0; }

.lvy-bundle__card { flex: 0 0 auto; width: 180px; background: var(--bg); border-radius: 0; padding: 1rem; display: flex; flex-direction: column; box-shadow: var(--shadow); }
.lvy-bundle__card-img { width: 100%; aspect-ratio: 1; display: flex; align-items: center; justify-content: center; margin-bottom: .75rem; background: #ffffff; border-radius: 0; overflow: hidden; }
.lvy-bundle__card-img img { max-width: 90%; max-height: 90%; object-fit: contain; }
.lvy-bundle__card-name { font-size: .78rem; font-weight: 600; line-height: 1.4; margin: 0 0 .5rem; }
.lvy-bundle__card-name a { color: var(--text); }
.lvy-bundle__card-old { font-size: .75rem; color: var(--text-l); margin-bottom: .15rem; }
.lvy-bundle__card-price { font-size: 1.15rem; font-weight: 800; margin-bottom: .75rem; }
.lvy-bundle__card-tax { font-size: .65rem; font-weight: 400; color: var(--text-l); }
.lvy-bundle__check-label { display: flex; align-items: center; gap: .5rem; font-size: .78rem; cursor: pointer; margin-top: auto; padding-top: .75rem; border-top: 1px solid var(--border-l); }
.lvy-bundle__check-label input[type="checkbox"] { accent-color: var(--accent); width: 16px; height: 16px; cursor: pointer; }
.lvy-bundle__plus { display: flex; align-items: center; justify-content: center; width: 36px; flex-shrink: 0; color: var(--text-l); }

.lvy-bundle__summary { flex: 0 0 auto; width: 300px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 1.5rem 1rem; margin-left: .5rem; }
.lvy-bundle__summary-top, .lvy-bundle__summary-sub { font-size: .8rem; font-weight: 600; color: var(--text-l); text-transform: uppercase; }
.lvy-bundle__summary-count { font-size: 1rem; font-weight: 800; text-transform: uppercase; margin: .25rem 0; }
.lvy-bundle__summary-price { font-size: 1.8rem; font-weight: 800; color: var(--accent); margin: .5rem 0 1rem; }
.lvy-bundle__summary-tax { font-size: .7rem; color: var(--text-l); margin-top: .5rem; }

/* ===========================================================================
   DESCRIPTION
   =========================================================================== */
.lvy-desc { background: var(--bg); padding: 2.5rem 0; border-bottom: 1px solid var(--border-l); }
.lvy-desc__grid { display: grid; grid-template-columns: 2fr 1fr; gap: 3rem; align-items: start; }
.lvy-desc__heading { font-size: 1rem; font-weight: 700; text-transform: uppercase; margin: 0 0 1rem; }

.lvy-desc__text { font-size: .9rem; line-height: 1.7; max-height: 280px; overflow: hidden; position: relative; transition: max-height .5s ease; }
.lvy-desc__text.is-expanded { max-height: 5000px; }
.lvy-desc__text::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 60px; background: linear-gradient(transparent, var(--bg)); pointer-events: none; transition: opacity .3s; }
.lvy-desc__text.is-expanded::after { opacity: 0; }
.lvy-desc__text h3, .lvy-desc__text h4 { font-size: .95rem; font-weight: 700; text-transform: uppercase; margin: 1.25rem 0 .5rem; }
.lvy-desc__text p { margin: 0 0 .75rem; }

.lvy-desc__more { display: inline-flex; align-items: center; gap: 4px; background: none; border: none; color: var(--accent); font-size: .85rem; font-weight: 600; cursor: pointer; padding: .75rem 0; }
.lvy-desc__more:hover { color: var(--accent-h); }
.lvy-desc__more svg { transition: transform .3s; }
.lvy-desc__more.is-expanded svg { transform: rotate(180deg); }

.lvy-desc__right { background: var(--bg2); border-radius: 0; padding: 1.25rem; border: 1px solid var(--border-l); }
.lvy-details { width: 100%; border-collapse: collapse; font-size: .85rem; }
.lvy-details tr { border-bottom: 1px solid var(--border-l); }
.lvy-details tr:last-child { border-bottom: none; }
.lvy-details td { padding: .6rem 0; vertical-align: top; }
.lvy-details td:first-child { font-weight: 600; color: var(--text-l); white-space: nowrap; padding-right: 1rem; width: 40%; }

/* ===========================================================================
   RECOMMENDED CAROUSEL
   =========================================================================== */
.lvy-reco { padding: 2.5rem 0; background: var(--bg2); border-bottom: 1px solid var(--border-l); overflow: hidden; }
.lvy-reco__carousel { position: relative; }
.lvy-reco__track { display: flex; gap: 1rem; overflow-x: auto; scroll-behavior: smooth; -webkit-overflow-scrolling: touch; scrollbar-width: none; padding-bottom: .5rem; }
.lvy-reco__track::-webkit-scrollbar { display: none; }

.lvy-reco__card { flex: 0 0 calc((100% - -15rem)/6); min-width: 160px; background: var(--bg); border-radius: 0; padding: .75rem; display: flex; flex-direction: column; position: relative; box-shadow: var(--shadow); transition: transform .2s, box-shadow .2s; }
.lvy-reco__card:hover { transform: translateY(-2px); box-shadow: 0 4px 20px rgba(0,0,0,.1); }

.lvy-reco__badge { position: absolute; top: .5rem; left: .5rem; font-size: .65rem; font-weight: 700; text-transform: uppercase; padding: 3px 8px; border-radius: 0; background: var(--accent); color: #fff; z-index: 1; }

.lvy-reco__card-img { display: flex; align-items: center; justify-content: center; aspect-ratio: 1; background: var(--bg2); border-radius: 0; margin-bottom: .5rem; overflow: hidden; }
.lvy-reco__card-img img { max-width: 85%; max-height: 85%; object-fit: contain; }

.lvy-reco__stars { display: flex; align-items: center; gap: 3px; margin-bottom: .25rem; }
.lvy-reco__stars span { font-size: .7rem; color: var(--text-l); margin-left: 2px; }

.lvy-reco__brand { font-size: .7rem; color: var(--text-l); margin-bottom: .15rem; }
.lvy-reco__brand a { color: var(--text-l); }

.lvy-reco__name { font-size: .78rem; font-weight: 700; line-height: 1.3; margin: 0 0 .5rem; text-transform: uppercase; }
.lvy-reco__name a { color: var(--text); }

.lvy-reco__pricing { margin-top: auto; margin-bottom: .5rem; }
.lvy-reco__discount-tag { display: inline-block; font-size: .7rem; font-weight: 700; color: #fff; background: var(--accent); padding: 2px 8px; border-radius: 0; margin-bottom: .25rem; }
.lvy-reco__old-price { display: block; font-size: .75rem; color: var(--text-l); }
.lvy-reco__price { display: block; font-size: 1.2rem; font-weight: 800; color: var(--accent); }
.lvy-reco__tax { display: block; font-size: .65rem; font-weight: 400; color: var(--text-l); }
.lvy-reco__stock { font-size: .7rem; color: var(--green); text-align: center; margin-top: .4rem; }

.lvy-carousel-btn { position: absolute; top: 50%; transform: translateY(-50%); width: 40px; height: 40px; border-radius: 50%; background: var(--bg); border: 1px solid var(--border); cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: 0 2px 8px rgba(0,0,0,.1); z-index: 2; }
.lvy-carousel-btn:hover { box-shadow: 0 4px 16px rgba(0,0,0,.15); }
.lvy-carousel-btn--prev { left: -20px; }
.lvy-carousel-btn--next { right: -20px; }

/* ===========================================================================
   PREMIUM REVIEWS
   =========================================================================== */
.lvy-reviews { background: var(--bg); padding: 0 0 3rem; }

/* Header */
.lvy-rev__header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.25rem 0; border-bottom: 1px solid var(--border); cursor: pointer;
}
.lvy-rev__title { font-size: 1.3rem; font-weight: 800; margin: 0; }
.lvy-rev__collapse {
    background: none; border: none; cursor: pointer; padding: 4px;
    color: var(--text); transition: transform .3s;
}
.lvy-rev__collapse.is-collapsed { transform: rotate(180deg); }

.lvy-rev__body { padding-top: 2rem; }
.lvy-rev__body.is-hidden { display: none; }

/* Summary */
.lvy-rev__summary { text-align: center; padding-bottom: 2rem; border-bottom: 1px solid var(--border-l); margin-bottom: 1.5rem; }
.lvy-rev__avg { margin-bottom: 1.5rem; }
.lvy-rev__avg-num { display: block; font-size: 2.5rem; font-weight: 800; line-height: 1.1; }
.lvy-rev__avg-stars { display: flex; justify-content: center; gap: 3px; margin: .5rem 0 .4rem; }
.lvy-rev__avg-text { font-size: .85rem; color: var(--text-l); }

/* Rating Bars */
.lvy-rev__bars { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem 2.5rem; max-width: 650px; margin: 0 auto; }
.lvy-rev__bar-row { display: flex; align-items: center; gap: .75rem; }
.lvy-rev__bar-label { font-size: .82rem; color: var(--text); white-space: nowrap; min-width: 60px; text-align: left; }
.lvy-rev__bar-track { flex: 1; height: 4px; background: var(--border-l); border-radius: 0; overflow: hidden; }
.lvy-rev__bar-fill { height: 100%; background: #B61261; border-radius: 0; transition: width .6s ease; }
.lvy-rev__bar-count { font-size: .82rem; font-weight: 700; color: var(--text); min-width: 24px; text-align: right; }

/* Sort Bar */
.lvy-rev__sort-bar {
    display: flex; align-items: center; justify-content: space-between;
    padding: 1rem 0; margin-bottom: 1rem; flex-wrap: wrap; gap: .75rem;
}
.lvy-rev__count-label { font-size: .85rem; color: var(--text-l); }
.lvy-rev__sort-right { display: flex; align-items: center; gap: .5rem; }
.lvy-rev__sort-right label { font-size: .85rem; color: var(--text-l); white-space: nowrap; }
.lvy-rev__sort-select {
    padding: 8px 36px 8px 14px; border: 1px solid var(--border); border-radius: 0;
    font-size: .85rem; font-weight: 600; background: var(--bg); cursor: pointer;
    appearance: none; -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' stroke='%232c2c2c' stroke-width='1.5' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='1 1 5 5 9 1'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 12px center;
}

/* Review Items */
.lvy-rev__list { border-top: 1px solid var(--border-l); }
.lvy-rev__item { padding: 1.5rem 0; border-bottom: 1px solid var(--border-l); }

.lvy-rev__item-header { display: flex; align-items: center; gap: .75rem; margin-bottom: .4rem; flex-wrap: wrap; }
.lvy-rev__item-author { font-size: .95rem; font-weight: 700; }
.lvy-rev__verified {
    display: inline-flex; align-items: center; gap: 4px;
    font-size: .7rem; font-weight: 600; text-transform: uppercase;
    padding: 2px 8px; border-radius: 0;
    background: #e8f8ef; color: #1a7f42;
}

.lvy-rev__item-rating { display: flex; align-items: center; gap: .5rem; margin-bottom: .5rem; }
.lvy-rev__item-stars { display: flex; gap: 2px; }
.lvy-rev__item-score { font-size: .8rem; color: var(--text-l); font-weight: 600; }

.lvy-rev__item-text { font-size: .9rem; line-height: 1.7; color: var(--text); }
.lvy-rev__item-img { margin-top: .75rem; }
.lvy-rev__item-img img { max-width: 180px; border-radius: 0; cursor: pointer; }

.lvy-rev__item-footer {
    display: flex; align-items: center; justify-content: space-between;
    margin-top: 1rem; flex-wrap: wrap; gap: .5rem;
}

.lvy-rev__helpful { display: flex; align-items: center; gap: .75rem; }
.lvy-rev__helpful > span { font-size: .82rem; color: var(--text-l); font-weight: 600; }

.lvy-rev__vote {
    display: inline-flex; align-items: center; gap: 4px;
    background: none; border: none; cursor: pointer; padding: 4px 6px;
    color: var(--text-l); font-size: .82rem; border-radius: 0;
    transition: background .2s, color .2s;
}
.lvy-rev__vote:hover { background: var(--bg2); color: var(--text); }
.lvy-rev__vote--up:hover { color: #1a7f42; }
.lvy-rev__vote--down:hover { color: #c0392b; }
.lvy-rev__vote-count { font-weight: 600; }

.lvy-rev__item-date { font-size: .8rem; color: var(--text-l); }

.lvy-rev__empty { padding: 3rem; text-align: center; color: var(--text-l); font-size: .95rem; }

/* Write Review Form */
.lvy-rev__form-wrap { margin-top: 2rem; border: 1px solid var(--border-l); border-radius: 0; overflow: hidden; }
.lvy-rev__form-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 1rem 1.25rem; cursor: pointer; background: var(--bg2);
    transition: background .2s;
}
.lvy-rev__form-header:hover { background: #f0f0f0; }
.lvy-rev__form-title { font-size: 1rem; font-weight: 700; margin: 0; }
.lvy-rev__form-header svg { transition: transform .3s; color: var(--text); }
.lvy-rev__form-header.is-open svg { transform: rotate(180deg); }

.lvy-rev__form { padding: 1.5rem 1.25rem; }
.lvy-rev__form-field { margin-bottom: 1.25rem; }
.lvy-rev__form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.lvy-rev__form-label { display: block; font-size: .82rem; font-weight: 700; margin-bottom: .4rem; text-transform: uppercase; letter-spacing: .03em; }
.lvy-rev__req { color: var(--accent); }
.lvy-rev__form-hint { font-weight: 400; text-transform: none; color: var(--text-l); font-size: .78rem; }

.lvy-rev__form-input {
    width: 100%; padding: 12px 16px; border: 1px solid var(--border); border-radius: 0;
    font-size: .9rem; font-family: inherit; color: var(--text); background: var(--bg);
    transition: border-color .2s, box-shadow .2s;
}
.lvy-rev__form-input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-bg); }
.lvy-rev__form-input::placeholder { color: #bbb; }

.lvy-rev__form-textarea {
    width: 100%; padding: 14px 16px; border: 1px solid var(--border); border-radius: 0;
    font-size: .9rem; font-family: inherit; color: var(--text); background: var(--bg);
    resize: vertical; min-height: 120px; transition: border-color .2s, box-shadow .2s;
}
.lvy-rev__form-textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-bg); }
.lvy-rev__form-textarea::placeholder { color: #bbb; }

/* Stars in form */
.lvy-rf__stars { display: flex; align-items: center; gap: 4px; }
.lvy-rf__star { background: none; border: none; cursor: pointer; padding: 2px; transition: transform .15s; display: flex; }
.lvy-rf__star:hover { transform: scale(1.15); }
.lvy-rf__star svg { transition: fill .15s; }
.lvy-rf__star.is-active svg, .lvy-rf__star.is-hover svg { fill: #B61261; }
.lvy-rf__star-text { font-size: .85rem; color: var(--text-l); margin-left: .5rem; font-weight: 600; }

/* Upload in form */
.lvy-rev__upload { position: relative; }
.lvy-rev__upload-input { position: absolute; width: 0; height: 0; opacity: 0; overflow: hidden; }
.lvy-rev__upload-btn {
    display: inline-flex; align-items: center; gap: .6rem;
    padding: 12px 20px; border: 2px dashed var(--border); border-radius: 0;
    cursor: pointer; transition: border-color .2s, background .2s;
    font-size: .85rem; font-weight: 600; color: var(--text-l);
}
.lvy-rev__upload-btn:hover { border-color: var(--accent); background: var(--accent-bg); color: var(--accent); }
.lvy-rev__upload-btn:hover svg { stroke: var(--accent); }

.lvy-rev__upload-preview {
    display: inline-flex; align-items: center; gap: .75rem;
    margin-top: .75rem; padding: 8px 12px;
    background: var(--bg2); border-radius: 0; border: 1px solid var(--border-l);
}
.lvy-rev__upload-preview img { width: 56px; height: 56px; object-fit: cover; border-radius: 0; }
.lvy-rev__upload-preview button {
    background: none; border: none; cursor: pointer; padding: 4px;
    color: var(--text-l); transition: color .2s;
}
.lvy-rev__upload-preview button:hover { color: #e74c3c; }

/* GDPR */
.lvy-rev__form-check {
    display: flex; align-items: flex-start; gap: .5rem;
    font-size: .82rem; color: var(--text-l); cursor: pointer;
}
.lvy-rev__form-check input[type="checkbox"] { accent-color: var(--accent); width: 16px; height: 16px; margin-top: 1px; cursor: pointer; flex-shrink: 0; }

/* Form Message */
.lvy-rev__form-msg {
    padding: 14px 20px; border-radius: 0; font-size: .9rem; font-weight: 600; margin-top: 1rem;
}
.lvy-rev__form-msg--success { background: #e8f8ef; color: #1a7f42; border: 1px solid #b8e6cc; }
.lvy-rev__form-msg--error { background: #fef0f0; color: #c0392b; border: 1px solid #f5c6cb; }

/* ===========================================================================
   RESPONSIVE
   =========================================================================== */
@media (max-width: 992px) {
    .lvy-hero__inner { grid-template-columns: 1fr; gap: 2rem; }
    .lvy-gallery { position: static; }
    .lvy-desc__grid { grid-template-columns: 1fr; gap: 2rem; }
    .lvy-reco__card { flex: 0 0 calc((100% - 2rem)/3); min-width: 180px; }
}

@media (max-width: 768px) {
    .lvy-hero__inner { padding: 0 1rem; }
    .lvy-gallery { grid-template-columns: 1fr; }
    .lvy-gallery__thumbs { flex-direction: row; order: 2; overflow-x: auto; gap: 8px; padding: 8px 0; scrollbar-width: none; }
    .lvy-gallery__thumbs::-webkit-scrollbar { display: none; }
    .lvy-gallery__thumb { flex: 0 0 64px; }
    .lvy-gallery__main { order: 1; }

    /* ─── Mobile: Swipe-Galerie (alle Slides nebeneinander in Scroll-Snap) ─── */
    .lvy-gallery__main {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 0;
    }
    .lvy-gallery__main::-webkit-scrollbar { display: none; }
    .lvy-gallery__slide {
        display: flex !important;
        flex: 0 0 100% !important;
        width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
        scroll-snap-align: center;
        scroll-snap-stop: always;
        align-items: center;
        justify-content: center;
        animation: none !important;
    }
    .lvy-gallery__slide img {
        max-width: 100%;
        height: auto;
        object-fit: contain;
    }
    /* Zoom-Button über der swipenden Galerie halten */
    .lvy-gallery__main .lvy-gallery__zoom {
        position: absolute;
        top: 1rem; right: 1rem;
        z-index: 5;
    }
    /* Dot-Indikator unter der Galerie */
    .lvy-gallery__dots {
        display: flex;
        justify-content: center;
        gap: 6px;
        padding: 10px 0;
        margin: 0;
    }
    .lvy-gallery__dots .dot {
        width: 7px; height: 7px;
        border-radius: 50%;
        background: rgba(0,0,0,.2);
        transition: all .25s;
    }
    .lvy-gallery__dots .dot.is-active {
        background: var(--accent);
        width: 22px;
        border-radius: 0;
    }

    .lvy-product-info__title { font-size: 1.2rem; }
    .lvy-purchase__price { font-size: 1.6rem; }
    .lvy-trust { flex-direction: column; gap: .75rem; }
    .lvy-bundle__row { flex-direction: column; align-items: center; }
    .lvy-bundle__card { width: 100%; max-width: 320px; }
    .lvy-bundle__plus { transform: rotate(90deg); height: 30px; width: auto; }
    .lvy-bundle__summary { width: 100%; max-width: 320px; margin-left: 0; margin-top: 1rem; }
    .lvy-reco__card { flex: 0 0 calc((100% - 1rem)/2); min-width: 150px; }
    .lvy-carousel-btn--prev { left: 0; }
    .lvy-carousel-btn--next { right: 0; }
    .lvy-reviews__filters { flex-direction: column; align-items: flex-start; }
    .lvy-rf__row { grid-template-columns: 1fr; }
    .lvy-rev__bars { grid-template-columns: 1fr; }
    .lvy-rev__form-row { grid-template-columns: 1fr; }
    .lvy-rev__sort-bar { flex-direction: column; align-items: flex-start; }
    .lvy-container { padding: 0 1rem; }
}

@media (max-width: 480px) {
    .lvy-reco__card { flex: 0 0 70%; min-width: 0; }
    .lvy-purchase__form { flex-direction: column; align-items: stretch; }
    .lvy-qty-wrap { width: 100%; }
    .lvy-btn--cart { width: 100%; }
    .lvy-qty-select { width: 100%; }
}

/* ===== Brand Links ===== */
.lvy-brand-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--accent) !important;
    text-decoration: none !important;
    transition: all .2s;
}
.lvy-brand-link:hover {
    text-decoration: underline !important;
}
.lvy-brand-logo-inline {
    max-width: 24px;
    max-height: 18px;
    object-fit: contain;
}
.lvy-brand-row {
    margin-top: 10px;
    font-size: 14px;
}

/* ============================================================
   Shipping Countdown — ersetzt alten lvy-trust-Block
   ============================================================ */
.lvy-single-product .lvy-ship-countdown {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    margin: 0 0 1rem;
    background: #fbcfe0;
    border: 1px solid rgba(182, 18, 97, .28);
    border-left: 3px solid var(--accent);
    border-radius: 0;
    line-height: 1.4;
}
.lvy-single-product .lvy-ship-countdown__icon {
    flex: 0 0 auto;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.lvy-single-product .lvy-ship-countdown__body {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: 14px;
    color: var(--text);
}
.lvy-single-product .lvy-ship-countdown__lead {
    font-weight: 700;
    color: var(--text);
    font-size: 15px;
    letter-spacing: .01em;
    line-height: 1.35;
}
.lvy-single-product .lvy-ship-countdown__sub {
    color: var(--text);
    font-size: 13.5px;
}
.lvy-single-product .lvy-ship-countdown__time {
    font-weight: 700;
    color: var(--accent);
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}
.lvy-single-product .lvy-ship-countdown.is-next {
    background: var(--bg2);
    border-color: var(--border);
    border-left-color: var(--text-l);
}
.lvy-single-product .lvy-ship-countdown.is-next .lvy-ship-countdown__icon {
    color: var(--text-l);
}
.lvy-single-product .lvy-ship-countdown.is-next .lvy-ship-countdown__sub {
    color: var(--text-l);
}
@media (max-width: 480px) {
    .lvy-single-product .lvy-ship-countdown {
        padding: 12px 14px;
        gap: 12px;
    }
    .lvy-single-product .lvy-ship-countdown__lead { font-size: 14px; }
    .lvy-single-product .lvy-ship-countdown__sub  { font-size: 13px; }
}

/* ============================================================
   Review form: hearts + purchase-verified gate
   ============================================================ */
.lvy-single-product .lvy-rev__gate {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 20px;
    margin: 12px 0 0;
    background: #fbcfe0;
    border: 1px solid rgba(182, 18, 97, .28);
    border-left: 3px solid var(--accent);
    border-radius: 0;
    line-height: 1.5;
}
.lvy-single-product .lvy-rev__gate-icon {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}
.lvy-single-product .lvy-rev__gate-body {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 14px;
    color: var(--text);
}
.lvy-single-product .lvy-rev__gate-body strong {
    font-size: 15px;
}
.lvy-single-product .lvy-rev__gate-link {
    margin-top: 4px;
    font-weight: 700;
    color: var(--accent);
}
.lvy-single-product .lvy-rev__gate-link:hover { color: var(--accent-h); }

/* Heart hover/active polish (overrides the gold fill in the inline force-block) */
.lvy-single-product .lvy-rf__star.is-active svg path,
.lvy-single-product .lvy-rf__star.is-hover svg path {
    fill: var(--accent);
    transition: fill .15s ease;
}
.lvy-single-product .lvy-rf__star svg path { transition: fill .15s ease; }

/* ════════════════════════════════════════════════════════════════════════
   HERO v3 — Showcase Layout (v2.10.0)
   Inspired by clean e-commerce reference, Loveify-eckig adapted.
   ════════════════════════════════════════════════════════════════════════ */
.lvy-hero { padding: 0; border-bottom: 1px solid var(--border-l); }
.lvy-hero__inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: 0;
    align-items: start;
}

/* ──────────────────────────────────────────────────────────
   LEFT: Showcase
   ────────────────────────────────────────────────────────── */
.lvy-showcase {
    background: var(--bg);
    padding: 40px 48px 32px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-self: start;
    position: sticky;
    top: 0;
}
.lvy-showcase__stage {
    position: relative;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Gallery main image — transparent within the showcase tint
   (override the inline !important rules from loveify-product-page.php) */
.lvy-single-product .lvy-showcase .lvy-gallery {
    display: block !important;
    grid-template-columns: none !important;
    gap: 0 !important;
    position: static !important;
    width: 100%;
    height: 100%;
    max-width: 520px;
}
.lvy-single-product .lvy-showcase .lvy-gallery__main {
    position: relative !important;
    background: transparent !important;
    aspect-ratio: 1 / 1 !important;
    width: 100%;
    height: auto;
}
.lvy-single-product .lvy-showcase .lvy-gallery__slide {
    position: absolute !important;
    inset: 0;
    align-items: center;
    justify-content: center;
}
.lvy-single-product .lvy-showcase .lvy-gallery__slide img {
    max-width: 100% !important;
    max-height: 100% !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
}
.lvy-single-product .lvy-showcase .lvy-gallery__zoom {
    background: #fff !important;
    border-radius: 0 !important;
    box-shadow: 0 2px 12px rgba(0,0,0,.08) !important;
    width: 38px !important;
    height: 38px !important;
    top: 1rem !important;
    right: 1rem !important;
}

/* Prev/Next navigation — eckig, weiß mit Magenta-Hover */
.lvy-showcase__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 0;
    color: var(--text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .15s, color .15s, border-color .15s, box-shadow .15s;
    z-index: 2;
    box-shadow: 0 2px 10px rgba(0,0,0,.06);
}
.lvy-showcase__nav:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}
.lvy-showcase__nav--prev { left: -22px; }
.lvy-showcase__nav--next { right: -22px; }

/* Thumbnail strip below — horizontal, directly under main image */
.lvy-showcase .lvy-gallery__thumbs {
    display: flex;
    flex-direction: row;
    gap: 8px;
    justify-content: center;
    flex: 0 0 auto;
}
.lvy-showcase .lvy-gallery__thumb {
    width: 64px;
    height: 64px;
    background: var(--bg);
    border: 1px solid var(--border);
    padding: 4px;
}
.lvy-showcase .lvy-gallery__thumb.is-active { border-color: var(--accent); }

/* ──────────────────────────────────────────────────────────
   RIGHT: Sectioned Product Info
   ────────────────────────────────────────────────────────── */
.lvy-product-info {
    padding: 48px 48px 56px;
    background: var(--bg);
    display: flex;
    flex-direction: column;
}

.lvy-product-info__top {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin: 0 0 16px;
}
.lvy-product-info__top .lvy-product-info__cats {
    margin: 0;
    font-size: 12px;
    color: var(--text-l);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.lvy-product-info__title {
    font-size: 32px;
    line-height: 1.15;
    font-weight: 900;
    letter-spacing: -0.01em;
    text-transform: none;
    margin: 0 0 14px;
    color: var(--text);
}

.lvy-product-info__meta {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    font-size: 13px;
    color: var(--text-l);
    margin: 0 0 28px;
}
.lvy-product-info__sku {
    font-weight: 600;
    letter-spacing: 0.02em;
}
.lvy-product-info__meta-sep { color: var(--text-l); opacity: .5; }
.lvy-product-info__meta .lvy-rating {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 0;
    text-decoration: none !important;
    color: var(--text-l);
    transition: color .15s;
}
.lvy-product-info__meta .lvy-rating:hover { color: var(--accent); }
.lvy-product-info__meta .lvy-rating__stars { gap: 1px; }
.lvy-product-info__meta .lvy-rating__count { font-size: 13px; color: inherit; }

/* Section block: label + body, separated by divider above */
.lvy-product-section {
    padding: 22px 0;
    border-top: 1px solid var(--border-l);
}
.lvy-product-section--first { border-top: none; padding-top: 0; }
.lvy-product-section__label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-l);
    margin: 0 0 12px;
}
.lvy-product-section__body { font-size: 15px; line-height: 1.6; }

/* Price section refresh */
.lvy-product-section .lvy-purchase__price-row {
    display: flex;
    align-items: baseline;
    gap: 14px;
    flex-wrap: wrap;
    margin: 0 0 12px;
}
.lvy-product-section .lvy-purchase__price,
.lvy-product-section .lvy-purchase__price .woocommerce-Price-amount {
    font-size: 34px;
    font-weight: 900;
    color: var(--text);
    letter-spacing: -0.01em;
    line-height: 1;
}
.lvy-product-section .lvy-purchase__old-price {
    font-size: 14px;
    color: var(--text-l);
    font-weight: 500;
}
.lvy-product-section .lvy-purchase__old-price del { text-decoration-thickness: 1px; }
.lvy-product-section .lvy-purchase__discount {
    display: inline-flex;
    align-items: center;
    padding: 4px 9px;
    background: var(--accent);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.04em;
    border-radius: 0;
}
.lvy-product-section .lvy-purchase__stock { margin: 0 0 10px; }
.lvy-product-section .lvy-purchase__tax-note {
    font-size: 12px;
    color: var(--text-l);
    margin: 0;
}

/* Versand countdown inside section — slimmer */
.lvy-product-section .lvy-ship-countdown {
    background: var(--accent-bg);
    border-left: 3px solid var(--accent);
    padding: 14px 18px;
    border-radius: 0;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin: 0;
}
.lvy-product-section .lvy-ship-countdown__icon {
    flex: 0 0 auto;
    color: var(--accent);
    display: flex;
    align-items: center;
}
.lvy-product-section .lvy-ship-countdown__body { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.lvy-product-section .lvy-ship-countdown__lead {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--text);
}
.lvy-product-section .lvy-ship-countdown__time { color: var(--accent); font-weight: 800; }
.lvy-product-section .lvy-ship-countdown__sub {
    font-size: 13px;
    color: var(--text-l);
    line-height: 1.4;
}

/* Cart section: qty + add-to-cart side-by-side */
.lvy-product-section--cart .lvy-purchase__form {
    display: flex;
    gap: 10px;
    align-items: stretch;
    margin: 0;
    flex-wrap: wrap;
}
.lvy-product-section--cart .lvy-qty-wrap { flex: 0 0 auto; }
.lvy-product-section--cart .lvy-qty-select {
    height: 52px;
    min-width: 80px;
    padding: 0 36px 0 16px;
    font-size: 15px;
    font-weight: 700;
}
.lvy-product-section--cart .lvy-btn--cart {
    flex: 1 1 auto;
    height: 52px;
    min-width: 200px;
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* Variations form fits section style */
.lvy-product-section .lvy-variations-wrap { margin: 0; }
.lvy-product-section .lvy-variations-wrap .single_add_to_cart_button { height: 52px; }
.lvy-product-section .lvy-variations-wrap .woocommerce-variation-add-to-cart .quantity input[type="number"] { height: 52px; }

/* Foot block: brand + review link */
.lvy-product-info__foot {
    margin-top: 22px;
    padding-top: 20px;
    border-top: 1px solid var(--border-l);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 13px;
    color: var(--text-l);
}
.lvy-product-info__foot .lvy-brand-row { margin: 0; }
.lvy-product-info__foot .lvy-product-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--accent);
    font-weight: 600;
}

/* ──────────────────────────────────────────────────────────
   Responsive — single column on tablet & mobile
   ────────────────────────────────────────────────────────── */
@media (max-width: 960px) {
    .lvy-hero__inner { grid-template-columns: 1fr; }
    .lvy-showcase {
        position: static;
        max-height: none;
        padding: 32px 24px 24px;
    }
    .lvy-product-info { padding: 36px 24px 48px; }
    .lvy-product-info__title { font-size: 26px; }
    .lvy-product-section .lvy-purchase__price,
    .lvy-product-section .lvy-purchase__price .woocommerce-Price-amount { font-size: 28px; }
    .lvy-showcase__nav--prev { left: 8px; }
    .lvy-showcase__nav--next { right: 8px; }
}
/* Mobile: Showcase-Slides aus Absolute-Stack lösen, damit die alte
   horizontale Scroll-Snap-Galerie greift. Die quadratische Bühne
   (aspect-ratio 1/1 auf .lvy-gallery__main) bleibt erhalten, damit
   die Slides eine definierte Höhe haben. */
@media (max-width: 768px) {
    .lvy-single-product .lvy-showcase .lvy-gallery__slide {
        position: relative !important;
        inset: auto !important;
    }
}
@media (max-width: 560px) {
    .lvy-showcase { padding: 24px 16px 18px; }
    .lvy-product-info { padding: 28px 16px 40px; }
    .lvy-product-info__title { font-size: 22px; }
    .lvy-product-section { padding: 18px 0; }
    .lvy-product-section--cart .lvy-purchase__form { flex-direction: column; }
    .lvy-product-section--cart .lvy-qty-wrap,
    .lvy-product-section--cart .lvy-btn--cart { width: 100%; }
    .lvy-showcase__nav { width: 38px; height: 38px; }
    .lvy-showcase .lvy-gallery__thumb { width: 52px; height: 52px; }
}

/* Stock-Count im Versand-Countdown — Magenta wie der Timer */
.lvy-ship-countdown__count {
    color: var(--accent);
    font-weight: 800;
}
.lvy-ship-countdown__count--low {
    color: #e67e22;  /* Orange = Urgency bei ≤ 3 Stück */
    font-weight: 800;
}
