/* ============================================================
   MEYER EDV Shop – Design exakt im Arsha-Template-Stil
   Farben: #37517e (dunkelblau) | #47b2e4 (hellblau) | #283a5a
   Fonts:  "Jost" (Überschriften) | "Open Sans" (Fließtext)
   ============================================================ */

/* ---- Allgemein --------------------------------------------- */
.shop-page main {
    margin-top: 70px;
}

/* ---- Shop-Hero (wie #hero der Startseite) ------------------ */
.shop-hero {
    background: #37517e;
    min-height: 40vh;
    display: flex;
    align-items: center;
    padding: 80px 0 60px;
}
.shop-hero h1 {
    font-family: "Jost", sans-serif;
    font-size: 42px;
    font-weight: 700;
    line-height: 54px;
    color: #fff;
    margin-bottom: 16px;
}
.shop-hero p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 32px;
    max-width: 560px;
}
.shop-hero .btn-hero {
    font-family: "Jost", sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    padding: 10px 28px 11px 28px;
    border-radius: 50px;
    transition: 0.5s;
    background: #47b2e4;
    color: #fff;
    border: none;
    text-decoration: none;
    display: inline-block;
}
.shop-hero .btn-hero:hover {
    background: #209dd8;
    color: #fff;
    text-decoration: none;
}

/* ---- Abschnitts-Titel (identisch zu .section-title) -------- */
.shop-section-title {
    text-align: center;
    padding-bottom: 30px;
}
.shop-section-title h2 {
    font-size: 32px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 20px;
    color: #37517e;
    font-family: "Jost", sans-serif;
    position: relative;
}
.shop-section-title h2::before {
    content: '';
    position: absolute;
    display: block;
    width: 120px;
    height: 1px;
    background: #ddd;
    bottom: 1px;
    left: calc(50% - 60px);
}
.shop-section-title h2::after {
    content: '';
    position: absolute;
    display: block;
    width: 40px;
    height: 3px;
    background: #47b2e4;
    bottom: 0;
    left: calc(50% - 20px);
}
.shop-section-title p {
    margin-bottom: 0;
    color: #444;
}

/* ---- Filter-Leiste ----------------------------------------- */
.shop-filters {
    background: #f3f5fa;
    padding: 20px 0;
    border-bottom: 1px solid #e4e8f0;
}
.filter-btn {
    font-family: "Jost", sans-serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.5px;
    padding: 7px 22px 8px;
    border-radius: 50px;
    border: 2px solid #d0d8e8;
    background: #fff;
    color: #37517e;
    cursor: pointer;
    transition: 0.3s;
    margin: 4px;
}
.filter-btn.active,
.filter-btn:hover {
    background: #47b2e4;
    border-color: #47b2e4;
    color: #fff;
}

/* ---- Produkt-Karte (wie .services .icon-box) --------------- */
.product-grid {
    padding: 50px 0 30px;
}
.product-card {
    background: #fff;
    box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.10);
    transition: all ease-in-out 0.4s;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0px 0 30px 0 rgba(55, 81, 126, 0.18);
}
.product-card-icon {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}
.product-card-body {
    padding: 28px 28px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.product-card-body h4 {
    font-family: "Jost", sans-serif;
    font-weight: 500;
    font-size: 20px;
    color: #37517e;
    margin-top: 10px;
    margin-bottom: 10px;
}
.product-card-body p {
    font-size: 14px;
    line-height: 24px;
    color: #444;
    flex: 1;
    margin-bottom: 0;
}
.product-card-footer {
    padding: 18px 28px;
    background: #f3f5fa;
    border-top: 1px solid #e8edf5;
}

/* ---- Typ-Badges -------------------------------------------- */
.product-type-badge {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 3px 12px;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 0;
    display: inline-flex;
    align-items: center;
    font-family: "Jost", sans-serif;
    vertical-align: middle;
}
.badge-software      { background: #e8f4fd; color: #1a7abc; }
.badge-subscription  { background: #eaf6ee; color: #1d7a40; }
.product-approval-badge {
    font-size: 11px;
    background: #fff8e1;
    color: #856404;
    border: 1px solid #ffc107;
    padding: 2px 10px;
    border-radius: 50px;
    margin-left: 6px;
    font-family: "Jost", sans-serif;
}

/* ---- Preisanzeige ------------------------------------------ */
.product-price {
    font-family: "Jost", sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #37517e;
    line-height: 1.1;
}
.product-price small {
    font-size: 13px;
    color: #888;
    font-weight: 400;
}
.product-price-note {
    font-size: 12px;
    color: #888;
    margin-top: 3px;
}

/* ---- Buttons (Arsha-Stil: border-radius 50px) -------------- */
.btn-shop-primary {
    font-family: "Jost", sans-serif;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.5px;
    padding: 8px 24px 9px;
    border-radius: 50px;
    background: #47b2e4;
    color: #fff;
    border: 2px solid #47b2e4;
    transition: 0.3s;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}
.btn-shop-primary:hover {
    background: #209dd8;
    border-color: #209dd8;
    color: #fff;
    text-decoration: none;
}
.btn-shop-outline {
    font-family: "Jost", sans-serif;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.5px;
    padding: 8px 24px 9px;
    border-radius: 50px;
    background: transparent;
    color: #47b2e4;
    border: 2px solid #47b2e4;
    transition: 0.3s;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}
.btn-shop-outline:hover {
    background: #47b2e4;
    color: #fff;
    text-decoration: none;
}
.btn-shop-dark {
    font-family: "Jost", sans-serif;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.5px;
    padding: 8px 24px 9px;
    border-radius: 50px;
    background: #37517e;
    color: #fff;
    border: 2px solid #37517e;
    transition: 0.3s;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}
.btn-shop-dark:hover {
    background: #283a5a;
    border-color: #283a5a;
    color: #fff;
    text-decoration: none;
}
.btn-shop-danger {
    background: #dc3545;
    border-color: #dc3545;
    color: #fff;
}
.btn-shop-danger:hover {
    background: #c82333;
    border-color: #c82333;
    color: #fff;
}
.w-100 { width: 100% !important; }
.text-center { text-align: center !important; }

/* ---- Produktdetail-Seite ----------------------------------- */
.product-detail {
    padding: 80px 0 60px;
}
.product-detail-icon-wrap {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
    margin-bottom: 20px;
}
.product-detail h1 {
    font-family: "Jost", sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #37517e;
    margin-bottom: 8px;
}

/* Feature-Liste wie Arsha-Checkmarks */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}
.feature-list li {
    padding: 9px 0;
    border-bottom: 1px solid #f0f2f6;
    font-size: 15px;
    color: #444;
    display: flex;
    align-items: center;
    gap: 12px;
}
.feature-list li:last-child { border-bottom: none; }
.feature-list li i {
    color: #47b2e4;
    font-size: 20px;
    flex-shrink: 0;
}

/* Preis-Box rechts */
.pricing-box {
    background: #fff;
    box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.10);
    padding: 32px;
    position: sticky;
    top: 90px;
}
.pricing-box .box-header {
    border-bottom: 2px solid #f0f2f6;
    padding-bottom: 16px;
    margin-bottom: 20px;
    font-family: "Jost", sans-serif;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
    font-weight: 600;
}

/* Periode Toggle */
.period-toggle {
    display: flex;
    background: #f3f5fa;
    border-radius: 50px;
    padding: 4px;
    margin-bottom: 20px;
}
.period-btn {
    flex: 1;
    border: none;
    background: transparent;
    padding: 8px 12px;
    border-radius: 50px;
    font-family: "Jost", sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    color: #666;
    transition: 0.2s;
}
.period-btn.active {
    background: #37517e;
    color: #fff;
}

/* Testzeitraum-Badge */
.trial-badge {
    background: #d4edda;
    color: #155724;
    border-radius: 50px;
    padding: 7px 16px;
    font-size: 13px;
    font-weight: 600;
    font-family: "Jost", sans-serif;
    text-align: center;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.save-badge {
    background: #47b2e4;
    color: #fff;
    border-radius: 50px;
    font-size: 11px;
    padding: 2px 9px;
    font-weight: 700;
    font-family: "Jost", sans-serif;
}

/* Mengen-Steuerung */
.qty-control {
    display: flex;
    align-items: center;
    border: 2px solid #e8edf5;
    border-radius: 50px;
    overflow: hidden;
    background: #fff;
}
.qty-control button {
    width: 38px;
    height: 40px;
    border: none;
    background: transparent;
    font-size: 18px;
    cursor: pointer;
    color: #37517e;
    font-weight: 700;
    line-height: 1;
    transition: 0.2s;
}
.qty-control button:hover { background: #f3f5fa; }
.qty-control input {
    flex: 1;
    text-align: center;
    border: none;
    height: 40px;
    font-size: 15px;
    font-weight: 600;
    color: #37517e;
    outline: none;
    background: transparent;
}

/* Mengenrabatt-Tabelle */
.volume-table { font-size: 13px; }
.volume-table th {
    background: #f3f5fa;
    color: #37517e;
    font-family: "Jost", sans-serif;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.volume-table td { padding: 8px 12px; color: #444; }

/* Vertrauen-Punkte im Preis-Box */
.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #666;
    margin-bottom: 6px;
}
.trust-item i { color: #47b2e4; font-size: 16px; flex-shrink: 0; }

/* ---- Warenkorb --------------------------------------------- */
.cart-wrap {
    padding: 80px 0 60px;
}
.cart-table th {
    font-family: "Jost", sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: #37517e;
    color: #fff;
    border: none;
    padding: 14px 18px;
}
.cart-table td {
    vertical-align: middle;
    padding: 16px 18px;
    border-color: #edf0f7;
    color: #444;
    font-size: 14px;
}
.cart-table tbody tr:hover { background: #fafbfd; }
.cart-product-name {
    font-family: "Jost", sans-serif;
    font-weight: 600;
    color: #37517e;
    font-size: 15px;
    text-decoration: none;
}
.cart-product-name:hover { color: #47b2e4; text-decoration: none; }
.period-label {
    font-size: 12px;
    color: #888;
    font-family: "Jost", sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}
.cart-qty-input {
    width: 60px;
    text-align: center;
    border: 2px solid #e8edf5;
    border-radius: 50px;
    padding: 5px 8px;
    font-weight: 600;
    color: #37517e;
    font-size: 14px;
}
.cart-summary-box {
    background: #fff;
    box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.08);
    padding: 28px;
    position: sticky;
    top: 90px;
}
.cart-summary-box h5 {
    font-family: "Jost", sans-serif;
    font-weight: 700;
    color: #37517e;
    font-size: 18px;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 2px solid #f0f2f6;
}
.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 0;
    border-bottom: 1px solid #f0f2f6;
    font-size: 14px;
    color: #444;
}
.summary-row span:last-child {
    white-space: nowrap;
    flex-shrink: 0;
    padding-left: 8px;
}
.summary-row:last-of-type { border-bottom: none; }
.summary-total {
    font-family: "Jost", sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #37517e;
    padding: 12px 0 0;
    border-bottom: none !important;
}
.vat-note {
    font-size: 11px;
    color: #999;
    margin-top: 4px;
}
.secure-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #888;
    margin-top: 14px;
}
.secure-badge i { color: #28a745; font-size: 16px; }

/* ---- Checkout ---------------------------------------------- */
.checkout-wrap {
    padding: 80px 0 60px;
}
.checkout-card {
    background: #fff;
    box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.08);
    padding: 36px;
}
.checkout-card h5 {
    font-family: "Jost", sans-serif;
    font-weight: 700;
    color: #37517e;
    font-size: 18px;
    margin-bottom: 22px;
    padding-bottom: 14px;
    border-bottom: 2px solid #f0f2f6;
}
.b2b-notice {
    background: #eaf6fd;
    border-left: 4px solid #47b2e4;
    border-radius: 0 4px 4px 0;
    padding: 14px 18px;
    margin-bottom: 24px;
    font-size: 14px;
    color: #1a5f87;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.b2b-notice i { color: #47b2e4; font-size: 18px; flex-shrink: 0; margin-top: 2px; }
.form-control:focus {
    border-color: #47b2e4;
    box-shadow: 0 0 0 0.2rem rgba(71, 178, 228, 0.15);
}
.legal-notice {
    background: #fff8e1;
    border-left: 4px solid #ffc107;
    border-radius: 0 4px 4px 0;
    padding: 12px 16px;
    font-size: 13px;
    color: #856404;
    margin-top: 16px;
}
.payment-methods {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 10px;
}
.payment-methods span {
    font-size: 12px;
    color: #999;
    background: #f3f5fa;
    border-radius: 4px;
    padding: 3px 10px;
    font-family: "Jost", sans-serif;
}

/* ---- Erfolg-Seite ------------------------------------------ */
.success-wrap {
    padding: 100px 0 60px;
    text-align: center;
}
.success-icon {
    font-size: 80px;
    color: #47b2e4;
    margin-bottom: 24px;
}
.success-wrap h2 {
    font-family: "Jost", sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #37517e;
    margin-bottom: 10px;
}
.order-card {
    background: #fff;
    box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.08);
    padding: 36px;
    max-width: 620px;
    margin: 30px auto 0;
    text-align: left;
}
.order-number-badge {
    font-family: "Jost", sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    background: #37517e;
    padding: 10px 22px;
    border-radius: 50px;
    display: inline-block;
    letter-spacing: 1px;
}
.download-card {
    background: linear-gradient(rgba(40, 58, 90, 0.95), rgba(40, 58, 90, 0.95));
    color: #fff;
    padding: 24px;
    margin-top: 20px;
}
.download-card h6 {
    font-family: "Jost", sans-serif;
    color: #47b2e4;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}
.approval-card {
    background: #fff8e1;
    border-left: 4px solid #ffc107;
    border-radius: 0 4px 4px 0;
    padding: 20px 24px;
    margin-top: 20px;
    text-align: left;
}
.approval-card h6 {
    font-family: "Jost", sans-serif;
    color: #856404;
    font-weight: 700;
}

/* ---- Download ---------------------------------------------- */
.download-wrap {
    padding: 120px 0 80px;
    text-align: center;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.download-wrap .dl-icon { font-size: 80px; color: #47b2e4; }
.download-wrap h3 {
    font-family: "Jost", sans-serif;
    color: #37517e;
    font-weight: 700;
    margin-top: 16px;
}
.download-wrap .dl-icon-warn  { color: #ffc107; }
.download-wrap .dl-icon-error { color: #dc3545; }

/* ---- Abo verwalten ----------------------------------------- */
.manage-wrap {
    padding: 80px 0 60px;
}
.manage-lookup-card {
    background: #fff;
    box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.08);
    padding: 36px;
    max-width: 500px;
    margin: 0 auto;
}
.subscription-row {
    background: #fff;
    box-shadow: 0px 0 20px 0 rgba(0, 0, 0, 0.07);
    padding: 22px 28px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    transition: all 0.3s;
}
.subscription-row:hover { transform: translateY(-3px); }
.subscription-name {
    font-family: "Jost", sans-serif;
    font-weight: 600;
    color: #37517e;
    font-size: 16px;
}
.status-pill {
    font-family: "Jost", sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 3px 12px;
    border-radius: 50px;
}
.pill-active      { background: #d4edda; color: #155724; }
.pill-trial       { background: #d1ecf1; color: #0c5460; }
.pill-cancelled   { background: #f8d7da; color: #721c24; }
.pill-expired     { background: #f8d7da; color: #721c24; }
.pill-received    { background: #cce5ff; color: #004085; }
.pill-processing  { background: #fff3cd; color: #856404; }
.pill-provisioning{ background: #d1ecf1; color: #0c5460; }
.pill-delivered   { background: #d4edda; color: #155724; }

/* ---- Admin-Panel ------------------------------------------- */
.admin-body { background: #f3f5fa; min-height: 100vh; }
.admin-sidebar {
    background: #37517e;
    min-height: 100vh;
    padding: 0;
}
.admin-brand {
    padding: 20px 22px 22px;
    font-family: "Jost", sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    letter-spacing: 0.5px;
}
.admin-brand small {
    display: block;
    font-size: 11px;
    font-weight: 400;
    color: rgba(255,255,255,0.5);
    margin-top: 3px;
}
.admin-sidebar a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 22px;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-size: 14px;
    font-family: "Jost", sans-serif;
    font-weight: 500;
    transition: 0.2s;
    border-left: 3px solid transparent;
}
.admin-sidebar a:hover,
.admin-sidebar a.active {
    background: rgba(255,255,255,0.10);
    color: #fff;
    border-left-color: #47b2e4;
    text-decoration: none;
}
.admin-sidebar i { font-size: 18px; flex-shrink: 0; }
.admin-sidebar hr { border-color: rgba(255,255,255,0.15); margin: 8px 22px; }
.admin-content { padding: 32px 36px; }
.admin-content h4 {
    font-family: "Jost", sans-serif;
    font-weight: 700;
    color: #37517e;
    font-size: 24px;
    margin-bottom: 28px;
}
.stat-card {
    background: #fff;
    box-shadow: 0px 0 20px 0 rgba(0,0,0,0.08);
    padding: 24px 28px;
    text-align: center;
    transition: transform 0.3s;
}
.stat-card:hover { transform: translateY(-5px); }
.stat-value {
    font-family: "Jost", sans-serif;
    font-size: 34px;
    font-weight: 700;
    color: #37517e;
    line-height: 1;
    margin-bottom: 6px;
}
.stat-label {
    font-size: 13px;
    color: #888;
    font-family: "Jost", sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.admin-table { width: 100%; }
.admin-table thead th {
    background: #f3f5fa;
    color: #37517e;
    font-family: "Jost", sans-serif;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #e8edf5;
    padding: 12px 16px;
}
.admin-table tbody td {
    font-size: 14px;
    color: #444;
    vertical-align: middle;
    padding: 12px 16px;
    border-color: #edf0f7;
}
.admin-table tbody tr:hover { background: #fafbfd; }
.status-select {
    font-size: 13px;
    border: 2px solid #e8edf5;
    border-radius: 50px;
    padding: 4px 12px;
    color: #37517e;
    font-family: "Jost", sans-serif;
    font-weight: 500;
    cursor: pointer;
    outline: none;
}
.status-select:focus { border-color: #47b2e4; }
.admin-card {
    background: #fff;
    box-shadow: 0px 0 20px 0 rgba(0,0,0,0.07);
    margin-bottom: 24px;
}
.admin-card-header {
    padding: 16px 22px;
    border-bottom: 2px solid #f0f2f6;
    font-family: "Jost", sans-serif;
    font-weight: 700;
    color: #37517e;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
}
.admin-card-body { padding: 22px; }
.admin-login-wrap {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3f5fa;
}
.admin-login-card {
    width: 380px;
    background: #fff;
    box-shadow: 0px 0 25px 0 rgba(0,0,0,0.12);
}
.admin-login-header {
    background: #37517e;
    padding: 28px 32px;
    text-align: center;
}
.admin-login-header h4 {
    font-family: "Jost", sans-serif;
    color: #fff;
    font-weight: 700;
    font-size: 22px;
    margin: 0;
}
.admin-login-header small {
    color: rgba(255,255,255,0.6);
    font-size: 13px;
}
.admin-login-body { padding: 32px; }

/* ---- AGB-Seite --------------------------------------------- */
.legal-wrap {
    padding: 80px 0 60px;
}
.legal-content h2 {
    font-family: "Jost", sans-serif;
    color: #37517e;
    font-size: 20px;
    font-weight: 700;
    margin-top: 32px;
    padding-top: 16px;
    border-top: 1px solid #edf0f7;
}
.legal-content h2:first-child { border-top: none; margin-top: 0; }
.legal-content p {
    font-size: 14px;
    line-height: 1.8;
    color: #555;
}

/* ---- Sprach-Switcher --------------------------------------- */
.shop-lang-switcher > a { font-size: 14px !important; }
.shop-lang-switcher > a::after {
    content: "\ea99";
    font-family: IcoFont;
    padding-left: 4px;
    font-size: 12px;
}

/* ---- Warenkorb-Badge im Header ----------------------------- */
.cart-nav-btn {
    font-family: "Jost", sans-serif;
    font-weight: 600;
    font-size: 14px;
    padding: 6px 20px 7px 20px;
    border-radius: 50px;
    border: 2px solid #47b2e4;
    color: #fff;
    background: transparent;
    margin-left: 25px;
    transition: 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    position: relative;
}
.cart-nav-btn:hover {
    background: #31a9e1;
    border-color: #31a9e1;
    color: #fff;
    text-decoration: none;
}
.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #e74c3c;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Jost", sans-serif;
}

/* ---- Info-Streifen (wie Services-Bereich) ------------------ */
.shop-features-strip {
    background: #f3f5fa;
    padding: 50px 0;
}
.shop-feature-item {
    text-align: center;
    padding: 20px;
}
.shop-feature-item .feat-icon {
    font-size: 36px;
    color: #47b2e4;
    margin-bottom: 12px;
}
.shop-feature-item h6 {
    font-family: "Jost", sans-serif;
    font-weight: 600;
    color: #37517e;
    font-size: 15px;
    margin-bottom: 4px;
}
.shop-feature-item small { color: #888; font-size: 13px; }

/* ---- CTA-Bereich ------------------------------------------ */
.shop-cta {
    background: linear-gradient(rgba(40, 58, 90, 0.9), rgba(40, 58, 90, 0.9));
    padding: 60px 0;
    text-align: center;
}
.shop-cta h3 {
    font-family: "Jost", sans-serif;
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}
.shop-cta p { color: rgba(255,255,255,0.7); margin-bottom: 24px; }
.shop-cta .btn-cta {
    font-family: "Jost", sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    padding: 12px 40px;
    border-radius: 50px;
    border: 2px solid #fff;
    color: #fff;
    background: transparent;
    transition: 0.5s;
    text-decoration: none;
    display: inline-block;
}
.shop-cta .btn-cta:hover {
    background: #47b2e4;
    border-color: #47b2e4;
    color: #fff;
    text-decoration: none;
}

/* ---- Toast ------------------------------------------------- */
.shop-toast {
    position: fixed;
    top: 82px;
    right: 20px;
    z-index: 9999;
    min-width: 280px;
    border-radius: 50px;
    padding: 12px 22px;
    font-family: "Jost", sans-serif;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    display: none;
}
.toast-success { background: #28a745; color: #fff; }
.toast-danger  { background: #dc3545; color: #fff; }

/* ---- Staffelpreis-Karten (Tier Cards) ---------------------- */
.tier-card {
    background: #fff;
    border: 2px solid #e8edf5;
    padding: 28px 20px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    height: 100%;
}
.tier-card:hover, .tier-card.active-tier {
    border-color: #47b2e4;
    box-shadow: 0 0 0 3px rgba(71,178,228,0.15);
    transform: translateY(-4px);
}
.tier-card-highlight.active-tier {
    border-color: #37517e;
    box-shadow: 0 0 0 3px rgba(55,81,126,0.12);
}
.tier-range {
    font-family: "Jost", sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #888;
    margin-bottom: 12px;
}
.tier-price {
    font-family: "Jost", sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: #37517e;
    line-height: 1;
    margin-bottom: 8px;
}
.tier-label {
    font-size: 13px;
    color: #888;
    line-height: 1.6;
}
.tier-save {
    position: absolute;
    top: 0;
    right: 0;
    background: #47b2e4;
    color: #fff;
    font-family: "Jost", sans-serif;
    font-size: 11px;
    font-weight: 700;
    padding: 5px 12px;
    border-bottom-left-radius: 8px;
}
.tier-card.active-tier .tier-price { color: #47b2e4; }
.tier-card.active-tier .tier-range { color: #37517e; }

/* ---- Responsive -------------------------------------------- */
@media (max-width: 991px) {
    .shop-hero h1 { font-size: 30px; line-height: 40px; }
    .shop-hero p  { font-size: 16px; }
    .pricing-box  { position: static; margin-top: 30px; }
    .cart-summary-box { position: static; }
    .admin-sidebar { min-height: auto; }
    .checkout-card, .manage-lookup-card { padding: 24px; }
}
@media (max-width: 576px) {
    .shop-hero h1 { font-size: 26px; }
    .shop-section-title h2 { font-size: 24px; }
    .product-card-body { padding: 20px; }
    .product-card-footer { padding: 14px 20px; }
    .cart-table { font-size: 13px; }
}

/* ---- B2B-Notice Partial ------------------------------------ */
.shop-b2b-notice {
    background: #f0f4ff;
    border: 1px solid #c7d6fa;
    border-left: 4px solid #37517e;
    border-radius: 0 6px 6px 0;
    padding: 9px 16px;
    font-size: 12px;
    color: #37517e;
    font-family: 'Jost', sans-serif;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.5;
}
.shop-b2b-notice__label {
    background: #37517e;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 50px;
    letter-spacing: 0.5px;
    flex-shrink: 0;
    text-transform: uppercase;
}
