/* Store Intro - Base Layout */
.modular-store-intro .store-container {
    padding: 2rem;
}

.modular-store-intro .store-info {
    margin-bottom: 2rem;
}

.modular-store-intro .store-info ul li {
    font-size: 1em;
}

/* Öffnungszeiten - Hervorgehoben */
.modular-store-intro .store-hours {
    padding: .5rem;
    border-radius: 8px;
}

.modular-store-intro .store-hours ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.modular-store-intro .store-hours li {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(128, 128, 128, 0.2);
}

.modular-store-intro .store-hours li:last-child {
    border-bottom: none;
}

.modular-store-intro .store-hours .day {
    font-weight: 600;
}

.modular-store-intro .store-hours .time {
    text-align: right;
}

.modular-store-intro .store-hours .store-note {
    font-size: 0.9em;
    opacity: 0.8;
    margin-top: 1rem;
    font-style: italic;
}

/* Optionale Öffnungszeiten Styles */
.modular-store-intro .store-hours.hours-boxed {
    border: 2px solid currentColor;
}

.modular-store-intro .store-hours.hours-shadow {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.modular-store-intro .store-hours.hours-gradient {
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(0,0,0,0.05) 100%);
}

.modular-store-intro .store-hours.hours-accent-border {
    border-left: 4px solid var(--accent1, #007bff);
}

/* Location Grid - 3 Spalten */
.modular-store-intro .store-location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.modular-store-intro .store-address h3,
.modular-store-intro .store-map h3 {
    margin-bottom: 1rem;
}

.modular-store-intro .store-address address {
    font-style: normal;
    line-height: 1.8;
    font-size: 1.1em;
}

.modular-store-intro .store-address .address-note {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.9em;
    opacity: 0.8;
}

/* Map Container */
.modular-store-intro .store-map {
    display: flex;
    flex-direction: column;
}

.modular-store-intro .map-container {
    border-radius: 8px;
    overflow: hidden;
    flex: 1;
    min-height: 220px;
}

.modular-store-intro .map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* Optionale Location Layout Varianten */
.modular-store-intro .store-location-grid.location-map-first {
    direction: rtl;
}

.modular-store-intro .store-location-grid.location-map-first > * {
    direction: ltr;
}

.modular-store-intro .store-location-grid.location-stacked {
    grid-template-columns: 1fr;
}

/* Linke Spalte: Social-Links ans Bottom schieben */
.modular-store-intro .store-location-grid > div:first-child {
    display: flex;
    flex-direction: column;
}

.modular-store-intro .store-location-grid > div:first-child .store-social {
    margin-top: auto;
}

/* Social Links */
.modular-store-intro .store-social {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(128, 128, 128, 0.2);
}

.modular-store-intro .social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
}

.modular-store-intro .social-links a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: opacity 0.2s;
}

.modular-store-intro .social-links a:hover {
    opacity: 0.7;
}

.modular-store-intro .social-links i {
    font-size: 1.25em;
}

/* Optionale Social Styles */
.modular-store-intro .store-social.social-centered {
    text-align: center;
}

.modular-store-intro .store-social.social-centered .social-links {
    justify-content: center;
}

.modular-store-intro .store-social.social-icons-only .social-links span {
    display: none;
}

.modular-store-intro .store-social.social-buttons .social-links a {
    padding: 0.5rem 1rem;
    border-radius: 4px;
    background: rgba(128, 128, 128, 0.1);
}

/* Social Large – große Markenlogos */
.modular-store-intro .store-social.social-large .social-links {
    gap: 2.5rem;
    margin-top: 1.25rem;
}

.modular-store-intro .store-social.social-large .social-links a {
    line-height: 1;
}

.modular-store-intro .store-social.social-large .social-links i {
    font-size: 4rem;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.modular-store-intro .store-social.social-large .social-links a:hover {
    opacity: 1;
}

.modular-store-intro .store-social.social-large .social-links a:hover i {
    transform: scale(1.12);
    opacity: 0.85;
}

.modular-store-intro .store-social.social-large .fa-instagram { color: #E1306C; }
.modular-store-intro .store-social.social-large .fa-facebook  { color: #1877F2; }
.modular-store-intro .store-social.social-large .fa-youtube   { color: #FF0000; }

/* Mobile Responsive */
@media (max-width: 768px) {
    .modular-store-intro .store-location-grid {
        grid-template-columns: 1fr;
    }

    .modular-store-intro .store-location-grid.location-map-first {
        direction: ltr;
    }

    .modular-store-intro .map-container {
        aspect-ratio: 16/9;
    }

    .modular-store-intro .store-hours li {
        flex-direction: column;
        gap: 0.25rem;
    }

    .modular-store-intro .store-hours .time {
        text-align: left;
    }
}
