.shop-page {
    background:
        radial-gradient(circle at top, rgba(201, 168, 76, 0.1), rgba(201, 168, 76, 0) 28%),
        linear-gradient(180deg, #fbf8f2 0%, #fffdfa 42%, #f5eee5 100%);
}

.shop-section {
    padding-bottom: 88px;
}

.shop-container {
    max-width: 1100px;
}

.shop-heading {
    margin: 0 auto 34px;
    max-width: 720px;
    text-align: center;
}

.shop-title {
    color: var(--color-secondary);
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3vw, 2.7rem);
    font-weight: 600;
    letter-spacing: 0.08em;
}

.shop-subtitle {
    color: #665a54;
    margin-top: 14px;
}

.shop-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.shop-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(31, 27, 26, 0.08);
    border-radius: 24px;
    box-shadow: 0 22px 48px rgba(31, 27, 26, 0.08);
    padding: 24px;
}

.shop-card-header h2 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    margin-bottom: 6px;
}

.shop-card-header p,
.shop-card-address {
    color: #5f544d;
}

.shop-card-address {
    margin-top: 14px;
}

.shop-card-map {
    border-radius: 18px;
    margin-top: 18px;
    overflow: hidden;
}

.shop-card-map iframe {
    border: 0;
    display: block;
    height: 260px;
    width: 100%;
}

@media (max-width: 980px) {
    .shop-grid {
        grid-template-columns: 1fr;
    }
}
