/* Location page. */
.location-address {
    font-size: 1.15rem;
    color: var(--ink-soft);
    margin: 0 0 1.25rem;
}
.map-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(15,181,164,.3);
    box-shadow: 0 12px 30px rgba(18,60,56,.12);
}
.map-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

.directions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}
.btn-directions {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-family: 'Montserrat', system-ui, sans-serif;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #fff !important;
    background: linear-gradient(180deg, var(--primary), var(--primary-dark));
    border: 1px solid var(--primary);
    padding: .8rem 1.6rem;
    border-radius: 999px;
    text-decoration: none;
    box-shadow: 0 6px 16px rgba(15,181,164,.35);
    transition: transform .15s ease, box-shadow .2s ease;
}
.btn-directions:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 22px rgba(15,181,164,.45);
}
.btn-apple {
    background: linear-gradient(180deg, #2c3b38, #18302c);
    border-color: #2c3b38;
}

/* Hours table */
.hours-title { margin-top: 2.5rem; color: var(--primary-dark); }
.hours {
    width: 100%;
    max-width: 420px;
    border-collapse: collapse;
    font-size: 1.05rem;
}
.hours th,
.hours td {
    padding: .7rem .25rem;
    border-bottom: 1px solid rgba(15,181,164,.18);
    text-align: left;
}
.hours th { font-weight: 600; color: var(--ink); }
.hours td { text-align: right; color: var(--ink-soft); }
.hours td.is-closed { color: #9aa8a4; font-style: italic; }
.hours tr.is-today th,
.hours tr.is-today td { color: var(--primary-dark); font-weight: 700; }
.hours tr.is-today th::before {
    content: "●";
    color: var(--primary);
    font-size: .7em;
    margin-right: .5rem;
    vertical-align: middle;
}
