/**
 * CockpitOS Light Theme - Single Post Widget Styles
 *
 * Verantwortlichkeit: Single Post Detail Styling
 *
 * @package CockpitOS_MEC_Light_Theme
 * @version 1.0.0
 */

/* ========================================
   Container
   ======================================== */

.cockpit-single-post {
    width: 100%;
    background-color: var(--color-white);
    padding: var(--spacing-10) var(--spacing-5); /* 80px 20px */
}

.cockpit-single-post__container {
    max-width: 900px;
    margin: 0 auto;
}

/* ========================================
   Featured Image
   ======================================== */

.cockpit-single-post__featured-image {
    width: 100%;
    height: 500px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: var(--radius-lg); /* 12px */
    margin-bottom: var(--spacing-7); /* 40px */
}

/* Hero Image */
.cockpit-single-post__hero-image {
    position: relative;
    width: 100%;
    height: 55vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-12, 4rem); /* Abstand nach unten zur Box darunter */
}

/* Shop-Hero: reduzierte Höhe */
.cockpit-single-post__hero-image--shop {
    height: 36vh;
    min-height: 240px;
}

.cockpit-single-post__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.65));
}

/* Hero Shop: Logo außerhalb, schwarze Box horizontal mit Titel+Kategorie | Status | Icons */
.cockpit-single-post__hero-shop-wrap {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-5);
    max-width: 95%;
}

/* Logo außerhalb der schwarzen Box – weißes Quadrat, etwas größer */
.cockpit-single-post__hero-shop-logo-square {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    background: #fff;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-2);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.cockpit-single-post__hero-shop-box-logo img {
    max-width: 64px;
    max-height: 64px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

/* Shop-Name + Kategorie-Badge nebeneinander unter dem Logo */
.cockpit-single-post__hero-shop-name-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-3);
    row-gap: var(--spacing-1);
}

.cockpit-single-post__hero-shop-name {
    margin: 0;
    text-align: center;
    font-size: clamp(1.5rem, 5vw, 2.25rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

/* Schwarze Box: horizontal = Kategorie | Status | Icons */
.cockpit-single-post__hero-shop-box {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-4);
    padding: var(--spacing-4) var(--spacing-6);
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    text-align: center;
}

.cockpit-single-post__hero-shop-box-logo {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* In der schwarzen Box: Footer nur noch falls woanders verwendet */
.cockpit-single-post__hero-shop-box-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-3);
    flex-wrap: wrap;
}

.cockpit-single-post__hero-shop-box-category {
    display: inline-block;
    padding: var(--spacing-1) var(--spacing-3);
    border-radius: var(--radius-full);
    font-size: var(--font-size-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    background-color: var(--color-primary, #343d4c);
    color: #fff;
}

/* Status Geöffnet/Geschlossen – in der schwarzen Box neben Titel/Icons */
.cockpit-single-post__hero-shop-status {
    display: inline-flex;
    align-items: center;
    padding: var(--spacing-1) var(--spacing-3);
    border-radius: var(--radius-full);
    font-size: var(--font-size-xs);
    font-weight: 600;
    color: #fff;
}
.cockpit-single-post__hero-shop-status--open {
    background-color: rgba(34, 197, 94, 0.9);
}
.cockpit-single-post__hero-shop-status--closed {
    background-color: rgba(159, 168, 178, 0.9);
}

/* Kontakt/Meta-Icons mit sichtbarem Namen – in der schwarzen Box neben Status */
.cockpit-single-post__hero-shop-icons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-3);
}
.cockpit-single-post__hero-shop-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-1);
    padding: var(--spacing-2) var(--spacing-3);
    color: #fff;
    border-radius: var(--radius-md);
    transition: color 0.2s ease, background-color 0.2s ease;
    text-decoration: none;
}
.cockpit-single-post__hero-shop-icon:hover {
    color: var(--color-primary, #343d4c);
    background-color: rgba(255, 255, 255, 0.15);
}
.cockpit-single-post__hero-shop-icon svg {
    flex-shrink: 0;
}
.cockpit-single-post__hero-shop-icon-label {
    font-size: var(--font-size-sm, 0.875rem);
    font-weight: 500;
    white-space: nowrap;
}
.cockpit-single-post__hero-shop-icon--place {
    cursor: default;
    pointer-events: none;
}

/* ========================================
   Badge
   ======================================== */

.cockpit-single-post__badge {
    display: inline-block;
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: var(--spacing-1) var(--spacing-3); /* 8px 16px */
    border-radius: var(--radius-sm); /* 6px */
    font-size: var(--font-size-sm); /* 14px */
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--spacing-5); /* 20px */
}

/* ========================================
   Title
   ======================================== */

/* Single Post Title nutzt globale h1 Styles */
.cockpit-single-post__title {
    /* Nutzt globale h1 Styles (font-family, font-size, font-weight, text-transform, letter-spacing) */
    color: var(--color-text-dark);
    margin-bottom: var(--spacing-4); /* 24px */
    line-height: var(--line-height-tight);
}

/* ========================================
   Meta
   ======================================== */

.cockpit-single-post__meta {
    display: flex;
    align-items: center;
    gap: var(--spacing-4); /* 24px */
    margin-bottom: var(--spacing-7); /* 40px */
    padding-bottom: var(--spacing-4); /* 24px */
    border-bottom: 1px solid var(--color-border-light);
}

.cockpit-single-post__meta-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-1); /* 8px */
    font-size: var(--font-size-sm); /* 14px */
    color: var(--color-text-muted);
}

.cockpit-single-post__meta-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    color: var(--color-primary);
}

.cockpit-single-post__meta-icon i {
    font-size: 16px;
}

/* ========================================
   Content
   ======================================== */

.cockpit-single-post__content {
    font-size: var(--font-size-lg); /* 18px */
    line-height: var(--line-height-relaxed);
    color: var(--color-text);
}

.cockpit-single-post__content h2,
.cockpit-single-post__content h3,
.cockpit-single-post__content h4 {
    color: var(--color-text-dark);
    font-weight: var(--font-weight-bold);
    margin-top: var(--spacing-6); /* 32px */
    margin-bottom: var(--spacing-3); /* 16px */
    line-height: var(--line-height-tight);
}

.cockpit-single-post__content h2 {
    font-size: var(--font-size-2xl); /* 32px */
}

.cockpit-single-post__content h3 {
    font-size: var(--font-size-xl); /* 24px */
}

.cockpit-single-post__content h4 {
    font-size: var(--font-size-lg); /* 20px */
}

.cockpit-single-post__content p {
    margin-bottom: var(--spacing-5); /* 20px */
}

.cockpit-single-post__content ul,
.cockpit-single-post__content ol {
    margin-bottom: var(--spacing-5); /* 20px */
    padding-left: var(--spacing-4); /* 24px */
}

.cockpit-single-post__content li {
    margin-bottom: var(--spacing-1); /* 8px */
}

.cockpit-single-post__content a {
    color: var(--color-primary);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.cockpit-single-post__content a:hover {
    color: var(--color-primary-dark);
}

.cockpit-single-post__content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-md); /* 8px */
    margin: var(--spacing-4) 0; /* 24px 0 */
}

/* ========================================
   Event Info
   ======================================== */

.cockpit-single-post__event-info {
    background-color: var(--color-background-light);
    padding: var(--spacing-4); /* 24px */
    border-radius: var(--radius-lg); /* 12px */
    margin-bottom: var(--spacing-7); /* 40px */
    border-left: 4px solid var(--color-primary);
}

.cockpit-single-post__event-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-3); /* 16px */
    margin-bottom: var(--spacing-3); /* 16px */
}

.cockpit-single-post__event-item:last-child {
    margin-bottom: 0;
}

.cockpit-single-post__event-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: var(--color-primary);
}

.cockpit-single-post__event-icon i {
    font-size: var(--font-size-base); /* 20px */
}

.cockpit-single-post__event-item strong {
    font-weight: var(--font-weight-bold);
    color: var(--color-text-dark);
    margin-right: var(--spacing-1); /* 8px */
}

/* ========================================
   Offer Info (Angebot)
   ======================================== */

.cockpit-single-post__offer-info {
    background-color: var(--color-background-light);
    padding: var(--spacing-4); /* 24px */
    border-radius: var(--radius-lg); /* 12px */
    margin-bottom: var(--spacing-7); /* 40px */
    border-left: 4px solid var(--color-primary);
}

.cockpit-single-post__offer-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-3); /* 16px */
    margin-bottom: var(--spacing-3); /* 16px */
}

.cockpit-single-post__offer-item:last-child {
    margin-bottom: 0;
}

.cockpit-single-post__offer-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: var(--color-primary);
}

.cockpit-single-post__offer-icon i {
    font-size: var(--font-size-base); /* 20px */
}

.cockpit-single-post__offer-item strong {
    font-weight: var(--font-weight-bold);
    color: var(--color-text-dark);
    margin-right: var(--spacing-1); /* 8px */
}

/* Price Styling */
.cockpit-single-post__offer-price {
    align-items: center;
}

.cockpit-single-post__price {
    font-size: var(--font-size-2xl); /* 32px */
    font-weight: var(--font-weight-bold);
    color: var(--color-primary);
}

.cockpit-single-post__old-price {
    font-size: var(--font-size-lg); /* 20px */
    color: var(--color-text-muted);
    text-decoration: line-through;
    margin-right: var(--spacing-2); /* 12px */
}

/* ========================================
   Shop Info – Primary-Hintergrund, heller Inhalt, optimiertes Layout
   ======================================== */

.cockpit-single-post__shop-info {
    background: var(--color-primary, #343d4c);
    border-radius: var(--radius-xl);
    margin-bottom: var(--spacing-8);
    padding: var(--spacing-6) var(--spacing-6);
    position: relative;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.95);
}

.cockpit-single-post__shop-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(255, 255, 255, 0.25);
}

/* Shop Header: Logo + Floor Badge (nur ohne Hero) */
.cockpit-single-post__shop-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--spacing-5);
    padding-bottom: var(--spacing-5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.cockpit-single-post__shop-logo {
    flex: 1;
    text-align: center;
}

.cockpit-single-post__shop-logo img {
    max-width: 200px;
    height: auto;
    border-radius: var(--radius-md);
    background: #fff;
    padding: var(--spacing-2);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

.cockpit-single-post__shop-badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-2);
    align-items: center;
    justify-content: flex-end;
}

.cockpit-single-post__shop-floor-badge,
.cockpit-single-post__shop-number-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-1);
    padding: var(--spacing-2) var(--spacing-3);
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: 600;
}

.cockpit-single-post__shop-floor-badge svg {
    width: 14px;
    height: 14px;
    opacity: 0.9;
}

.cockpit-single-post__shop-number-badge {
    background: rgba(255, 255, 255, 0.15);
}

/* Shop Details Grid – mobile first, klare Hierarchie */
.cockpit-single-post__shop-details {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-5);
}

/* Shop Section – helle Karten auf Primary */
.cockpit-single-post__shop-section {
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: var(--spacing-5);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: background 0.2s ease, border-color 0.2s ease;
}

.cockpit-single-post__shop-section:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.18);
}

.cockpit-single-post__shop-section-title {
    display: flex;
    align-items: center;
    gap: var(--spacing-2);
    font-size: var(--font-size-base);
    font-weight: 700;
    color: #fff;
    margin: 0 0 var(--spacing-4) 0;
    padding-bottom: var(--spacing-3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    letter-spacing: 0.02em;
}

.cockpit-single-post__shop-section-title svg {
    width: 20px;
    height: 20px;
    color: rgba(255, 255, 255, 0.9);
    flex-shrink: 0;
}

/* Öffnungszeiten (details/summary) */
.cockpit-single-post__shop-hours-details {
    border: none;
    padding: 0;
    margin: 0;
}

.cockpit-single-post__shop-hours-details .cockpit-single-post__shop-section-title {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.cockpit-single-post__shop-hours-summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: var(--spacing-2);
    font-size: var(--font-size-base);
    font-weight: 700;
    color: #fff;
    padding: var(--spacing-2) 0;
    user-select: none;
}

.cockpit-single-post__shop-hours-summary::-webkit-details-marker,
.cockpit-single-post__shop-hours-summary::marker {
    display: none;
}

.cockpit-single-post__shop-hours-toggle {
    margin-left: auto;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2' stroke-opacity='0.9'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") center/contain no-repeat;
    transition: transform 0.25s ease;
}

.cockpit-single-post__shop-hours-details[open] .cockpit-single-post__shop-hours-toggle {
    transform: rotate(180deg);
}

.cockpit-single-post__shop-hours-details .cockpit-single-post__shop-hours {
    padding-top: var(--spacing-4);
    margin-top: var(--spacing-2);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.cockpit-single-post__shop-hours {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.cockpit-single-post__shop-hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-2) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cockpit-single-post__shop-hours-row:last-child {
    border-bottom: none;
}

.cockpit-single-post__shop-hours-day {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    font-size: var(--font-size-sm);
}

.cockpit-single-post__shop-hours-time {
    color: rgba(255, 255, 255, 0.8);
    font-size: var(--font-size-sm);
}

/* Kontakt – helle Links */
.cockpit-single-post__shop-contact {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-2);
}

.cockpit-single-post__shop-contact-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-3);
    padding: var(--spacing-3);
    background: rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    text-decoration: none;
    color: rgba(255, 255, 255, 0.95);
    transition: background 0.2s ease, color 0.2s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.cockpit-single-post__shop-contact-item:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.2);
}

.cockpit-single-post__shop-contact-item svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.cockpit-single-post__shop-contact-item span {
    font-size: var(--font-size-base);
    font-weight: 500;
}

/* Standort */
.cockpit-single-post__shop-location-items {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-2);
}

.cockpit-single-post__shop-section--location .cockpit-single-post__shop-item {
    padding: var(--spacing-2) 0;
    background: none;
    color: rgba(255, 255, 255, 0.9);
}

.cockpit-single-post__shop-section--location .cockpit-single-post__shop-item strong {
    margin-right: var(--spacing-1);
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
}

/* Beschreibung */
.cockpit-single-post__shop-description {
    font-size: var(--font-size-base);
    line-height: var(--line-height-relaxed);
    color: rgba(255, 255, 255, 0.9);
}

.cockpit-single-post__shop-description p {
    margin: 0 0 var(--spacing-3);
}

.cockpit-single-post__shop-description p:last-child {
    margin-bottom: 0;
}

.cockpit-single-post__shop-description a {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: underline;
}

.cockpit-single-post__shop-description a:hover {
    color: #fff;
}

/* Shop Item (Location / generisch) */
.cockpit-single-post__shop-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-3);
    padding: var(--spacing-3);
    background: rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    color: rgba(255, 255, 255, 0.9);
}

.cockpit-single-post__shop-item svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: rgba(255, 255, 255, 0.85);
}

.cockpit-single-post__shop-item strong {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    margin-right: var(--spacing-1);
}

/* Category Badge */
.cockpit-single-post__badge--category {
    border: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    font-size: var(--font-size-sm); /* 14px */
    padding: var(--spacing-2) var(--spacing-4); /* 12px 24px */
}

/* ========================================
   Responsive (mobile first: base = mobile, min-width = aufsteigend)
   ======================================== */

/* Tablet+: Shop-Details als 2-Spalten-Grid */
@media (min-width: 600px) {
    .cockpit-single-post__shop-details {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 900px) {
    .cockpit-single-post__shop-details {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 1024px) {
    .cockpit-single-post__title {
        font-size: var(--font-size-3xl); /* 40px */
    }

    .cockpit-single-post__content h2 {
        font-size: var(--font-size-xl); /* 28px */
    }
}

@media (max-width: 768px) {
    .cockpit-single-post {
        padding: var(--spacing-9) var(--spacing-5); /* 60px 20px */
    }

    .cockpit-single-post__title {
        font-size: var(--font-size-2xl); /* 32px */
    }

    .cockpit-single-post__featured-image {
        height: 300px;
    }

    .cockpit-single-post__hero-image {
        height: 50vh;
    }

    .cockpit-single-post__hero-image--shop {
        height: 32vh;
        min-height: 200px;
    }

    .cockpit-single-post__hero-shop-wrap {
        gap: var(--spacing-4);
    }
    .cockpit-single-post__hero-shop-box {
        padding: var(--spacing-3) var(--spacing-4);
        gap: var(--spacing-3);
    }
    .cockpit-single-post__hero-shop-logo-square {
        width: 88px;
        height: 88px;
    }
    .cockpit-single-post__hero-shop-box-logo img {
        max-width: 56px;
        max-height: 56px;
    }

    .cockpit-single-post__hero-shop-name-row {
        gap: var(--spacing-2);
    }
    .cockpit-single-post__hero-shop-name {
        font-size: clamp(1.25rem, 4vw, 1.75rem);
    }

    .cockpit-single-post__hero-shop-box-footer {
        gap: var(--spacing-2);
    }

    .cockpit-single-post__hero-shop-icons {
        gap: var(--spacing-2);
    }
    .cockpit-single-post__hero-shop-icon {
        padding: var(--spacing-1) var(--spacing-2);
    }
    .cockpit-single-post__hero-shop-icon-label {
        font-size: var(--font-size-xs, 0.75rem);
    }

    .cockpit-single-post__meta {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-2); /* 12px */
    }

    .cockpit-single-post__content {
        font-size: var(--font-size-base); /* 16px */
    }

    .cockpit-single-post__content h2 {
        font-size: var(--font-size-xl); /* 24px */
    }

    .cockpit-single-post__content h3 {
        font-size: var(--font-size-lg); /* 20px */
    }

    /* Shop Info auf Tablet */
    .cockpit-single-post__shop-details {
        grid-template-columns: 1fr;
    }
    
    .cockpit-single-post__shop-header {
        flex-direction: column;
        gap: var(--spacing-4); /* 24px */
    }
    
    .cockpit-single-post__shop-logo img {
        max-width: 180px;
    }
}

@media (max-width: 480px) {
    .cockpit-single-post {
        padding: var(--spacing-7) var(--spacing-3); /* 40px 16px */
    }

    .cockpit-single-post__title {
        font-size: var(--font-size-xl); /* 28px */
    }

    .cockpit-single-post__featured-image {
        height: 250px;
    }

    .cockpit-single-post__hero-image {
        height: 45vh;
    }

    .cockpit-single-post__hero-image--shop {
        height: 28vh;
        min-height: 180px;
    }

    .cockpit-single-post__hero-shop-wrap {
        gap: var(--spacing-3);
    }
    .cockpit-single-post__hero-shop-box {
        padding: var(--spacing-3) var(--spacing-4);
        gap: var(--spacing-2);
    }
    .cockpit-single-post__hero-shop-logo-square {
        width: 80px;
        height: 80px;
    }
    .cockpit-single-post__hero-shop-box-logo img {
        max-width: 48px;
        max-height: 48px;
    }

    .cockpit-single-post__hero-shop-name-row {
        gap: var(--spacing-2);
    }
    .cockpit-single-post__hero-shop-name {
        font-size: clamp(1.125rem, 4vw, 1.5rem);
    }

    .cockpit-single-post__hero-shop-box-category {
        font-size: 0.6875rem;
        padding: var(--spacing-1) var(--spacing-2);
    }

    .cockpit-single-post__hero-shop-box-footer {
        gap: var(--spacing-2);
    }
    .cockpit-single-post__hero-shop-icons {
        gap: var(--spacing-2);
    }
    .cockpit-single-post__hero-shop-icon {
        padding: var(--spacing-1) var(--spacing-2);
    }
    .cockpit-single-post__hero-shop-icon-label {
        font-size: 0.6875rem;
    }
    .cockpit-single-post__hero-shop-status {
        font-size: 0.6875rem;
        padding: var(--spacing-1) var(--spacing-2);
    }

    .cockpit-single-post__price {
        font-size: var(--font-size-xl); /* 24px */
    }

    .cockpit-single-post__old-price {
        font-size: var(--font-size-base); /* 16px */
    }

    /* Shop Info auf Mobile */
    .cockpit-single-post__shop-info {
        padding: var(--spacing-4); /* 24px */
    }
    
    .cockpit-single-post__shop-header {
        flex-direction: column;
        gap: var(--spacing-3); /* 16px */
        padding-bottom: var(--spacing-4); /* 24px */
    }
    
    .cockpit-single-post__shop-logo img {
        max-width: 150px;
    }
    
    .cockpit-single-post__shop-details {
        grid-template-columns: 1fr;
        gap: var(--spacing-4); /* 24px */
    }
    
    .cockpit-single-post__shop-section {
        padding: var(--spacing-4); /* 24px */
    }
    
    .cockpit-single-post__shop-section-title {
        font-size: var(--font-size-base); /* 16px */
    }
    
    .cockpit-single-post__shop-hours-row {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-1); /* 8px */
    }
    
    .cockpit-single-post__shop-contact-item {
        padding: var(--spacing-2); /* 12px */
        gap: var(--spacing-2); /* 12px */
    }
    
    .cockpit-single-post__shop-contact-item svg {
        width: 18px;
        height: 18px;
    }
    
    .cockpit-single-post__shop-contact-item span {
        font-size: var(--font-size-sm); /* 14px */
    }
    
    .cockpit-single-post__shop-item {
        gap: var(--spacing-2); /* 12px */
        padding: var(--spacing-2); /* 12px */
    }
    
    .cockpit-single-post__shop-item svg {
        width: 18px;
        height: 18px;
    }
}

