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

.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;
    line-height: 1.6em;
}

/* 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-filter-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-filter-toggle i,
.product-sort-toggle i,
.product-coupon-toggle i {
    font-size: 16px;
    color: #222;
}

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

.product-filter-toggle.is-active i,
.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;
}

.product-filter-toggle,
.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-filter-toggle,
.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;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: .9em;
}

.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);
    position: relative;
}

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

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

/* 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-short-desc {
    font-size: 14px;
    line-height: 1.4;
    margin: 0 0 12px;

    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;

    overflow: hidden;
    white-space: normal;
    word-break: break-word;
    min-height: calc(1.4em * 2);
}

.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 */
#main_price {
    opacity: 0.7;
    font-size: 1.5em;
}

#main_price.has-discount {
    text-decoration: line-through;
}

#main_discount {
    font-weight: 600;
    color: #0000a0;         
    white-space: nowrap;
}

.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: 1.0em;
    font-weight: 600;
    color: #0000a0;         
    white-space: nowrap;
}

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

.product-purchase .product-price {
    font-size: 2.5em;
    font-weight: 700;
}

.product-price-note {
    font-size: .75em;
    opacity: 0.7;
    display: block;
}

.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: var(--bg-dark);
    color: #fff;
    font-size: 14px;
    cursor: pointer;
}

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

@media (max-width: 1024px) {
    .product-price-note {
        font-size: 0.75em;
        opacity: 0.7;
    }

    .slider-inner .product-price-note {
        font-size: 12px;
    }

    .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;
    }
    .product-price {
        font-size: 1.75em;
    }
    .product-base-unitprice,
    .product-base-amount {
        font-size: .85em;
    }
    .shop-toolbar-right {
        display: none;
    }
}

/* 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;
    }
}
@media (min-width: 768px) {
    #mobile-count {
        display: none;
    }
}

/* --------------------------------------------
   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; }
}

.product-card .product-title {
    font-size: .9rem;
    line-height: 1.3;
    margin: 0.5rem 0;
    font-weight: 600;

    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;

    overflow: hidden;
    white-space: normal;
    word-break: break-word;
    min-height: calc(1.3em * 2);
}

/* 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;
}

.cart-trash-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    border-radius: 9999px; /* schön abgerundet */
    border: 1px solid #000;
    background-color: #fff;
    color: #000;
    font-size: 0.9rem;
    cursor: pointer;
}

.cart-trash-btn i {
    font-size: 0.9rem;
}

.with_truck {
    color: #a00000;
}

.soldout-badge {
    margin-top: auto;
    display: inline-flex;
    justify-content: center; 
    align-items: center;
    padding: 10px 16px;
    border-radius: 999px;
    border: none;
    background: #e6e6e6;
    color: #606060;
    padding: 10px 22px;
    font-size: 14px;
}

.product-button-variant {
    background: #000080;   
    color: #ffffff;
    cursor: pointer;
    width: 100%;
}

.product-variation-desc {
    font-size: 0.85rem;
    color: #555;
    margin-top: 2px;
    text-align: right;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
    hyphens: auto;
}
.product-price-row .product-base-price {
    display: block;
    font-size: 0.72em; 
}

/* Nur auf kleinen Screens: Inhalt und Preis pro untereinander */
@media (max-width: 600px) {
    .product-price-row .product-base-price {
        line-height: 1.3;
    }

    .product-price-row .product-base-price .product-base-amount,
    .product-price-row .product-base-price .product-base-unitprice {
        display: block; 
    }

    /* Falls es noch irgendwo flex-row gibt, macht das keinen Ärger */
    .product-card .product-price-row,
    .product-card.cart-item .product-price-row {
        flex-direction: column;
        gap: 0.15rem;
    }

    .product-card .product-price-note,
    .product-card.cart-item .product-price-note {
        display: block;
        max-width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        font-size: 0.75em; /* optional etwas kleiner */
    }
}

.auth-modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 9999;
}

/* Overlay über alles im Modal */
.auth-modal-loading {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-modal-loading[hidden] {
    display: none;
}

.auth-modal-loading-inner {
    text-align: center;
    color: #000;
    font-weight: bold;
    font-size: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.auth-modal-loading-inner i {
    font-size: 1.5rem;
}

#auth-register-loading {
    background: rgba(0, 0, 0, 0.15);
}
/* Grund-Overlay Styling */
.auth-modal-loading {
    position: absolute;
    inset: 0;
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
}

.auth-modal-loading[hidden] {
    display: none;
}

.auth-modal-loading-inner {
    text-align: center;
    color: #000;
    font-size: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.auth-modal-loading-inner i {
    font-size: 1.5rem;
}

/* Mehr Luft zwischen den Feldern */
.auth-form-row {
    margin-bottom: 0.75rem;
}

.auth-form-row input {
    padding: 0.55rem 0.75rem;
}


/* Roter Rahmen / Error-Style für das Payment-Cancelled-Modal */
.payment-cancelled-dialog {
  border: 2px solid #e53935;        /* kräftiges Rot */
  box-shadow: 0 0 0 1px rgba(229, 57, 53, 0.2);
}

.payment-cancelled-modal .empty-cart-text {
  /* Optional: Text leicht „warnend“ einfärben */
  color: #b71c1c;
}

.payment-cancelled-button {
  /* Optional: Button etwas „warnender“ gestalten */
  background-color: #e53935;
  border-color: #e53935;
}

.payment-cancelled-button:hover,
.payment-cancelled-button:focus {
  background-color: #c62828;
  border-color: #c62828;
}

.empty-cart-modal {
  position: fixed;
  inset: 0;
  display: none; /* standard: versteckt */
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.empty-cart-modal.is-visible {
  display: flex;
}

.empty-cart-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(6px);
}

.empty-cart-dialog {
  position: relative;
  max-width: 420px;
  width: 90%;
  background: #ffffff;
  border-radius: 16px;
  padding: 24px 20px 20px;
  text-align: center;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.25);
}

.empty-cart-buddha {
  height: 80px;
  width: auto;
  margin-bottom: 16px;
}

.empty-cart-text {
  font-size: 15px;
  line-height: 1.5;
  color: #333333;
  margin-bottom: 20px;
}

.empty-cart-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 12px 16px;
  border-radius: 999px;
  border: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  background: #000;
  color: #fff;
}

.empty-cart-button:hover {
  opacity: 0.9;
}

body.empty-cart-lock {
  overflow: hidden;
}

.breadcrumb {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #555;
    gap: 6px;
    white-space: nowrap;
    margin-left: 16px;
}

.breadcrumb a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb-search {
    margin-left: 16px; 
}

.breadcrumb .divider {
    font-size: 12px;
    color: #999;
    display: inline-flex;
    align-items: center;
    margin: 0 4px;
}

@media (max-width: 768px) {

    .shop-breadcrumb-bar {
        flex-direction: column;   /* 2 Zeilen */
        align-items: stretch;
        padding: 0 16px;
        gap: 6px;
    }

    .breadcrumb {
        font-size: 12px;
        white-space: normal;      /* Text darf umbrechen */
        margin-bottom: 4px;
        margin-left: 6px;
    }

    .breadcrumb-search {
        align-self: flex-end;     /* Icon in Zeile 2 nach rechts */
    }
}

/* Panel-Container */
.mobile-cart-panel {
    position: fixed;
    top: 60px;           /* Höhe deines Headers anpassen */
    left: 10px;
    right: 10px;
    max-height: 70vh;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    overflow-y: auto;
    z-index: 9999;
    display: none;       /* wird von GSAP gesteuert */
}

.mobile-cart-panel-inner {
    padding: 15px;
}

/* Hintergrund overlay */
.mobile-cart-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.25);
    z-index: 9998;
    display: none;
}

/* Optional: nur auf Tablet & Mobile anzeigen */
@media (min-width: 1025px) {
    .mobile-cart-panel,
    .mobile-cart-backdrop {
        display: none !important;
    }
}

/* Innerer Bereich */
.mobile-cart-panel-inner {
    padding: 12px;
}

/* Max. 400px Höhe für Items, dann scrollen */
.mobile-cart-items {
    max-height: 400px;
    overflow-y: auto;
    margin-bottom: 10px;
}

/* Einzelnes Item */
.mobile-cart-item {
    display: flex;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.mobile-cart-item:last-child {
    border-bottom: none;
}

/* Bild links */
.mobile-cart-item-image img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
    display: block;
}

/* Text rechts */
.mobile-cart-item-body {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

/* Titel oben */
.mobile-cart-item-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Beschreibung darunter, etwas begrenzt */
.mobile-cart-item-desc {
    font-size: 13px;
    line-height: 1.4;
    color: #555;
    overflow: hidden;
    max-height: calc(1.4em * 3); /* ~3 Zeilen */
}

/* Letzte Zeile: qty × preis – gesamtpreis */
.mobile-cart-item-meta {
    margin-top: 4px;
    font-size: 13px;
    font-weight: 600;
    text-align: right;
}

/* Buttons unten, 50/50 */
.mobile-cart-actions {
    display: flex;
    gap: 8px;
    margin-top: 8px;
}

.mobile-cart-btn {
    flex: 1 1 50%;
    text-align: center;
    padding: 9px 8px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid transparent;
    text-transform: uppercase;
}

/* Linke Seite: Warenkorb */
.mobile-cart-btn--secondary {
    background: #ffffff;
    background-color: #2274e3;
    color: #fff;
    border-color: #ddd;
}

/* Rechte Seite: Kasse */
.mobile-cart-btn--primary {
    background: #ffba36;
    color: #ffffff;
    border-color: #ddd;
}

.mobile-cart-btn--primary:hover {
    background: #ffba36;
    border-color: #ddd;
}

.mobile-h4 {
    padding: 0;
    text-transform: uppercase;
    margin: 6px 0 16px 0;
    font-size: 1.4em;
}
@media (max-width: 600px) {
    .mobile-h4 {
        font-size:1.1em;
    }
}
.shop-nav-header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    gap: 20px;
}

/* Linke Seite */
.shop-nav-header-left {
    display: flex;
    align-items: center;
    font-size: 1.4rem;
    margin: 0;
    gap: 8px;
}

/* Rechte Seite: Home-Link */
.shop-nav-header-right .shop-home-link {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 1rem;
    text-decoration: none;
    color: inherit;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.shop-nav-header-right .shop-home-link:hover {
    opacity: 1;
}

/* Optional: Gleichmäßige Breite links & rechts */
.shop-nav-header-split > * {
    flex: 1 1 50%;
}
.shop-nav-header-right {
    text-align: right;
}

img.lazy-img {
    display: block;
    width: 100%;
    height: auto;
    background-color: #f4f4f4;   /* neutraler Hintergrund */
/*    filter: blur(4px);*/
    transform: scale(1.02);
    transition:
        opacity 0.3s ease-out,
        filter 0.3s ease-out,
        transform 0.3s ease-out;
    opacity: 0.6;
}

img.lazy-img.lazy-loaded {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
}

.product-meta-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.product-remember-col {
    flex: 0 0 30%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.product-description-col {
    flex: 0 0 70%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

/* Button für Merkfunktion */
.product-remember-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: #b30000; /* Rot für Text/Icon */
}

.product-remember-toggle:focus-visible {
    outline: 2px solid #b30000;
    outline-offset: 2px;
}

/* Herz-Icons */
.product-remember-icon-wrapper {
    position: relative;
    width: 1.5rem;
    height: 1.5rem;
}

.product-remember-icon {
    position: absolute;
    inset: 0;
    font-size: 1.5rem;
    line-height: 1.5rem;
    text-align: center;
}

/* Outline-Herz: weiss innen, rote Kontur */
.product-remember-icon-outline {
    color: #b30000;             /* Kontur */
    -webkit-text-stroke: 1px #b30000;
    text-stroke: 1px #b30000;
    background-color: #ffffff;  /* „weiß innen“ */
    border-radius: 50%;
}

/* Gefülltes Herz standardmäßig verstecken */
.product-remember-icon-filled {
    color: #b30000;
    opacity: 0;
    transform: scale(0.5);
    transform-origin: center;
}

/* Wenn gemerkt: Outline ausblenden, gefülltes Herz zeigen */
.product-remember-toggle.is-remembered .product-remember-icon-outline {
    opacity: 0;
}

.product-remember-toggle.is-remembered .product-remember-icon-filled {
    opacity: 1;
}

/* Label-Text anpassen je nach Zustand (per JS wird nur der Text gewechselt) */
.product-remember-label {
    white-space: nowrap;
}

/* Responsive: auf schmalen Screens untereinander */
@media (max-width: 768px) {
    .product-meta-row {
        flex-direction: column;
        align-items: stretch;
    }
    .product-remember-col,
    .product-description-col {
        flex: 0 0 auto;
        justify-content: space-between;
    }
    .product-description-col {
        justify-content: flex-start;
    }
}

.product-image {
    will-change: transform;
}

.vat-info-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.vat-info-overlay.is-visible {
    display: flex;
}

.vat-info-modal {
    background: #fff;
    max-width: 480px;
    width: 90%;
    padding: 20px 24px;
    border-radius: 8px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.2);
    position: relative;
    font-size: 14px;
}

.vat-info-title {
    margin: 0 0 12px;
    font-size: 18px;
    font-weight: 600;
}

.vat-info-content {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 16px;
}

.vat-info-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.vat-info-text p {
    margin: 0;
    line-height: 1.4;
}

.vat-info-footer {
    text-align: right;
}

.vat-info-understood {
    font-weight: 600;
    text-decoration: underline;
    cursor: pointer;
}

.vat-info-close {
    position: absolute;
    top: 8px;
    right: 10px;
    border: none;
    background: transparent;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
}

/* Mobile Menu Search */
.mobile-menu-search {
  padding: 10px 14px;
}

.mobile-menu-search-form {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-menu-search-icon {
  font-size: 14px;
  opacity: 0.75;
}

.mobile-menu-search-input {
  width: 100%;
  border: 0;
  outline: none;
  background: transparent;
  font-size: 14px;
  padding: 8px 0;
}

/* Thin divider */
.mobile-menu-divider {
  padding: 0 14px;
  margin: 6px 0 10px;
  list-style: none;
}

.mobile-menu-divider > span {
  display: block;
  height: 1px;
  opacity: 0.2;
  background: currentColor;
}

/* category-slider sollte Position haben */
.category-slider { position: relative; }

/* Mobile Count Toast */
.bb-mobile-count {
  position: absolute;
  left: 12px;
  right: 12px;
  top: 0;
  z-index: 50;
  color: #fff;
  background: #000080;
  border-radius: 14px;
  padding: 10px 12px;
  box-shadow: 0 10px 26px rgba(0,0,0,0.12);
  font-weight: 700;
  font-size: 13px;
  opacity: 0;
  transform: translateY(-18px);
  pointer-events: none;
}

#category-slider-track{
  display:flex;
  gap:12px;
  align-items:flex-start;
  position: relative;
}

.category-card {
  position: relative;
  display:inline-flex;
  align-items:center;
  height:42px;  
  overflow: visible;
  color: #111;   
  justify-content: center;
}

/* falls Sie z.B. active-Styling haben, ebenfalls sicherstellen */
.category-card.active{ color:#111; }

/* Titel in der Pille */
.category-card .cat-title{
  line-height: 1;
  pointer-events:none;             /* Klick/Longpress bleibt auf der Pille */
}

/* Popover */
.category-card .subcats{
  position:absolute;
  left:0;
  bottom: calc(100% + 8px);
  min-width: 240px;

  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(0,0,0,.16);
  padding: 10px 12px;

  z-index: 50;

  overflow:hidden;                 /* wir animieren die Höhe */
  height: 0;                       /* geschlossen */
  opacity: 0;
  pointer-events:none;
  transform-origin: top;
}

.category-card .subcats a{
  display:block;
  padding: 8px 6px;
  white-space: normal;
  text-decoration:none;
  text-align:center;
  color: inherit;
}

.category-card .subcats a.is-primary{
  font-weight: 700;                /* erster Eintrag strong */
}

.subcats.is-portal {
  position: fixed;
  z-index: 2147483647; /* maximal sinnvoll */
}
.subcats.is-portal { position: fixed; z-index: 2147483647; }

.subcats.is-portal{
  position: fixed;
  z-index: 2147483647;
}

/* Portal-Popover: weil es im <body> hängt */
.subcats.is-portal{
  position: fixed;
  z-index: 2147483647;

  min-width: 260px;
  max-width: min(360px, calc(100vw - 16px));

  background: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(0,0,0,.16);
  padding: 10px 12px;

  overflow: hidden;   /* wichtig für height-Animation */
}

/* Links IM Popover sauber untereinander */
.subcats.is-portal a{
  display: block;
  padding: 8px 6px;
  text-decoration: none;
  color: #111;
  white-space: normal;
}

/* erster Eintrag im Popover */
.subcats.is-portal a.is-primary{
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 6px;
}

/* dünner Trennstrich unter erstem Eintrag */
.subcats.is-portal a.is-primary::after{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;

  height: 1px;
  background: rgba(0,0,0,0.12);
}

.product-image {
  position: relative;
}

.discount-badge {
  position: absolute;
  top: 10px;
  right: 10px;

  background: #e53935;        
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;

  padding: 10px 12px;
  border-radius: 8px;

  box-shadow: 0 4px 10px rgba(0,0,0,0.18);
  z-index: 5;

  pointer-events: none;       
}

.discount-badge {
  transform: scale(0.6);
  opacity: 0;
}

.product-blemish-info {
    display: flex;
    align-items: flex-start;
    gap: 8px;

    margin: 0 0 14px;
    padding: 10px 12px;

    color: #800000;
    font-size: 14px;
    line-height: 1.5;

    background: rgba(128, 0, 0, 0.05);
    border-left: 3px solid #800000;
    border-radius: 4px;
}

.product-blemish-info i {
    margin-top: 2px;
    font-size: 14px;
    opacity: 0.9;
}

/*
 * Filter
 */

.product-filter-overlay{
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.35);
    display: none;
    z-index: 9999;
}
.product-filter-overlay.is-open{ display:block; }

.product-filter-box{
    position: absolute;
    width: 280px;
    background:#fff;
    border-radius: 12px;
    box-shadow: 0 18px 50px rgba(0,0,0,.18);
    padding: 14px;
}

.product-filter-title{
    font-weight: 600;
    margin-bottom: 10px;
}

.product-filter-row{
    margin-bottom: 12px;
}

.product-filter-row--check{
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-filter-label{
    display: block;
    font-size: 12px;
    opacity: .75;
    margin-bottom: 6px;
}

.product-filter-input,
.product-filter-select{
    width: 100%;
    border: 1px solid rgba(0,0,0,.14);
    border-radius: 10px;
    padding: 10px 12px;
    outline: none;
}

.product-filter-actions{
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 8px;
}

.product-filter-reset{
    border: 1px solid rgba(0,0,0,.14);
    background: #fff;
    border-radius: 10px;
    padding: 10px 12px;
    cursor: pointer;
}

.product-filter-apply{
    border: 1px solid #800000;
    background: #800000;
    color: #fff;
    border-radius: 10px;
    padding: 10px 12px;
    cursor: pointer;
}

.product-filter-row--switch{
    display:flex;
    align-items:center;
    justify-content: space-between;
    gap: 12px;
}

.product-filter-label-row{
    display:flex;
    flex-direction:column;
}

.bb-switch{
    position: relative;
    display: inline-block;
    width: 44px;
    height: 26px;
    flex: 0 0 auto;
}

.bb-switch input{
    opacity: 0;
    width: 0;
    height: 0;
}

.bb-switch__slider{
    position:absolute;
    cursor:pointer;
    inset:0;
    background: rgba(0,0,0,.15);
    border-radius: 999px;
    transition: .2s;
}

.bb-switch__slider:before{
    content:"";
    position:absolute;
    height: 20px;
    width: 20px;
    left: 3px;
    top: 3px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,.18);
    transition: .2s;
}

.bb-switch input:checked + .bb-switch__slider{
    background: #800000;
}

.bb-switch input:checked + .bb-switch__slider:before{
    transform: translateX(18px);
}

/* Cancel Button im selben Stil wie vorher "Reset" (Ghost) */
.product-filter-cancel{
    border: 1px solid rgba(0,0,0,.14);
    background: #fff;
    border-radius: 10px;
    padding: 10px 12px;
    cursor: pointer;
}

.product-filter-toggle{
    border-radius: 50%;
    transition: background-color .2s ease, color .2s ease;
}

/* ACTIVE STATE */
.product-filter-toggle.is-active{
    background-color: #800000;   /* euer Rot */
    color: #fff;
}

.product-filter-toggle.is-active i{
    color: #fff;
}

.plm-gift-price, .plm-gift-subtotal { font-weight: 600; }

