/* -------------------------------------------------
   Grundlayout
------------------------------------------------- */

body {
    margin: 0;
    font-family: "ABeeZee", sans-serif;
    background: #f5f3ef;
    color: #2c2c2c;
}

.shop-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

/* -------------------------------------------------
   Banner
------------------------------------------------- */

.shop-nav-tablet {
    display: none;
}

.shop-nav-icon,
.shop-nav-title {
    cursor: pointer;
}

.shop-nav-header {
    display: flex;
    align-items: center;
    gap: 8px;
}

.shop-banner {
    width: 100%;
    max-height: 120px;
    height: 120px;
    box-sizing: border-box;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #d9c9b8; /* hier kannst du später ein Hintergrundbild setzen */
    background: url('/images/full-banner.jpg') center center / cover no-repeat;
    color: #fff;
}

.shop-banner-inner {
    max-width: 100%;
    text-align: center;
}

.shop-banner-text {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* -------------------------------------------------
   Top-Bar: Navigation / Konto / Warenkorb
------------------------------------------------- */

.shop-top-bar {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 1rem 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-areas: "nav account cart";
    gap: 1.5rem;
}

.shop-top-section {
    background: #ffffff;
    border-radius: 16px;
    padding: 18px 20px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.shop-top-section h2 {
    margin: 0 0 10px;
    font-size: 16px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
}

.shop-heading-icon {
    font-size: 18px;
}

/* Navigation (linke Spalte) – 2 Spalten */
.shop-main-nav ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 24px;
    row-gap: 6px;
}

.shop-main-nav li {
    margin: 0;
}

.shop-main-nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    display: inline-block;
    font-size: .9em;
}

.shop-nav-link.active::before {
    content: "> ";
    margin-right: 4px;
}

.shop-main-nav a.active {
    text-decoration: underline;
    font-weight: 600;
}

.shop-main-nav a:hover {
    text-decoration: underline;
}

/* Konto */
.shop-auth-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.shop-auth-menu li {
    margin-bottom: 6px;
    font-size: .9em;
}

/* Warenkorb */
.shop-cart-summary {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 4px;
    font-size: 14px;
}

.shop-cart-summary .cart-row {
    display: flex;
    justify-content: space-between;
}

.shop-cart-summary .cart-button {
    display: inline-block;
    margin-top: 8px;
    padding: 10px 16px;
    text-align: center;
    border-radius: 999px;
    border: 1px solid #222;
    background: #222;
    color: #fff;
    font-size: 14px;
    text-decoration: none;
}

/* -------------------------------------------------
   Slider-Grundlayout (Kategorien & Produkte)
------------------------------------------------- */

.slider-section {
    width: 100%;
    overflow: hidden;
}

.slider-inner {
    position: relative; /* für die Pfeile */
}

/* Tracks – horizontal scrollen, aber kein scroll-snap */
#category-slider-track,
#product-slider-track {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    padding: 24px;
    box-sizing: border-box;
}

#category-slider-track::-webkit-scrollbar,
#product-slider-track::-webkit-scrollbar {
    display: none;
}

/* Kopfbereich über dem Produkt-Slider */
.product-slider-header {
    display: flex;
    flex-direction: row;      /* explizit: nebeneinander */
    align-items: center;
    justify-content: flex-start;
    gap: 8px;                 /* Abstand zwischen Sort und % */
    padding: 8px 24px 0;
    box-sizing: border-box;
}

/* Basis: runde Icon-Buttons */
.product-search-toggle,
.product-sort-toggle,
.product-coupon-toggle {
    border: none;
    background: rgba(255, 255, 255, 0.96);
    border-radius: 999px;
    width: 36px;
    height: 36px;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
    padding: 0;
}

.product-sort-toggle i,
.product-coupon-toggle i {
    font-size: 16px;
    color: #222;
}

/* Aktiv: invertiert (dunkler Button, weißes Icon) */
.product-sort-toggle.is-active,
.product-coupon-toggle.is-active {
    background: #222;
}

.product-sort-toggle.is-active i,
.product-coupon-toggle.is-active i {
    color: #fff;
}

.product-search-wrapper,
.product-sort-wrapper,
.product-coupon-wrapper {
    position: relative;
    display: inline-flex;     /* wichtig: nur so breit wie Icon + Overlay-Anker */
    align-items: center;
    justify-content: center;
    margin-left: 5px;
}

/* Rundes Icon wie deine Pfeile */
.product-sort-toggle {
    border: none;
    background: rgba(255, 255, 255, 0.96);
    border-radius: 999px;
    width: 36px;
    height: 36px;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
    padding: 0;
}

.product-sort-toggle i {
    font-size: 16px;
    color: #222;
}

/* Overlay-Container */
.product-sort-overlay {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 8px;
    z-index: 20;

    display: none; /* per JS ein/ausblenden */
}

/* Box im Stil deines Warenkorb-Widgets */
.product-sort-box {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
    padding: 14px 16px;
    min-width: 220px;
    box-sizing: border-box;
}

.product-sort-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Sortieroptionen */
.product-sort-option {
    display: block;
    width: 100%;
    text-align: left;
    border: none;
    background: transparent;
    padding: 6px 0;
    font-size: 14px;
    cursor: pointer;
}

.product-sort-overlay.is-open {
    display: block;
}

.product-sort-option:hover {
    text-decoration: underline;
}

.product-sort-option.is-active {
    font-weight: 600;
}

/* Pfeile */
.category-arrow,
.product-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: rgba(255, 255, 255, 0.96);
    border-radius: 999px;
    width: 32px;
    height: 32px;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
    z-index: 5;
}

.category-arrow.left,
.product-arrow.left {
    left: 12px;
}

.category-arrow.right,
.product-arrow.right {
    right: 12px;
}

/* -------------------------------------------------
   Kategorien-Slider
------------------------------------------------- */

.category-slider {
    background: #e8e0d8;
    margin-top: 8px;
}

.category-card {
    flex: 0 0 auto;
    min-width: 180px;
    max-width: 220px;
    padding: 12px 18px;
    margin-right: 16px;
    border-radius: 999px;
    background: #ffffff;
    text-align: center;
    font-weight: 500;
    border: 2px solid transparent;
    cursor: pointer;
}

.category-card.active {
    border-color: #222;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

/* Standard: Text wie bisher */
.category-card-label {
    line-height: 1.3;
    color: #333;
}

/* Hintergrund-Container standardmäßig unsichtbar */
.category-card-bg {
    display: none;
}

.category-card.active {
    border-color: #222;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

/* -------------------------------------------------
   Produkt-Slider
------------------------------------------------- */

.product-slider {
    background: #f5f3ef;
}

.product-card {
    flex: 0 0 auto;
    width: 260px;
    border-radius: 16px;
    background: #ffffff;
    margin-right: 16px;
    padding: 16px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

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

.product-image {
    width: 100%;
    height: 180px;
    border-radius: 12px;
    background: #ddd;
    object-fit: cover;
    margin-bottom: 12px;
}

.product-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 4px;
}

/* Kurzbeschreibung – fixe Höhe */
.product-short-desc {
    font-size: 14px;
    line-height: 1.4;
    margin: 0 0 12px;
    min-height: 48px;
    max-height: 48px;
    overflow: hidden;
}

.product-price-row {
    display: flex;
    flex-direction: column;   /* alles untereinander */
    align-items: flex-end;    /* rechtsbündig */
    gap: 2px;
    margin-bottom: 12px;
    text-align: right;
}

/* Standard: nur Originalpreis sichtbar */
.product-price-original {
    font-size: 20px;
    font-weight: 600;
    white-space: nowrap;
}

.product-price-discount {
    display: none;           /* nur bei Rabatt sichtbar */
}

/* Wenn es Rabatt gibt: Card bekommt Klasse .has-discount */
.product-card.has-discount .product-price-original {
    text-decoration: line-through;
    opacity: 0.7;
    font-size: 14px;
}

.product-card.has-discount .product-price-discount {
    display: inline-block;
    font-size: 20px;
    font-weight: 600;
    color: #0000a0;          /* gewünschtes Blau */
    white-space: nowrap;
}

.product-price-note {
    font-size: 11px;
    opacity: 0.7;
}

.product-price {
    font-size: 20px;
    font-weight: 600;
    white-space: nowrap;
}

.product-price-note {
    font-size: 11px;
    opacity: 0.7;
}

.product-add-to-cart {
    margin-top: auto;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 10px 16px;
    border-radius: 999px;
    border: none;
    background: #222;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
}

/* -------------------------------------------------
   Responsive
------------------------------------------------- */

@media (max-width: 1024px) {
    .shop-top-bar {
        grid-template-columns: 1fr 1fr;  /* nur Konto + Warenkorb */
        gap: 12px;
        padding: 12px;
    }

    .shop-top-section {
        padding: 10px 12px;
    }

    .shop-top-section h2 {
        font-size: 14px;
    }

    .shop-banner {
        padding: 12px;
        height: auto;
    }
}

@media (max-width: 600px) {
    .product-card {
        width: 80vw;
    }
}

/* Nur Tablets: Kategoriebild anzeigen */
@media (min-width: 768px) and (max-width: 1024px) {

    /* optional: Buttons etwas breiter machen */
    .category-card {
        min-width: 150;
        max-width: 150px;
    }
}
/* --------------------------------------------
   TABLET: Kategorien als runde Bild-Buttons
--------------------------------------------- */
@media (min-width: 768px) and (max-width: 1024px) {

    .shop-banner {
        max-height: 120px;
        height: 120px;
    }

    .shop-top-bar {
        grid-template-columns: 1fr 1fr;  /* zwei Spalten: Konto + Warenkorb */
        grid-auto-rows: 1fr;             /* gleich hohe Zeilen */
        gap: 16px;
        padding: 16px;
    }

    .shop-top-section {
        min-height: 160px;               /* sorgt für vergleichbare Höhe */
    }

    /* NAV-BLOCK über die gesamte Breite in der zweiten Zeile */
    .shop-top-section--nav {
        grid-column: 1 / -1;             /* von Spalte 1 bis letzte */
        grid-row: 2;                     /* zweite Zeile */
    }
}

/* MOBIL: nur Konto + Warenkorb, Navigation ausgeblendet */
@media (max-width: 767px) {

    .shop-top-bar {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        padding: 12px;
    }

    .shop-top-section--nav {
        display: none;
    }

    .shop-top-section {
        padding: 10px 12px;
    }

    .shop-top-section h2 {
        font-size: 14px;
    }
}

.product-empty-message {
    display: none;                /* wird per JS ein-/ausgeblendet */
    margin: 16px 24px 24px;
    padding: 12px 16px;
    border-radius: 12px;
    background: #ffe6e6;
    border: 1px solid #ff4d4d;
    color: #b30000;
    font-size: 14px;
}

/* -----------------------------------------
   Footer-Bereich
------------------------------------------ */

.cart-footer {
    background: #ffffff;
    border-top: 1px solid #ddd;
    min-height: 80px;
    padding: 1rem 0 1.5rem; /* links/rechts 0 */
}

.cart-footer-inner {
    padding: 0; /* hier kein extra Padding nötig */
}

.cart-footer-inner > .footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    box-sizing: border-box;
}

/* -----------------------------------------
   Auth Modal
------------------------------------------ */

.auth-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
}

.auth-modal {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    max-width: 420px;
    width: 100%;
    box-shadow: 0 18px 40px rgba(0,0,0,0.2);
    position: relative;
}

.auth-modal-title {
    margin: 0 0 16px;
    font-size: 1.4rem;
    font-weight: 600;
}

.auth-modal-body {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.auth-form-row {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.auth-form-row label {
    font-size: 0.9rem;
    font-weight: 500;
}

.auth-form-row input {
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 8px 10px;
    font-size: 0.95rem;
}

.auth-form-row input:focus {
    outline: none;
    border-color: #c58a3d;
    box-shadow: 0 0 0 1px rgba(197,138,61,0.3);
}

.auth-form-actions {
    margin-top: 12px;
    display: flex;
    justify-content: flex-end;
}

.auth-button {
    border: none;
    border-radius: 999px;
    padding: 8px 18px;
    font-size: 0.95rem;
    cursor: pointer;
}

.auth-button--primary {
    background: #c58a3d;
    color: #fff;
}

.auth-button--primary:hover {
    background: #b47a2f;
}

.auth-modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 1.1rem;
}

.auth-message {
    padding: 8px 10px;
    border-radius: 6px;
    font-size: 0.9rem;
}

.auth-message--error {
    background: #ffe5e5;
    color: #a32626;
}

/* Auth-Modal wirklich ausblenden, wenn das hidden-Attribut gesetzt ist */
.auth-modal-backdrop[hidden] {
    display: none !important;
}

/* Gleiche Abstände für Navi-Listen im Top-Bereich */
.shop-main-nav ul,
.shop-auth-menu ul {
    margin-top: 0.3rem;   /* oder 0 – Hauptsache beide gleich */
    margin-bottom: 0;
    padding-left: 0;
}

@media (max-width: 1024px) and (min-width: 701px) {

    .product-media-top {
        display: flex;
        align-items: stretch;   /* Kinder gleich hoch wie der größte */
        gap: 12px;
    }

    .product-main-image-wrapper {
        flex: 1 1 auto;
    }

    .product-main-image {
        width: 100%;
        aspect-ratio: 1 / 1;
        height: auto;
        object-fit: cover;
        border-radius: 14px;
        max-height: none;
    }

    .product-thumbs-vertical {
        width: 80px !important;
        flex: 0 0 80px !important;
        display: flex;
        flex-direction: column;
        align-items: center;
        /* Höhe vom großen Bild erben */
        height: 100%;
    }

    .product-thumbs-vertical-nav {
        background: #ffffff;
        border: 1px solid #ccc;
        border-radius: 50%;
        width: 30px;
        height: 30px;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        flex: 0 0 auto; /* Pfeile haben fixe Höhe */
    }

    .product-thumbs-vertical-track {
        width: 100% !important;
        flex: 1 1 auto;        /* nimmt den ganzen Platz zwischen den Pfeilen */
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        overflow-y: auto;
        padding: 4px;
        max-height: none !important; /* alte Begrenzung aufheben */
    }

    .product-thumb-vertical {
        flex: 0 0 auto !important;
        width: 64px !important;
        height: 64px !important;
        border: 1px solid #ccc;
        box-sizing: border-box;
        background: #eee;
        overflow: hidden;
        cursor: pointer;
        display: block;
    }

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

.product-card.skeleton {
    position: relative;
    overflow: hidden;
    opacity: 1;
}

/* Grundflächen der Skeletons */
.product-card.skeleton .product-image,
.product-card.skeleton .product-title,
.product-card.skeleton .product-short-desc,
.product-card.skeleton .product-price-row,
.product-card.skeleton .product-add-to-cart {
    background: #e2e2e2;
    border-radius: 6px;
    color: transparent;
    position: relative;
}

/* Höhe zwingend setzen, sonst sieht man sie kaum */
.product-card.skeleton .product-image {
    height: 200px; /* ggf. an deine Kartenhöhe anpassen */
}

.product-card.skeleton .product-title {
    height: 22px;
    margin-top: 12px;
}

.product-card.skeleton .product-short-desc {
    height: 52px;
    margin-top: 10px;
}

.product-card.skeleton .product-price-row {
    height: 20px;
    margin-top: 14px;
}

.product-card.skeleton .product-add-to-cart {
    height: 38px;
    margin-top: 18px;
}

/* Shimmer-Overlay */
.product-card.skeleton::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.7) 40%,
        rgba(255,255,255,0) 80%
    );
    transform: translateX(-100%);
    animation: product-skeleton-shimmer 1.2s ease-in-out infinite;
    pointer-events: none;
}

/* Zusätzliches leichtes Pulsieren der Opacity */
.product-card.skeleton {
    animation: product-skeleton-pulse 0.9s ease-in-out infinite;
}

@keyframes product-skeleton-shimmer {
    0%   { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes product-skeleton-pulse {
    0%   { opacity: 0.4; }
    50%  { opacity: 1;   }
    100% { opacity: 0.4; }
}

/* Titel in Produktkarten auf 2 Zeilen clampen */
.product-card .product-title {
    font-size: 1rem;              /* an dein Design anpassen */
    line-height: 1.3;
    max-height: calc(1.3em * 2);  /* 2 Zeilen */
    margin: 0.5rem 0;

    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;        /* eigentliche Limitierung */
    overflow: hidden;
    text-overflow: ellipsis;
    word-wrap: break-word;
}

/* Toolbar oben */

.shop-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.shop-toolbar-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.shop-toolbar-right {
    margin-left: auto;
}

.product-count {
    font-size: 0.95rem;
    font-weight: 500;
    text-align: right;
    white-space: nowrap;
}

/* Such-Modal */
.shop-search-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: flex-start;   /* statt center */
    justify-content: center;
    padding-top: 6rem;         /* Höhe anpassen, bis es "über dem Slider" sitzt */
    z-index: 9999;
}

.shop-search-modal.is-visible {
    display: flex;
}

.shop-search-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
}

.shop-search-modal-dialog {
    position: relative;
    z-index: 1;
    max-width: 480px;
    width: 90%;
    background: #fff;
    border-radius: 18px;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 18px 45px rgba(0,0,0,0.25);
}

.shop-search-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.shop-search-modal-header h2 {
    font-size: 1.2rem;
    margin: 0;
}

.shop-search-close {
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 1.1rem;
}

.shop-search-modal-body {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

#shop-search-input {
    width: 100%;
    padding: 0.55rem 0.7rem;
    border-radius: 999px;
    border: 1px solid #ddd;
    font-size: 0.95rem;
}

.shop-search-hint {
    font-size: 0.8rem;
    color: #777;
    margin: 0;
}

.product-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.product-card-link:hover .product-title {
    text-decoration: underline;
}

.product-card .product-image {
    cursor: pointer;
}

.shop-toast {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    z-index: 9999;

    min-width: 260px;
    max-width: 90%;
    padding: 0.75rem 1rem;
    border-radius: 999px;

    font-size: 0.95rem;
    text-align: center;

    opacity: 0;
    pointer-events: none;
    transition:
        opacity 0.4s ease,
        transform 0.4s ease;
}

/* sichtbarer Zustand */
.shop-toast--visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

/* Erfolg (grün) */
.shop-toast--success {
    background: #1f8f3a;
    color: #fff;
}

/* Fehler (rot) */
.shop-toast--error {
    background: #c62828;
    color: #fff;
}

.shop-toast a {
    color: #fff;
    text-decoration: underline;
    font-weight: 500;
}

/* Wrapper um Button + Overlay */
.coupon-widget {
    position: relative;
    display: inline-block;
}

/* Overlay: kleiner Popover unter dem %-Button */
.coupon-overlay {
    position: fixed;          /* statt absolute */
    z-index: 50;
    display: none;
    min-width: 260px;
    max-width: 320px;
    max-width: calc(100vw - 16px); /* nie breiter als der Viewport */
}

/* bleibt wie gehabt */
.coupon-overlay.is-open {
    display: block;
}

/* Box selbst: NICHT durchsichtig */
.product-coupon-box {
    background: #fff;
    border-radius: 12px;
    padding: 1rem;
    min-width: 260px;
    max-width: 320px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Header mit Titel + X */
.product-coupon-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.product-coupon-title {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}

.product-coupon-close {
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.product-coupon-close i {
    font-size: 0.95rem;
}

/* Zeile mit Input + Button */
.product-coupon-row {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.coupon-input,
.product-coupon-input {
    flex: 1;
}

/* >>> Dein „schöner“ Einlösen-Button <<< */
.coupon-apply-btn,
.product-coupon-apply {
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 0.4rem 1.2rem;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.coupon-apply-btn:hover,
.coupon-apply-btn:focus-visible,
.product-coupon-apply:hover,
.product-coupon-apply:focus-visible {
    background-color: #111;
    outline: none;
}

/* Bereich „Aktive Gutscheine“ */
.product-coupon-applied-title {
    font-size: 0.8rem;
    color: #666;
    margin: 0.5rem 0 0.25rem;
}

.product-coupon-applied-list,
.coupon-applied-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
}

/* Pills (werden von coupon.js erzeugt) */
.product-coupon-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    border: none;
    border-radius: 999px;
    padding: 0.25rem 0.6rem;
    font-size: 0.8rem;
    background: #f3f4f6;
    cursor: pointer;
}

.product-coupon-pill i {
    font-size: 0.75rem;
}

