/* Refinements requested after the live-site review. Loaded after site.css. */
[hidden] {
    display: none !important;
}

.store-distance {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    margin-top: .55rem;
    padding: .28rem .52rem;
    border-radius: 999px;
    background: var(--green-tint);
    color: var(--green);
    font-size: .67rem;
    font-weight: 800;
}

.store-distance::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 2px rgba(242,183,0,.18);
}

.hero h1 {
    font-size: clamp(3.35rem, 5vw, 5.25rem);
    line-height: .96;
}

.section h2,
.concept h2 {
    font-size: clamp(2.85rem, 4.5vw, 4.45rem);
}

.hero-intro,
.section-heading > p {
    font-size: .95rem;
}

.map-shell {
    min-height: 560px;
    overflow: hidden;
    background:
        radial-gradient(circle at 52% 42%, rgba(242, 183, 0, .12), transparent 19rem),
        var(--green-deep);
}

#store-map.france-map {
    position: relative;
    min-height: 560px;
    height: 100%;
    overflow: hidden;
    isolation: isolate;
    background:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
    background-size: 34px 34px;
}

.france-map__heading {
    position: absolute;
    z-index: 4;
    top: 2rem;
    left: 2rem;
    display: flex;
    flex-direction: column;
    color: #fff;
}

.france-map__heading span {
    margin-bottom: .35rem;
    color: var(--gold);
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.france-map__heading strong {
    font: 800 2rem/1 var(--display);
    text-transform: uppercase;
}

.france-shape {
    position: absolute;
    z-index: 1;
    top: 8%;
    left: 18%;
    width: 64%;
    height: 78%;
    clip-path: polygon(31% 2%, 67% 9%, 91% 31%, 82% 57%, 65% 72%, 51% 96%, 24% 90%, 8% 66%, 15% 49%, 3% 30%, 20% 20%);
    background: linear-gradient(145deg, #f9f2df, #ded2b6);
    box-shadow: inset 0 0 0 2px rgba(255,255,255,.5);
}

.france-shape::before,
.france-shape::after {
    content: "";
    position: absolute;
    border: 1px solid rgba(11,74,49,.12);
    border-radius: 50%;
}

.france-shape::before {
    inset: 20% 12% 24% 18%;
}

.france-shape::after {
    width: 42%;
    height: 42%;
    top: 13%;
    left: 38%;
}

.france-shape__ring {
    position: absolute;
    width: 170px;
    height: 170px;
    top: 11%;
    left: 42%;
    border: 1px dashed rgba(11,74,49,.24);
    border-radius: 50%;
    transform: translate(-50%,-50%);
}

.map-location {
    position: absolute;
    z-index: 6;
    top: var(--map-y);
    left: var(--map-x);
    display: flex;
    align-items: center;
    gap: .55rem;
    padding: 0;
    color: #fff;
    border: 0;
    background: transparent;
    font-family: var(--body);
    cursor: pointer;
    transform: translate(calc(-50% + var(--pin-shift)), -100%);
}

.map-location__pin {
    position: relative;
    display: grid;
    place-items: center;
    width: 39px;
    height: 39px;
    flex: none;
    border: 3px solid #fff;
    border-radius: 50%;
    background: var(--gold);
    color: var(--green-deep);
    box-shadow: 0 7px 18px rgba(0,0,0,.28);
    font: 900 1rem var(--display);
    transform: none;
    transition: transform .18s, background .18s;
}

.map-location__label {
    padding: .42rem .62rem;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 9px;
    background: rgba(6,56,36,.91);
    box-shadow: 0 6px 16px rgba(0,0,0,.2);
    font-size: .7rem;
    font-weight: 800;
    text-transform: uppercase;
    white-space: nowrap;
}

.map-location:hover .map-location__pin,
.map-location.is-active .map-location__pin {
    background: #fff;
    transform: scale(1.12);
}

.france-map__summary {
    position: absolute;
    z-index: 4;
    right: 1.7rem;
    bottom: 1.6rem;
    display: flex;
    align-items: center;
    gap: .7rem;
    color: #fff;
}

.france-map__summary strong {
    color: var(--gold);
    font: 800 3rem/1 var(--display);
}

.france-map__summary span {
    font-size: .68rem;
    font-weight: 800;
    line-height: 1.25;
    text-transform: uppercase;
}

.map-key {
    color: var(--green-deep);
}

.offer-meta {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: .75rem;
    margin-top: .75rem;
}

.offer-availability {
    display: flex;
    align-items: flex-start;
    gap: .45rem;
    padding: .65rem .7rem;
    border-radius: 10px;
    background: var(--green-tint);
    color: var(--green-deep);
    font-size: .72rem;
    line-height: 1.35;
}

.offer-availability > span {
    width: 8px;
    height: 8px;
    flex: none;
    margin-top: .17rem;
    border-radius: 50%;
    background: var(--green);
}

.offer-availability strong {
    font-weight: 900;
}

.offer-badge {
    padding: .3rem .55rem;
    border-radius: 999px;
    background: var(--gold);
    color: var(--green-deep);
    font-size: .62rem;
    font-weight: 800;
    text-transform: uppercase;
}

.offer-price {
    display: flex;
    align-items: baseline;
    gap: .6rem;
    margin: .25rem 0 .9rem;
}

.offer-price strong {
    color: var(--green);
    font: 800 1.45rem var(--display);
}

.offer-price del {
    color: #948a78;
    font-size: .78rem;
}

.header-inner {
    position: relative;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: .65rem;
}

.nav-store-button {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--ink);
    font: 700 .9rem var(--body);
    cursor: pointer;
}

.nav-store-button span {
    color: var(--green);
    font-size: 1rem;
}

.mobile-store-button {
    display: none;
    width: 40px;
    height: 40px;
    place-items: center;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: #fff;
    color: var(--green-deep);
}

.mobile-store-button svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
}

.store-menu {
    position: absolute;
    z-index: 1100;
    top: calc(100% + 12px);
    right: 0;
    width: min(560px, calc(100vw - 40px));
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: var(--paper);
    box-shadow: 0 24px 60px rgba(18,45,31,.22);
}

.store-menu[hidden] {
    display: none;
}

.store-menu__head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.1rem 1.2rem;
    color: #fff;
    background: var(--green-deep);
}

.store-menu__head strong {
    font: 800 1.35rem var(--display);
    text-transform: uppercase;
}

.store-menu__head span {
    color: rgba(255,255,255,.68);
    font-size: .7rem;
}

.store-menu__list {
    display: grid;
}

.store-menu__item {
    display: grid;
    grid-template-columns: 12px minmax(0,1fr) auto 22px;
    align-items: center;
    gap: .8rem;
    padding: 1rem 1.2rem;
    text-decoration: none;
    border-bottom: 1px solid var(--line);
    transition: background .16s;
}

.store-menu__item:last-child {
    border-bottom: 0;
}

.store-menu__item:hover {
    background: #fff9e8;
}

.store-live-dot {
    width: 10px;
    height: 10px;
    border: 2px solid #b8ae9c;
    border-radius: 50%;
    background: #ddd5c6;
}

.store-menu__item.is-open .store-live-dot {
    border-color: #bce6c8;
    background: #22a653;
    box-shadow: 0 0 0 4px rgba(34,166,83,.12);
}

.store-menu__item.is-closed .store-live-dot {
    border-color: #e4d6bf;
    background: #9b8d77;
}

.store-menu__item.is-unknown .store-live-dot {
    border-color: #f2d46c;
    background: var(--gold);
    box-shadow: 0 0 0 4px rgba(247,183,0,.12);
}

.store-menu__identity {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.store-menu__identity strong {
    color: var(--green-deep);
    font: 800 1.15rem var(--display);
    text-transform: uppercase;
}

.store-menu__identity small {
    overflow: hidden;
    color: var(--muted);
    font-size: .7rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.store-menu__status {
    color: var(--muted);
    font-size: .67rem;
    font-weight: 700;
    white-space: nowrap;
}

.store-menu__item.is-open .store-menu__status {
    color: #167c3d;
}

.store-menu__item.is-unknown .store-menu__status,
.status-dot.is-unknown {
    color: #8a6400;
}

.status-dot.is-checking,
.status-dot.is-closed {
    color: #857966;
}

.status-dot.is-checking::before,
.status-dot.is-closed::before {
    background: #a99d89;
}

.status-dot.is-unknown::before {
    background: var(--gold);
}

.store-menu__arrow {
    color: var(--green);
    font-weight: 900;
}

.offer-grid.has-single {
    grid-template-columns: minmax(0, 790px);
}

.offer-grid.has-single .offer-card {
    display: grid;
    grid-template-columns: 42% 58%;
    min-height: 340px;
    border: 0;
    border-radius: 24px;
    background: var(--green-deep);
    box-shadow: 0 18px 45px rgba(11,74,49,.16);
}

.offer-grid.has-single .offer-image {
    height: 100%;
    min-height: 340px;
    background-color: #fff;
    background-size: contain;
    background-repeat: no-repeat;
}

.offer-grid.has-single .offer-body {
    padding: 1.7rem;
    color: #fff;
}

.offer-grid.has-single .offer-availability {
    background: rgba(255,255,255,.1);
    color: #fff;
}

.offer-grid.has-single .offer-availability > span {
    background: var(--gold);
}

.offer-grid.has-single .offer-card h3,
.offer-grid.has-single .offer-price strong,
.offer-grid.has-single .offer-card a {
    color: #fff;
}

.offer-grid.has-single .offer-card p,
.offer-grid.has-single .offer-price del {
    color: rgba(255,255,255,.68);
}

@media (max-width: 920px) {
    .mobile-store-button {
        display: grid;
    }

    .map-shell,
    #store-map.france-map {
        min-height: 430px;
    }
}

@media (max-width: 600px) {
    body {
        font-size: 15px;
    }

    .page-wrap {
        width: min(100% - 28px, 1180px);
    }

    .site-header {
        height: 68px;
    }

    .header-inner {
        gap: .75rem;
    }

    .header-actions {
        gap: .45rem;
    }

    .mobile-store-button {
        display: grid;
    }

    .store-menu {
        top: calc(100% + 8px);
        right: 0;
        width: calc(100vw - 28px);
        border-radius: 16px;
    }

    .store-menu__head {
        padding: .85rem 1rem;
    }

    .store-menu__head strong {
        font-size: 1.15rem;
    }

    .store-menu__head span {
        font-size: .62rem;
    }

    .store-menu__item {
        grid-template-columns: 10px minmax(0,1fr) 18px;
        gap: .65rem;
        padding: .85rem 1rem;
    }

    .store-menu__status {
        grid-column: 2;
        font-size: .62rem;
    }

    .store-menu__arrow {
        grid-column: 3;
        grid-row: 1 / span 2;
    }

    .brand-name {
        font-size: 1.35rem;
    }

    .brand small {
        font-size: .46rem;
        letter-spacing: .32em;
    }

    .header-order {
        min-height: 39px;
        padding: .55rem .9rem;
        font-size: .72rem;
    }

    .hero-grid {
        min-height: 0;
    }

    .hero-copy {
        padding: 2.35rem 0 2.5rem;
    }

    .open-pill {
        margin-bottom: 1.15rem;
        padding: .43rem .7rem;
        font-size: .68rem;
    }

    .hero .eyebrow {
        margin-bottom: .65rem;
        font-size: .66rem;
        letter-spacing: .14em;
    }

    .hero h1 {
        max-width: 330px;
        font-size: clamp(2.65rem, 13.5vw, 3.05rem);
        line-height: .92;
    }

    .hero h1 br {
        display: none;
    }

    .hero-intro {
        margin: 1rem 0 1.3rem;
        font-size: .88rem;
        line-height: 1.55;
    }

    .finder label {
        margin-bottom: .4rem;
        font-size: .68rem;
    }

    .finder-row {
        flex-wrap: nowrap;
        border-radius: 12px;
    }

    .finder-row input {
        width: 100%;
        min-height: 49px;
        padding: .8rem .65rem;
        font-size: .88rem;
    }

    .finder-row button {
        width: 50px;
        height: 49px;
        flex: 0 0 50px;
        padding: 0;
        border-top: 0;
        border-left: 1px solid rgba(11,74,49,.12);
        font-size: 0;
    }

    .finder-row button::after {
        content: "→";
        font-size: 1.15rem;
        font-weight: 900;
    }

    .locate-button {
        margin-top: .75rem;
        font-size: .76rem;
    }

    .location-status {
        margin-top: .45rem;
        font-size: .72rem;
    }

    .hero-media {
        display: none;
    }

    .section {
        padding: 3.3rem 0;
    }

    .section-heading {
        gap: .7rem;
        margin-bottom: 1.5rem;
    }

    .section-heading .eyebrow {
        margin-bottom: .55rem;
        font-size: .66rem;
    }

    .section-heading > p {
        max-width: 34ch;
        font-size: .83rem;
        line-height: 1.55;
    }

    .section h2,
    .concept h2 {
        font-size: 2.7rem;
        line-height: .95;
    }

    .locator-layout {
        border-radius: 16px;
        box-shadow: 0 12px 30px rgba(49,39,18,.08);
    }

    .store-results-bar {
        height: 50px;
        padding: 0 1rem;
        font-size: .68rem;
    }

    .store-card {
        grid-template-columns: 26px 1fr;
        gap: .6rem;
        padding: 1.15rem .85rem;
    }

    .store-index {
        font-size: .86rem;
    }

    .store-title-row h3 {
        font-size: 1.72rem;
    }

    .store-title-row p {
        font-size: .77rem;
    }

    .service-list {
        gap: .3rem;
        margin-top: .75rem;
    }

    .service-list span {
        padding: .3rem .42rem;
        font-size: .57rem;
    }

    .store-actions {
        flex-wrap: wrap;
        gap: .75rem;
        margin-top: .9rem;
    }

    .store-actions .button {
        min-height: 39px;
        padding: .55rem .85rem;
        font-size: .67rem;
    }

    .map-shell,
    #store-map.france-map {
        min-height: 315px;
    }

    .france-map__heading {
        top: 1.2rem;
        left: 1.2rem;
    }

    .france-map__heading strong {
        font-size: 1.3rem;
    }

    .france-map__summary {
        right: 1rem;
        bottom: 1rem;
    }

    .map-location__label {
        display: none;
    }

    .map-location__pin {
        width: 34px;
        height: 34px;
        font-size: .88rem;
    }

    .offers .section-heading {
        margin-bottom: 1.35rem;
    }

    .offer-grid {
        gap: 1rem;
    }

    .offer-grid.has-single {
        grid-template-columns: 1fr;
    }

    .offer-grid.has-single .offer-card {
        display: block;
        min-height: 0;
        border-radius: 18px;
    }

    .offer-grid.has-single .offer-image {
        height: 185px;
        min-height: 0;
    }

    .offer-grid.has-single .offer-body {
        padding: 1rem;
    }

    .offer-card {
        min-height: 0;
        border-radius: 16px;
    }

    .offer-image {
        height: 195px;
        background-size: contain;
        background-repeat: no-repeat;
        background-color: #fff;
    }

    .offer-body {
        padding: 1rem;
    }

    .offer-availability {
        padding: .58rem .62rem;
        font-size: .68rem;
    }

    .offer-meta {
        margin-top: .65rem;
    }

    .offer-badge {
        font-size: .58rem;
    }

    .offer-card h3 {
        margin: .45rem 0;
        font-size: 1.55rem;
    }

    .offer-card p {
        margin-bottom: .7rem;
        font-size: .78rem;
    }

    .offer-price {
        margin-bottom: .7rem;
    }

    .offers-status {
        margin-top: 1.3rem;
        font-size: .76rem;
        line-height: 1.5;
    }

    .concept {
        padding: 3.4rem 0;
    }

    .concept-copy p {
        margin-bottom: 1.25rem;
        font-size: .86rem;
        line-height: 1.6;
    }

    .concept-points {
        margin-top: .5rem;
    }

    .concept-points div {
        padding-top: .9rem;
    }

    .concept-points strong {
        font-size: 1.2rem;
    }

    .concept-points span {
        font-size: .68rem;
    }

    footer {
        padding: 1.7rem 0;
    }
}
