.store-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem 1rem 3rem;
    font-size: 1.5rem;
    line-height: 1.7;
}

.store-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.store-kicker {
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-weight: 700;
    color: #6b7280;
    margin: 0 0 0.5rem;
}

.store-title {
    font-family: var(--template-headings-font, "Nunito"), system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 3rem;
    font-weight: 800;
    margin: 0 0 0.5rem;
    color: #111827;
}

.store-subtitle {
    margin: 0;
    margin-left: auto;
    margin-right: auto;
    color: #4b5563;
}

.store-layout {
    display: grid;
    gap: 2rem;
    align-items: flex-start;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .store-layout {
        grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    }
}

.store-info {
    background-color: #ffffff;
    border-radius: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.04);
    padding: 1.75rem 1.9rem;
}

.store-info-block + .store-info-block {
    margin-top: 1.4rem;
}

.store-info h2 {
    font-size: 1.6rem;
    font-weight: 800;
    margin: 0 0 0.4rem;
    color: #111827;
}

.store-info address {
    font-style: normal;
    margin: 0;
    color: #111827;
}

.store-info a {
    color: var(--color-primary, #8e44ad);
    text-decoration: none;
}

.store-info a:hover,
.store-info a:focus-visible {
    text-decoration: underline;
}

.store-note {
    display: block;
    margin-top: 0.25rem;
    font-size: 1.3rem;
    color: #6b7280;
}

.store-photo {
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.18);
}

.store-photo img {
    display: block;
    width: 100%;
    height: auto;
}

.store-card {
    background-color: #ffffff;
    border-radius: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.04);
    padding: 1.75rem 1.9rem;
    margin-bottom: 2.5rem;
}

.store-card h2 {
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0 0 0.75rem;
    text-align: center;
}

.store-card--highlight {
    background: radial-gradient(circle at top, rgba(142, 68, 173, 0.08), #ffffff);
}

.store-card--highlight {
    background: radial-gradient(circle at top, rgba(142, 68, 173, 0.08), #ffffff);
}

.store-special-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.store-special-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 0.7rem 1.4rem 0.7rem 2.6rem;
    border-radius: 0.9rem;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
    font-size: 1.5rem;
}

.store-special-item::before {
    content: "›";
    position: absolute;
    left: 3rem;
    top: 1.5rem;
    color: #8e44ad;
    font-weight: 800;
    font-size: 2rem;
}

.store-special-date {
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #111827;
}

.store-special-status {
    color: #111827;
    white-space: nowrap;
}

.store-special-item--closed .store-special-status {
    color: #b91c1c;
    font-weight: 600;
}

@media (max-width: 480px) {
    .store-special-item {
        flex-direction: row;
        align-items: flex-start;
    }

    .store-special-status {
        white-space: normal;
    }
}

.store-hours {
    margin-bottom: 1.5rem;
}

.store-hours h2 {
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0 0 1.25rem;
    text-align: center;
}

.store-hours-grid {
    display: grid;
    gap: 1.25rem;
}

@media (min-width: 640px) {
    .store-hours-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.store-hours-col {
    background-color: #ffffff;
    border-radius: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.04);
    padding: 1.75rem 1.9rem;
}

.store-hours-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    font-size: 1.5rem;
    padding: 0.2rem 0;
}

.store-day {
    font-weight: 800;
    color: #111827;
}

.store-time {
    color: #111827;
}

.store-hours-row--closed .store-time {
    color: #b91c1c;
    font-weight: 600;
}

.store-small-note {
    margin-top: 1rem;
    font-size: 1.3rem;
    color: #6b7280;
    text-align: center;
}

.store-card--alert {
    background: radial-gradient(circle at top, rgba(252, 211, 77, 0.12), #ffffff);
    text-align: center;
}

.store-alert-image {
    border-radius: 1rem;
    overflow: hidden;
    margin-bottom: 1rem;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.store-alert-image img {
    width: 100%;
    height: auto;
    display: block;
}

.store-alert-note {
    font-size: 1.4rem;
    color: #6b7280;
    margin: 0;
}
