/* ============================
   PREMIUM STORE CSS
============================ */
@import url('design.css'); /* Erbt grundlegende Schriftarten und Farben */

body.store-body {
    background: #fdfdfd;
    font-family: Arial, sans-serif;
    color: #111;
    margin: 0;
    padding: 0;
}

/* NAVIGATION */
.store-nav {
    background: #fff;
    border-bottom: 1px solid #eee;
    padding: 15px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.store-nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.lang-switch {
    display: flex;
    gap: 10px;
    font-size: 0.9rem;
    color: #999;
}

.lang-switch a {
    text-decoration: none;
    color: #999;
    font-weight: bold;
    transition: color 0.3s;
}

.lang-switch a:hover {
    color: #666;
}

.lang-switch a.active {
    color: var(--mk-pink, #ff0080);
}

/* SEARCH BAR */
.store-search {
    flex-grow: 1;
    max-width: 400px;
    margin: 0 20px;
}

.store-search input {
    width: 100%;
    padding: 10px 20px;
    border: 1px solid #ddd;
    border-radius: 30px;
    font-size: 0.95rem;
    outline: none;
    transition: all 0.3s;
    background: #f9f9f9;
}

.store-search input:focus {
    border-color: var(--mk-pink, #ff0080);
    background: #fff;
    box-shadow: 0 0 10px rgba(255, 0, 128, 0.1);
}

/* MOBILE NAV ADAPTATIONS */
@media (max-width: 768px) {
    .store-nav-inner {
        flex-wrap: wrap;
        gap: 15px;
    }
    .store-logo {
        height: 35px;
    }
    .store-search {
        order: 3;
        max-width: 100%;
        margin: 0;
        width: 100%;
    }
    .nav-right {
        gap: 15px;
    }
    .store-hero {
        padding: 40px 15px 30px;
    }
    .store-hero h1 {
        font-size: 2rem;
    }
    .store-main {
        padding: 0 15px;
    }
}

.store-logo {
    height: 40px;
    display: block;
}

.back-link {
    text-decoration: none;
    color: #666;
    font-weight: bold;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.back-link:hover {
    color: var(--mk-pink, #ff0080);
}

/* HERO */
.store-hero {
    background: url('Shop/Header.jpg');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    color: #111;
    padding: 80px 20px 40px;
    text-align: center;
    border-bottom: none;
}

.store-hero .hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.store-hero h1 {
    font-family: 'Bariol_Bold', Arial, sans-serif;
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 900;
    /* Soft white glow to separate text from background paint drips */
    text-shadow: 
        0 0 10px rgba(255, 255, 255, 0.95), 
        0 0 20px rgba(255, 255, 255, 0.9), 
        0 0 30px rgba(255, 255, 255, 0.85);
}

.store-hero p {
    font-size: 1.15rem;
    color: #111; /* Darker color for higher contrast */
    line-height: 1.5;
    max-width: 600px;
    margin: 0 auto;
    /* Soft white glow for the description text */
    text-shadow: 
        0 0 8px rgba(255, 255, 255, 0.95), 
        0 0 16px rgba(255, 255, 255, 0.9);
}

/* FILTER */
.store-filter {
    display: flex;
    justify-content: center;
    gap: 25px;
    padding: 40px 20px;
    background: #fff;
    border-bottom: 1px solid #eee;
    flex-wrap: wrap;
}

.s-filter-btn {
    background: transparent;
    border: none;
    border-bottom: 1px solid transparent;
    padding: 8px 4px;
    border-radius: 0;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
    cursor: pointer;
    transition: all 0.3s ease;
}

.s-filter-btn:hover {
    background: transparent;
    color: #111;
}

.s-filter-btn.active {
    background: transparent;
    color: #111;
    border-bottom: 1px solid #111;
    box-shadow: none;
}

/* MAIN GRID */
.store-main {
    max-width: 1600px;
    margin: 30px auto 60px;
    padding: 0 40px;
    min-height: 50vh;
}

.store-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 40px;
}

.store-grid.skate-view {
    grid-template-columns: repeat(3, 1fr);
    gap: 80px 40px;
}

@media (max-width: 1200px) {
    .store-grid.skate-view {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .store-grid.skate-view {
        grid-template-columns: 1fr;
    }
}

/* ============================
   SKATEBOARD BORDERLESS CARD
============================ */
.skate-card {
    display: flex;
    flex-direction: column;
    background: transparent;
    border: none;
    box-shadow: none;
}

.skate-img-wrap {
    width: 100%;
    margin-bottom: 25px;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.skate-img-wrap img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.skate-card:hover .skate-img-wrap {
    transform: scale(1.05);
}

.skate-info-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-bottom: 1px solid #eaeaea;
    padding-bottom: 15px;
}

.skate-info-left {
    display: flex;
    flex-direction: column;
}

.skate-category-label {
    font-size: 0.7rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.skate-title-label {
    font-size: 1.6rem;
    color: #111;
    font-weight: bold;
    margin: 0 0 10px 0;
    cursor: pointer;
}

.skate-price-label {
    font-size: 1.1rem;
    color: #666;
}

.skate-info-right {
    display: flex;
    align-items: center;
}

.skate-details-link {
    font-size: 0.85rem;
    color: #111;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: color 0.3s;
}

.skate-details-link:hover {
    color: #666;
}

/* ============================
   PRODUCT CARD
============================ */
.store-card {
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    border: 1px solid #eaeaea;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
}

.store-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.sc-img-wrap {
    width: 100%;
    aspect-ratio: 1.414 / 1; /* DIN Querformat */
    overflow: hidden;
    background: #f9f9f9;
    position: relative;
    border-bottom: 1px solid #eaeaea;
}

.sc-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.store-card:hover .sc-img-wrap img {
    transform: scale(1.03);
}

.sc-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.sc-category {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: #999;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.sc-title {
    font-size: 1.35rem;
    margin: 0 0 12px 0;
    color: #111;
    font-weight: bold;
    letter-spacing: 0.2px;
    line-height: 1.2;
}

.sc-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 0;
    border-top: none;
}

.sc-price {
    font-size: 1.15rem;
    font-weight: normal;
    color: #444;
}

.sc-buy-btn {
    background: transparent;
    color: #000;
    border: none;
    padding: 0;
    border-radius: 0;
    font-size: 0.85rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: opacity 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.sc-buy-btn::after {
    content: ' →';
    margin-left: 6px;
    transition: transform 0.3s ease;
}

.sc-buy-btn:hover {
    background: transparent;
    color: #555;
}

.store-card:hover .sc-buy-btn::after {
    transform: translateX(4px);
}

/* PRODUCT DETAIL MODAL */
.detail-modal {
    position: fixed;
    inset: 0;
    z-index: 99998;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.detail-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.detail-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.detail-modal-content {
    position: relative;
    background: #fff;
    width: 95%;
    max-width: 1100px;
    height: 70vh; /* Fixed format, now wider and less tall */
    overflow: hidden; /* No scrollbars */
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
    transform: translateY(20px) scale(0.95);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.detail-modal.active .detail-modal-content {
    transform: translateY(0) scale(1);
}

.detail-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #f0f0f0;
    color: #333;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    transition: transform 0.2s, background 0.2s;
}

.detail-modal-close:hover {
    transform: scale(1.1) rotate(90deg);
    background: #e0e0e0;
}

.dm-layout {
    display: flex;
    flex-wrap: wrap;
    height: 100%;
}

.dm-image-col {
    flex: 2 1 600px;
    background: #f9f9f9;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.dm-image-col img#dmMainImg {
    width: 100%;
    flex-grow: 1; /* Allow image to grow and fill available space */
    object-fit: contain; /* Damit Hochformate nicht beschnitten werden */
    display: block;
    min-height: 0; /* Important for flex children to shrink */
    background: #f9f9f9;
    padding: 20px;
}

.dm-gallery {
    display: flex;
    gap: 10px;
    padding: 15px;
    background: #f9f9f9;
    flex-shrink: 0; /* Keep gallery size fixed */
}

.dm-thumb {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    opacity: 0.6;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.dm-thumb:hover {
    opacity: 0.9;
}

.dm-thumb.active {
    opacity: 1;
    border-color: var(--mk-pink, #ff0080);
}
.dm-info-col {
    flex: 1 1 350px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow-y: auto; /* Only scroll the text, not the whole modal */
}

.dm-category {
    font-size: 0.9rem;
    color: var(--mk-turquoise, #38c6c7);
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.dm-title {
    font-size: 2.2rem;
    font-family: 'Bariol_Bold', Arial, sans-serif;
    color: #111;
    margin: 0 0 15px 0;
    line-height: 1.1;
}

.dm-price {
    font-size: 1.8rem;
    font-weight: bold;
    color: #111;
    margin: 0 0 5px 0;
}

.dm-tax {
    font-size: 0.85rem;
    color: #888;
    margin: 0 0 30px 0;
}

.dm-desc {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 25px;
}

.dm-features {
    list-style: none;
    padding: 18px 18px 18px 38px;
    margin: 0 0 30px 0;
    background: #f4fafb; /* Light clean turquoise background */
    border-left: 4px solid var(--mk-turquoise, #38c6c7);
    border-radius: 8px;
}

.dm-features li {
    position: relative;
    margin-bottom: 8px;
    font-size: 0.92rem;
    color: #444;
    line-height: 1.4;
}

.dm-features li:last-child {
    margin-bottom: 0;
}

.dm-features li::before {
    content: '✓';
    position: absolute;
    left: -22px;
    color: var(--mk-pink, #ff0080);
    font-weight: bold;
}

.dm-buy-btn {
    margin-top: auto;
    background: var(--mk-pink, #ff0080);
    color: #fff;
    border: none;
    padding: 18px;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.dm-buy-btn:hover {
    background: #111;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* SECURE MODAL */
.secure-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.secure-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.secure-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
}

.secure-modal-content {
    position: relative;
    background: #fff;
    width: 90%;
    max-width: 500px;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
    transform: translateY(20px) scale(0.95);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.secure-modal.active .secure-modal-content {
    transform: translateY(0) scale(1);
}

.secure-modal-close {
    position: absolute;
    top: -15px;
    right: -15px;
    background: #111;
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: transform 0.2s, background 0.2s;
}

.secure-modal-close:hover {
    transform: scale(1.1) rotate(90deg);
    background: var(--mk-pink, #ff0080);
}

/* Modal Security Header */
.secure-header {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #f8fff9;
    border: 1px solid #c2e0c6;
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 25px;
    color: #2d6a4f;
}

.lock-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e2f0e5;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.secure-text {
    display: flex;
    flex-direction: column;
}

.secure-text strong {
    font-size: 1.1rem;
}

.secure-text span {
    font-size: 0.85rem;
    opacity: 0.9;
}

/* Modal Product Info */
.modal-product-summary {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    align-items: center;
}

.modal-product-summary img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
    background: #f0f0f0;
}

.sm-info {
    flex-grow: 1;
}

.sm-info h3 {
    margin: 0 0 5px 0;
    font-size: 1.3rem;
    color: #111;
}

.sm-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #111;
    margin: 0;
}

.sm-tax-info {
    font-size: 0.8rem;
    color: #888;
    margin: 5px 0 0 0;
}

/* Shipping Notice */
.sm-shipping-notice {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 25px;
    border-left: 4px solid var(--mk-turquoise, #38c6c7);
}

.sm-shipping-notice strong {
    color: #111;
}

/* PayPal Container */
#paypal-button-container-secure {
    min-height: 150px;
    margin-bottom: 20px;
}

/* Trust Badges */
.sm-trust-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    border-top: 1px solid #eee;
    padding-top: 20px;
    color: #666;
    font-size: 0.9rem;
    font-weight: bold;
}

/* FOOTER */
.store-footer {
    background: #fff;
    color: #555;
    padding: 60px 20px 40px;
    text-align: center;
    border-top: 1px solid #eaeaea;
}

.store-footer-links {
    margin-top: 15px;
}

.store-footer-links .legal-link {
    background: transparent;
    border: none;
    color: #888;
    text-decoration: none;
    margin: 0 10px;
    font-size: 0.9rem;
    font-family: inherit;
    cursor: pointer;
    padding: 0;
    transition: color 0.3s;
}

.store-footer-links .legal-link:hover {
    color: #111;
    text-decoration: underline;
}

/* LEGAL MODAL (RECHTLICHES) */
.legal-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.legal-modal.active {
    opacity: 1;
    visibility: visible;
}

.legal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
}

.legal-panel {
    position: relative;
    background: #fff;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    overflow: hidden;
    z-index: 2;
}

.legal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #111;
    color: #fff;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background 0.3s;
    z-index: 3;
}

.legal-close:hover {
    background: #555;
}

.legal-content {
    padding: 40px;
    overflow-y: auto;
}

.legal-header {
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.legal-kicker {
    font-size: 0.8rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 5px 0;
}

.legal-header h2 {
    font-size: 2rem;
    color: #111;
    margin: 0;
}

.legal-body {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.6;
}

.legal-body h3 {
    font-size: 1.2rem;
    color: #111;
    margin: 25px 0 10px;
}

.legal-body p {
    margin-bottom: 15px;
}

.legal-box {
    background: #f9f9f9;
    border: 1px solid #eee;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.legal-body ul {
    margin: 15px 0 20px 20px;
    padding: 0;
}

.legal-body ul li {
    margin-bottom: 8px;
}

/* MOBILE FIX FOR DETAIL MODAL */
@media (max-width: 850px) {
    .detail-modal-content {
        height: 90vh; /* Allow it to be taller on mobile */
        overflow-y: auto; /* Re-enable scrolling on the whole modal for mobile */
    }

    .dm-layout {
        height: auto;
        flex-direction: column;
        flex-wrap: nowrap;
    }

    .dm-image-col {
        flex: none;
        height: auto;
        max-height: none;
        background: transparent;
        overflow: hidden; /* Crops the overflow from negative margin */
    }

    .dm-image-col img#dmMainImg {
        width: 100%;
        height: auto;
        max-height: 45vh;
        min-height: 0;
        padding: 0;
        background: transparent;
        object-fit: contain;
        margin-bottom: -20px; /* Pulls details up without cutting off the word "JENA" */
    }

    .dm-info-col {
        flex: none;
        height: auto;
        overflow-y: visible; /* Text expands naturally inside the scrolling modal */
        padding: 20px;
    }

    .dm-title {
        font-size: 1.6rem;
        margin: 0 0 10px 0;
    }

    .dm-price {
        font-size: 1.4rem;
        margin: 0 0 5px 0;
    }

    .dm-tax {
        margin: 0 0 15px 0;
    }

    .dm-desc {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 20px;
    }

    .dm-features {
        margin: 0 0 25px 0;
    }
}

/* GENERAL MOBILE FIXES */
@media (max-width: 768px) {
    /* Navigation */
    .store-nav-inner {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    .back-link {
        font-size: 0.85rem;
    }

    /* Filters */
    .store-filter {
        padding: 20px 10px;
        gap: 10px;
    }
    .s-filter-btn {
        padding: 6px 4px;
        font-size: 0.75rem;
        letter-spacing: 0.5px;
    }

    /* Grid & Cards */
    .store-main {
        padding: 0 15px;
        margin: 30px auto;
    }
    .store-grid {
        gap: 12px;
        grid-template-columns: repeat(2, 1fr);
    }
    .sc-info {
        padding: 10px 8px;
    }
    .sc-title {
        font-size: 1.05rem;
        font-weight: bold;
    }
    .sc-price {
        font-size: 0.85rem;
    }
    .sc-buy-btn {
        font-size: 0.7rem;
        padding: 6px 10px;
    }
    .sc-category {
        font-size: 0.65rem;
    }
    .sc-bottom {
        flex-direction: column;
        gap: 6px;
        align-items: flex-start;
    }
}

/* SALE BADGE & STREICHPREIS STYLES */
.sc-sale-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--mk-turquoise, #38c6c7);
    color: #fff;
    padding: 6px 12px;
    font-size: 0.75rem;
    font-weight: bold;
    letter-spacing: 1.5px;
    border-radius: 4px;
    z-index: 5;
    box-shadow: 0 4px 12px rgba(56, 198, 199, 0.25);
    text-transform: uppercase;
    pointer-events: none;
}

.sc-price-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.sc-original-price {
    text-decoration: line-through;
    color: #888;
    font-size: 0.95rem;
}

.sc-price.highlight {
    color: var(--mk-turquoise, #38c6c7);
    font-weight: bold;
}

/* Detail Modal Streichpreis */
.dm-original-price {
    text-decoration: line-through;
    color: #888;
    font-size: 1.25rem;
    font-weight: normal;
    margin-right: 10px;
}

.dm-price-current.highlight {
    color: var(--mk-turquoise, #38c6c7);
    font-size: 1.8rem;
    font-weight: bold;
}

/* Secure Checkout Modal Streichpreis */
.sm-original-price {
    text-decoration: line-through;
    color: #888;
    font-size: 0.95rem;
    font-weight: normal;
    margin-right: 8px;
}

.sm-price-current.highlight {
    color: var(--mk-turquoise, #38c6c7);
    font-weight: bold;
}

@media (max-width: 768px) {
    .sc-original-price {
        font-size: 0.75rem;
    }
    .sc-price.highlight {
        font-size: 0.85rem;
    }
    .sc-sale-badge {
        top: 10px;
        left: 10px;
        padding: 4px 8px;
        font-size: 0.65rem;
    }
}

/* Promo-Badge im Header */
.hero-badge-container {
    text-align: right;
    max-width: 800px;
    margin: 20px auto 0;
    padding: 0 20px;
}

.hero-promo-badge {
    display: inline-block;
    background: var(--mk-turquoise, #38c6c7);
    color: #fff;
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: bold;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(56, 198, 199, 0.25);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .hero-badge-container {
        text-align: center; /* Auf Mobilgeräten zentriert für bessere Balance */
        margin-top: 15px;
    }
    .hero-promo-badge {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
}

/* "Neu"-Tag im Header */
.hero-new-tag {
    display: inline-block;
    background: #fff;
    color: #111;
    border: 1px solid #eaeaea;
    padding: 5px 12px;
    font-size: 0.72rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 30px;
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

