:root {
    --navy: #14274a;
    --navy-2: #1d3560;
    --red: #d3222a;
    --red-dark: #b21b22;
    --bg: #f4f5f7;
    --card: #ffffff;
    --text: #1c2333;
    --text-2: #55607a;
    --muted: #8b94a8;
    --green: #12a150;
    --tp-green: #00b67a;
    --star-orange: #f5a623;
    --amber: #b7791f;
    --divider: #e6e9ef;
    --border: #e1e5ec;
    --teal: #0f766e;
    --shadow: 0 14px 34px rgba(20, 39, 74, 0.10);
    --r-sm: 8px;
    --r-md: 12px;
    --r-lg: 18px;
    --hero-image: url('../images/shop-main.jpg');
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background: #e9ebef;
    color: var(--text);
}

h1, h2, h3 {
    font-family: Georgia, "Times New Roman", Times, serif;
    margin: 0;
    color: var(--navy);
    line-height: 1.18;
}

p { margin: 0; color: var(--text-2); }

a, button { font: inherit; }

button { cursor: pointer; }

a { text-decoration: none; }

.muted { color: var(--muted); font-size: 12px; }

.app-shell {
    max-width: 500px;
    margin: 0 auto;
    background: #fff;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(20, 39, 74, 0.10);
    padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px));
}

/* ---------- Roundel (Underground-style) ---------- */
.roundel {
    position: relative;
    display: inline-grid;
    place-items: center;
    width: 46px;
    height: 46px;
    flex: none;
}

.roundel::before {
    content: "";
    position: absolute;
    inset: 0;
    border: 6px solid var(--red);
    border-radius: 50%;
    background: transparent;
}

.roundel .roundel-bar {
    position: relative;
    z-index: 1;
    display: block;
    width: 116%;
    background: var(--navy);
    color: #fff;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 7.5px;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-align: center;
    padding: 3px 0;
    border-radius: 1px;
}

.roundel.sm { width: 38px; height: 38px; }
.roundel.sm::before { border-width: 5px; }
.roundel.sm .roundel-bar { font-size: 6.5px; padding: 2.5px 0; }

.roundel.lg { width: 58px; height: 58px; }
.roundel.lg::before { border-width: 8px; }
.roundel.lg .roundel-bar { font-size: 9px; padding: 4px 0; }

.roundel.light::before { border-color: var(--red); }
.roundel.light .roundel-bar { background: #fff; color: var(--navy); }

/* ---------- Promo bar ---------- */
.promo {
    background: var(--red);
    color: #fff;
    font-size: 12.5px;
    font-weight: 600;
    padding: 9px 36px 9px 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    position: relative;
    text-align: center;
    letter-spacing: 0.01em;
    overflow: hidden;
}

.promo svg { flex: none; }

.promo-marquee {
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
}

.promo-track {
    display: flex;
    align-items: center;
    white-space: nowrap;
    will-change: transform;
    animation: promo-scroll 22s linear infinite;
}

.promo-track span { flex: none; padding-right: 64px; }

.promo:hover .promo-track { animation-play-state: paused; }

@keyframes promo-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
    .promo-track {
        animation: none;
        justify-content: center;
        width: 100%;
    }
    .promo-track span { padding-right: 0; }
    .promo-track span[aria-hidden="true"] { display: none; }
}

.promo .promo-close {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    border: 0;
    background: none;
    color: #fff;
    font-size: 14px;
    line-height: 1;
    padding: 4px;
}

/* ---------- Header ---------- */
.header {
    background: #fff;
    border-bottom: 3px solid var(--red);
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header .left,
.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--navy);
}

.brand-name {
    font-family: Georgia, "Times New Roman", Times, serif;
    font-size: 21px;
    font-weight: 700;
    color: var(--navy);
}

.title-sm {
    font-size: 15px;
    font-weight: 600;
    color: var(--navy);
}

.icon-btn, .close-btn, .menu-btn {
    border: 0;
    background: none;
    padding: 0;
    display: grid;
    place-items: center;
    color: var(--navy);
}

.menu {
    width: 26px;
    display: grid;
    gap: 6px;
    padding: 4px 0;
}

.menu span {
    height: 3px;
    background: var(--navy);
    border-radius: 3px;
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: 330px;
    background:
        linear-gradient(180deg, rgba(16, 30, 58, 0.18) 0%, rgba(16, 30, 58, 0.42) 55%, rgba(16, 30, 58, 0.86) 100%),
        var(--hero-image) center/cover;
    display: flex;
    align-items: flex-end;
    padding: 20px 18px 64px;
}

.hero-copy { display: grid; gap: 12px; }

.pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    width: fit-content;
    background: rgba(10, 30, 20, 0.55);
    border: 1px solid rgba(46, 204, 113, 0.5);
    color: #4ade80;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    backdrop-filter: blur(4px);
}

.pill.closed { color: #cbd5e1; border-color: rgba(255, 255, 255, 0.35); }

.hero-copy h1 {
    font-size: 34px;
    color: #fff;
    max-width: 320px;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
}

.hero-copy .addr {
    display: flex;
    align-items: flex-start;
    gap: 7px;
    color: #e7ecf5;
    font-size: 13.5px;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
    max-width: 300px;
    line-height: 1.45;
}

.hero-copy .addr svg { flex: none; margin-top: 1px; }

/* ---------- Cards ---------- */
.card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--r-md);
}

/* ---------- Booking widget ---------- */
.booking {
    margin: -46px 14px 0;
    padding: 16px 14px 14px;
    border-radius: var(--r-lg);
    position: relative;
    z-index: 4;
    box-shadow: var(--shadow);
    border: 0;
}

.booking-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
}

.rating {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    font-size: 12.5px;
}

.rating .rating-word { font-weight: 700; color: var(--text); }

.tp-stars { display: inline-flex; gap: 2px; }

.tp-star {
    width: 17px;
    height: 17px;
    background: var(--tp-green);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 11px;
    border-radius: 2px;
}

.rating .rating-meta { color: var(--text-2); font-weight: 600; }

.from-price { text-align: right; white-space: nowrap; }

.from-price .from { font-size: 12px; color: var(--text-2); margin-right: 4px; }

.from-price .amount {
    font-family: Georgia, "Times New Roman", Times, serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--navy);
}

.from-price .per {
    display: block;
    font-size: 11px;
    color: var(--muted);
    margin-top: 1px;
}

.booking-fields {
    display: grid;
    grid-template-columns: 1.15fr 1.15fr 0.8fr;
    gap: 8px;
    margin-bottom: 12px;
}

.fieldbox {
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1.5px solid var(--navy);
    border-radius: 10px;
    padding: 9px 10px;
    background: #fff;
    min-width: 0;
    cursor: pointer;
}

.fieldbox svg { flex: none; color: var(--navy); }

.fieldbox .fb-inner { display: grid; gap: 1px; min-width: 0; flex: 1; }

.fieldbox .fb-label {
    font-size: 10.5px;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: 0.01em;
}

.fieldbox input,
.fieldbox select {
    border: 0;
    padding: 0;
    background: transparent;
    font-size: 12px;
    color: var(--text-2);
    width: 100%;
    min-width: 0;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    outline: none;
}

.fieldbox input[type="date"] { appearance: none; -webkit-appearance: none; }

.fieldbox input[type="date"]::-webkit-calendar-picker-indicator {
    margin: 0;
    padding: 0;
    width: 14px;
    height: 14px;
    opacity: 0.55;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 16px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    border: 1px solid transparent;
    text-decoration: none;
    transition: 0.15s ease;
}

.btn.primary {
    background: var(--red);
    color: #fff;
    width: 100%;
    position: relative;
}

.btn.primary:hover { background: var(--red-dark); }

.btn.primary .btn-arrow { position: absolute; right: 16px; }

.btn.secondary {
    background: #fff;
    border-color: var(--navy);
    color: var(--navy);
}

.btn.outline {
    background: #fff;
    border: 1.5px solid var(--red);
    color: var(--red);
    padding: 11px 14px;
    font-size: 13.5px;
}

.btn.green { background: #fff; border-color: var(--green); color: var(--green); }

.btn.whatsapp-fill { background: var(--green); color: #fff; }

.btn.navy-btn { background: var(--navy); color: #fff; width: 100%; }

.tiny { text-align: center; font-size: 11px; color: var(--muted); margin-top: 10px; }

/* ---------- Trust row ---------- */
.trust {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 4px;
    padding: 22px 10px 6px;
    background: #fff;
}

.trust-item {
    display: grid;
    justify-items: center;
    gap: 8px;
    text-align: center;
    font-size: 10.5px;
    font-weight: 600;
    color: var(--text-2);
    line-height: 1.3;
}

.trust-item .ticon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: 0 3px 10px rgba(20, 39, 74, 0.07);
    display: grid;
    place-items: center;
    color: var(--navy);
}

/* ---------- Sections ---------- */
.section { padding: 26px 16px 6px; }

.section > h2 {
    font-size: 24px;
    margin-bottom: 18px;
    text-align: center;
}

/* ---------- How it works ---------- */
.hiw {
    display: grid;
    grid-template-columns: 1fr 28px 1fr 28px 1fr;
    align-items: start;
    gap: 2px;
}

.hiw-step {
    display: grid;
    justify-items: center;
    gap: 10px;
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    color: var(--text);
    line-height: 1.35;
}

.hiw-badge {
    position: relative;
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
}

.hiw-badge::before {
    content: "";
    position: absolute;
    inset: 0;
    border: 7px solid var(--red);
    border-radius: 50%;
}

.hiw-badge::after {
    content: "";
    position: absolute;
    left: -6%;
    right: -6%;
    top: 50%;
    transform: translateY(-50%);
    height: 16px;
    background: var(--navy);
}

.hiw-badge span {
    position: relative;
    z-index: 1;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.hiw-dots {
    margin-top: 26px;
    border-top: 3px dotted #c3c9d6;
}

/* ---------- Reviews carousel ---------- */
.carousel-wrap { position: relative; }

.carousel {
    padding: 20px 40px;
    border-radius: var(--r-lg);
    box-shadow: 0 8px 24px rgba(20, 39, 74, 0.06);
    background: #fafbfc;
    border: 1px solid var(--border);
}

.car-slide { display: none; text-align: left; }

.car-slide.active { display: block; }

.car-stars { color: var(--star-orange); font-size: 17px; letter-spacing: 2px; margin-bottom: 10px; }

.car-text { font-size: 13.5px; line-height: 1.6; color: var(--text); }

.car-meta { margin-top: 12px; font-size: 12px; color: var(--muted); display: flex; gap: 12px; }

.car-meta .car-author { font-weight: 700; color: var(--text-2); }

.car-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: 0;
    background: none;
    color: var(--star-orange);
    font-size: 26px;
    line-height: 1;
    padding: 6px;
    z-index: 2;
}

.car-arrow.prev { left: 4px; }
.car-arrow.next { right: 4px; }

.car-dots {
    display: flex;
    justify-content: center;
    gap: 7px;
    margin-top: 14px;
}

.car-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d3d8e2;
    border: 0;
    padding: 0;
}

.car-dot.active { background: var(--navy); }

/* ---------- Find us + questions ---------- */
.two-col {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 12px;
    align-items: start;
}

@media (max-width: 760px) {
    .two-col { grid-template-columns: 1fr; gap: 16px; }
}

.findus {
    padding: 14px;
    border-radius: var(--r-lg);
    background: #fafbfc;
}

.findus h2, .questions h2 { font-size: 19px; text-align: center; margin-bottom: 12px; }

.map-art {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border);
    display: block;
    padding: 0;
    background: none;
    cursor: pointer;
}

.map-art svg { display: block; width: 100%; height: auto; }

.addr-row {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    font-size: 12px;
    color: var(--text-2);
    line-height: 1.45;
    margin-top: 10px;
}

.addr-row svg { flex: none; margin-top: 1px; color: var(--navy); }

.addr-row strong { color: var(--navy); }

/* ---------- Accordion ---------- */
.accordion { display: grid; gap: 8px; background: none; border: 0; }

.acc-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
}

.acc-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 13px 14px;
    border: 0;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--text);
    background: #fff;
    text-align: left;
}

.acc-row .chev {
    color: var(--muted);
    transition: 0.18s ease;
    flex: none;
}

.acc-item.open .acc-row .chev { transform: rotate(180deg); }

.acc-answer {
    display: none;
    padding: 0 14px 13px;
    color: var(--text-2);
    font-size: 12.5px;
    line-height: 1.6;
}

.acc-item.open .acc-answer { display: block; }

.contact-mini {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 12px;
}

/* ---------- Find us card ---------- */
.findus-rows {
    display: grid;
    gap: 8px;
    margin-top: 12px;
}

.findus-row {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 9px 11px;
    font-size: 12.5px;
    color: var(--text-2);
    line-height: 1.4;
}

.findus-row strong { color: var(--navy); }

.findus-ico {
    flex: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(207, 34, 46, 0.08);
    color: var(--red);
}

.findus-directions {
    width: 100%;
    margin-top: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* ---------- Help / contact banner ---------- */
.help-card {
    background: linear-gradient(135deg, var(--navy) 0%, #23375d 60%, #2c447a 100%);
    border-radius: var(--r-lg);
    padding: 24px 18px;
    display: grid;
    gap: 18px;
    color: #fff;
}

.help-copy .eyebrow.light {
    color: #ffd166;
}

.help-copy h2 {
    color: #fff;
    font-size: 22px;
    margin: 6px 0 6px;
}

.help-copy p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 13.5px;
    margin: 0;
}

.help-actions {
    display: grid;
    gap: 10px;
}

.help-action {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    text-align: left;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 12px;
    padding: 12px 14px;
    color: #fff;
    font: inherit;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.15s ease, transform 0.15s ease;
}

.help-action:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
}

.help-ico {
    flex: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--red);
    color: #fff;
}

.help-ico.whatsapp { background: #25d366; }

.help-text { display: grid; min-width: 0; }

.help-label {
    font-weight: 800;
    font-size: 14px;
}

.help-value {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* ---------- Contact / generic ---------- */
.contact-btns { display: grid; gap: 10px; padding: 18px 16px 26px; }

.link-teal {
    color: var(--teal);
    font-weight: 600;
    border: 0;
    background: none;
    padding: 0;
    cursor: pointer;
}

/* ---------- Footer ---------- */
.footer {
    background: var(--navy);
    color: #fff;
    padding: 28px 20px 22px;
    margin-top: 30px;
}

.foot-brand { display: flex; align-items: center; gap: 14px; }

.foot-brand h3 { font-size: 21px; color: #fff; margin-bottom: 4px; }

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 14px;
    margin: 16px 0 4px;
}

.footer-nav a {
    color: #d7e0f0;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}

.footer-nav a:hover { color: #fff; text-decoration: underline; }

.footer p { color: #b9c4d8; font-size: 12px; margin: 2px 0; line-height: 1.5; }

.footline { height: 1px; background: rgba(255, 255, 255, 0.14); margin: 16px 0 12px; }

.footer .copy { font-size: 11.5px; color: #8fa0bd; }

/* ---------- Forms (booking page, admin) ---------- */
.field { display: grid; gap: 6px; margin-top: 12px; }

.field label { font-size: 12px; color: var(--navy); font-weight: 600; }

.input,
.select,
textarea.input {
    width: 100%;
    padding: 12px;
    border: 1px solid #c8cedb;
    border-radius: 8px;
    background: #fff;
    color: var(--navy);
    font-size: 14px;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

textarea.input { min-height: 88px; resize: vertical; }

.input:focus, .select:focus, textarea.input:focus {
    outline: none;
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(211, 34, 42, 0.10);
}

/* Normalize native control rendering (iOS Safari centres dates, restyles selects) */
.input,
.select {
    -webkit-appearance: none;
    appearance: none;
    min-height: 46px;
    background-color: #fff;
    color: var(--navy);
}

.select {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5 6 6.5 11 1.5' fill='none' stroke='%232c3e5d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 34px;
}

input[type="date"].input {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
}

input[type="date"].input::-webkit-date-and-time-value {
    text-align: left;
}

.error-text { color: var(--red); font-size: 12.5px; margin-top: 8px; }

.stepper {
    display: grid;
    grid-template-columns: 38px 1fr 38px;
    gap: 10px;
    align-items: center;
    text-align: center;
    font-weight: 700;
    color: var(--navy);
}

.btnc {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    border: 1.5px solid var(--navy);
    display: grid;
    place-items: center;
    color: var(--navy);
    font-weight: 700;
    background: #fff;
}

.divider { height: 1px; background: var(--divider); margin: 12px 0; }

.row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.rule { height: 1px; background: var(--divider); margin: 10px 0 18px; }

.center-pad { padding: 34px 18px 28px; }

.progress { height: 4px; background: #f3d2d3; position: relative; }

.progress::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 56%;
    background: var(--red);
}

.mini-table { display: grid; gap: 8px; font-size: 13px; color: var(--text-2); }

.mini-table .total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--navy);
    font-weight: 700;
}

.mini-table .total span:last-child {
    font-family: Georgia, "Times New Roman", Times, serif;
    color: var(--red);
    font-size: 28px;
}

/* ---------- Confirmation ---------- */
.confirm { display: grid; place-items: center; text-align: center; gap: 14px; }

.confirm-hero {
    background: linear-gradient(150deg, var(--navy) 0%, #23375d 65%, #2c447a 100%);
    color: #fff;
    text-align: center;
    padding: 42px 20px 64px;
    position: relative;
}

.confirm-hero h1 {
    color: #fff;
    font-size: 30px;
    margin: 14px 0 6px;
}

.confirm-hero p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    margin: 0;
}

.confirm-check {
    width: 76px;
    height: 76px;
    margin: 0 auto;
    border-radius: 50%;
    background: var(--green, #17b26a);
    color: #fff;
    display: grid;
    place-items: center;
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.12);
    animation: confirmPop 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes confirmPop {
    0% { transform: scale(0.4); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.confirm-body {
    display: grid;
    gap: 16px;
    margin-top: -38px;
    position: relative;
    z-index: 2;
    padding-bottom: 30px;
}

.ticket {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: 0 12px 32px rgba(16, 30, 60, 0.12);
    padding: 18px;
    display: grid;
    gap: 14px;
}

.ticket-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.ticket-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--muted);
}

.ticket-ref {
    font-family: Georgia, "Times New Roman", Times, serif;
    font-size: 24px;
    color: var(--navy);
    font-weight: 700;
}

.ticket-status {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(23, 178, 106, 0.12);
    color: #0e8a52;
    font-weight: 800;
    font-size: 12.5px;
    padding: 6px 12px;
    border-radius: 999px;
}

.ticket-tear {
    border-top: 2px dashed var(--border);
    margin: 0 -18px;
    position: relative;
}

.ticket-tear::before,
.ticket-tear::after {
    content: "";
    position: absolute;
    top: -9px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--bg);
    border: 1px solid var(--border);
}

.ticket-tear::before { left: -8px; }
.ticket-tear::after { right: -8px; }

.ticket-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 10px;
}

.ticket-cell { display: grid; gap: 2px; }

.ticket-cell strong { color: var(--navy); font-size: 16px; }

.ticket-sub { font-size: 12.5px; color: var(--text-2); }

.ticket-arrow { color: var(--red); }

.ticket-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ticket-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--bg);
    border: 1px solid var(--border);
    color: var(--navy);
    font-size: 12.5px;
    font-weight: 600;
    padding: 7px 11px;
    border-radius: 999px;
}

.ticket-chip.promo {
    background: rgba(207, 34, 46, 0.07);
    border-color: rgba(207, 34, 46, 0.25);
    color: var(--red);
}

.ticket-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg);
    border-radius: 12px;
    padding: 12px 14px;
    font-weight: 700;
    color: var(--navy);
}

.ticket-amount {
    font-family: Georgia, "Times New Roman", Times, serif;
    font-size: 26px;
    color: var(--red);
}

.ticket-email {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    color: var(--text-2);
    flex-wrap: wrap;
}

.ticket-email svg { color: var(--green, #17b26a); flex: none; }

.ticket-email strong { color: var(--navy); word-break: break-all; }

.next-steps {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 18px;
    display: grid;
    gap: 14px;
}

.next-steps h3 {
    font-size: 17px;
    color: var(--navy);
    margin: 0;
}

.step-row {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.step-row > div { display: grid; gap: 2px; }

.step-row strong { color: var(--navy); font-size: 14px; }

.step-row span:not(.step-num) { font-size: 12.5px; color: var(--text-2); }

.step-num {
    flex: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--navy);
    color: #fff;
    font-weight: 800;
    font-size: 13px;
    display: grid;
    place-items: center;
    border: 2px solid var(--red);
}

.confirm-actions { display: grid; gap: 10px; }

.confirm-actions .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

@media (min-width: 760px) {
    .confirm-body { max-width: 560px; margin-left: auto; margin-right: auto; margin-top: -38px; }
    .confirm-hero { padding: 54px 20px 78px; }
    .confirm-hero h1 { font-size: 36px; }
    .confirm-actions { grid-template-columns: 1fr 1fr 1fr; }
}

.check {
    width: 84px;
    height: 84px;
    border-radius: 999px;
    background: var(--navy);
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 36px;
}

.underline-red { width: 90px; height: 3px; background: var(--red); border-radius: 999px; }

.summary { padding: 14px 16px; display: grid; gap: 12px; }

.summary .srow { display: flex; justify-content: space-between; gap: 12px; font-size: 14px; }

.leftx { color: var(--muted); }

.rightx { color: var(--navy); font-weight: 600; }

.next {
    padding: 14px 16px;
    background: var(--bg);
    border-radius: 12px;
    border: 1px solid var(--border);
    display: grid;
    gap: 10px;
    font-size: 13.5px;
    color: var(--text-2);
}


/* ---------- Page band ---------- */
.band { background: var(--navy); padding: 30px 16px; text-align: center; }

.band h1 { color: #fff; font-size: 28px; }

.band p { color: #c6d2e6; font-size: 13px; margin-top: 6px; }

/* ---------- About page ---------- */
.photo-placeholder {
    height: 190px;
    border-radius: 10px;
    background:
        linear-gradient(180deg, rgba(20, 39, 74, 0.05), rgba(20, 39, 74, 0.35)),
        var(--hero-image) center/cover;
    display: grid;
    place-items: end center;
    color: #fff;
    font-size: 13px;
    text-align: center;
    font-weight: 600;
    padding-bottom: 12px;
}

.checkrows { display: grid; gap: 12px; }

.checkrow {
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 12px;
    align-items: start;
    font-size: 14px;
    color: var(--text);
}

/* ---------- Contact page ---------- */
.contact-card { padding: 16px; display: grid; gap: 16px; }

.contact-row {
    display: grid;
    grid-template-columns: 22px 1fr;
    gap: 12px;
    align-items: start;
    color: var(--text-2);
    font-size: 14px;
}

.contact-row svg { color: var(--navy); margin-top: 1px; }

.map-tall {
    width: 100%;
    border-radius: 10px;
    border: 1px solid var(--border);
    overflow: hidden;
    display: block;
    background: none;
    padding: 0;
    cursor: pointer;
}

.map-tall svg { display: block; width: 100%; height: auto; }

/* ---------- Drawer ---------- */
.drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(12, 21, 38, 0.5);
    opacity: 0;
    pointer-events: none;
    transition: 0.24s ease;
    z-index: 40;
}

.drawer {
    position: fixed;
    top: 0;
    bottom: 0;
    right: max(0px, calc(50% - 250px));
    height: 100vh;
    height: 100dvh;
    max-height: 100dvh;
    width: 88%;
    max-width: 340px;
    background: #fff;
    box-shadow: -22px 0 44px rgba(20, 39, 74, 0.18);
    transform: translateX(105%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.28s cubic-bezier(0.22, 0.8, 0.36, 1), opacity 0.2s ease, visibility 0.28s;
    z-index: 41;
    display: flex;
    flex-direction: column;
}

.drawer-open .drawer-overlay { opacity: 1; pointer-events: auto; }

.drawer-open .drawer {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
}

.drawer-head {
    padding: 16px 18px;
    border-bottom: 1px solid var(--divider);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    flex: none;
}

.drawer-brand { display: flex; align-items: center; gap: 12px; min-width: 0; }

.drawer-brand .title-sm { font-family: Georgia, "Times New Roman", Times, serif; font-size: 17px; font-weight: 700; }

.drawer-head .close-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--bg);
    color: var(--navy);
    font-size: 15px;
    flex: none;
}

.drawer-trust {
    padding: 10px 18px;
    background: var(--navy);
    color: #d8e1f0;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    flex: none;
}

.drawer-trust .tp { color: #ffd166; }

.drawer-body {
    padding: 16px 18px;
    display: grid;
    gap: 4px;
    align-content: start;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    flex: 1 1 auto;
    min-height: 0;
}

.drawer-body .btn.primary { margin-bottom: 10px; }

.drawer-link {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 13px 4px;
    border: 0;
    border-bottom: 1px solid var(--divider);
    background: none;
    color: var(--navy);
    font-size: 14.5px;
    font-weight: 600;
    text-align: left;
    text-decoration: none;
}

.drawer-link:last-of-type { border-bottom: 0; }

.drawer-link .dl-icon {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    background: var(--bg);
    display: grid;
    place-items: center;
    color: var(--navy);
    flex: none;
}

.drawer-link .dl-text { display: grid; gap: 1px; flex: 1; min-width: 0; }

.drawer-link small { color: var(--muted); font-weight: 500; font-size: 11.5px; }

.drawer-link .dl-chev { color: #c3c9d6; flex: none; }

.drawer-footer {
    padding: 12px 18px calc(12px + env(safe-area-inset-bottom, 0px));
    border-top: 1px solid var(--divider);
    display: grid;
    gap: 10px;
    background: #fafbfc;
    flex: none;
}

.drawer-footer .btn { min-height: 44px; }

@media (max-height: 620px) {
    .drawer-link { padding: 10px 4px; }
    .drawer-body { padding: 10px 18px; }
    .drawer-body .btn.primary { margin-bottom: 6px; }
    .drawer-footer { padding-top: 10px; }
}

.drawer-footer .drawer-cta { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

.drawer-admin {
    font-size: 12px;
    color: var(--muted);
    text-align: center;
    background: none;
    border: 0;
    display: block;
}

/* ---------- Toast ---------- */
.toast {
    position: fixed;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%) translateY(20px);
    background: var(--navy);
    color: #fff;
    padding: 12px 16px;
    border-radius: 999px;
    font-size: 13px;
    opacity: 0;
    pointer-events: none;
    transition: 0.22s ease;
    z-index: 100;
}

.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ---------- Floating WhatsApp ---------- */
.whatsapp-float {
    position: fixed;
    right: max(16px, calc(50% - 234px));
    bottom: max(16px, env(safe-area-inset-bottom));
    z-index: 35;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 15px;
    border: 0;
    border-radius: 999px;
    background: #19ad55;
    color: #fff;
    box-shadow: 0 8px 24px rgba(13, 120, 58, .28);
    font-size: 12px;
    font-weight: 800;
    transition: transform .18s ease, background .18s ease;
}

.whatsapp-float:hover {
    transform: translateY(-2px);
    background: #128c45;
}

.whatsapp-float svg { flex: none; }

@media (max-width: 420px) {
    .whatsapp-float { padding: 12px; }
    .whatsapp-float span { display: none; }
}


@media (max-width: 400px) {
    .booking-fields { grid-template-columns: 1fr 1fr; }
    .booking-fields .fieldbox:last-child { grid-column: 1 / -1; }
    .trust { grid-template-columns: repeat(5, 1fr); }
    .hero-copy h1 { font-size: 29px; }
}

@media (min-width: 501px) {
    body { padding: 14px 0; }
    .app-shell { border-radius: 18px; }
}

/* ---------- Real shop gallery ---------- */
.store-intro {
    max-width: 620px;
    margin: 0 auto 18px;
    text-align: center;
}

.eyebrow {
    display: inline-block;
    color: var(--red);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 7px;
}

.store-intro h2 {
    font-size: 24px;
    margin-bottom: 8px;
}

.store-intro p {
    font-size: 13px;
    line-height: 1.6;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.photo-grid figure {
    position: relative;
    min-height: 132px;
    margin: 0;
    border-radius: 12px;
    overflow: hidden;
    background: var(--navy);
}

.photo-grid-main { grid-column: 1 / -1; min-height: 220px !important; }

.photo-grid img {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    object-fit: cover;
    transition: transform .25s ease;
}

.photo-grid figure:hover img { transform: scale(1.025); }

.photo-grid figcaption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    padding: 22px 10px 9px;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    background: linear-gradient(transparent, rgba(10, 20, 38, .82));
}

/* ---------- Full booking checkout ---------- */
.booking-page {
    max-width: 1050px;
    margin: 0 auto;
    padding: 20px 12px 28px;
}

.booking-page-head {
    max-width: 650px;
    margin-bottom: 14px;
}

.booking-page-head h1 {
    font-size: clamp(28px, 5vw, 40px);
    margin-bottom: 8px;
}

.booking-page-head p {
    font-size: 14px;
    line-height: 1.6;
}

.checkout-layout,
.checkout-main {
    display: grid;
    gap: 10px;
}

.checkout-card,
.checkout-summary {
    padding: 14px;
}

.checkout-card-title {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    margin-bottom: 9px;
}

.checkout-card-title > span {
    width: 30px;
    height: 30px;
    flex: none;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--navy);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
}

.checkout-card-title h2 {
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 17px;
    margin: 2px 0 3px;
}

.checkout-card-title p {
    font-size: 12px;
}

.form-grid {
    display: grid;
    gap: 0 12px;
}

.form-grid.two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.bulk-hint {
    margin-top: 8px;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--red);
    background: rgba(207, 34, 46, 0.08);
    border: 1px solid rgba(207, 34, 46, 0.2);
    border-radius: 10px;
    padding: 8px 12px;
}

.bulk-hint.is-active {
    color: #1a7f37;
    background: rgba(26, 127, 55, 0.08);
    border-color: rgba(26, 127, 55, 0.25);
}

.promo-code-box { margin-top: 14px; display: grid; gap: 6px; }

.promo-code-box > label { font-size: 12px; color: var(--navy); font-weight: 600; }

.promo-code-row { display: flex; gap: 8px; align-items: stretch; }

.promo-code-row .input { flex: 1 1 auto; min-width: 0; }

.promo-code-row .btn {
    flex: none;
    min-height: 46px;
    padding: 0 18px;
    font-size: 13.5px;
}

.promo-code-box small { color: var(--muted); font-size: 12px; }

.promo-code-box small.promo-success { color: #1a7f37; }

.promo-code-box small.promo-error, .promo-code-box .promo-error { color: var(--red); }

.pay-btn.is-loading { opacity: 0.85; cursor: progress; }

.pay-btn .pay-btn-loading { display: inline-flex; align-items: center; gap: 8px; }

.btn-spinner {
    width: 15px;
    height: 15px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-top-color: #fff;
    border-radius: 50%;
    animation: btn-spin 0.7s linear infinite;
}

@keyframes btn-spin {
    to { transform: rotate(360deg); }
}

.duration-box {
    min-height: 43px;
    padding: 8px 12px;
    border: 1px solid #c8cedb;
    border-radius: 8px;
    display: grid;
    gap: 1px;
    color: var(--navy);
}

.duration-box small {
    color: var(--muted);
    font-size: 10px;
}

.addon {
    margin-top: 10px;
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--border);
    border-radius: 10px;
    cursor: pointer;
    background: #fafbfc;
}

.addon input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--red);
}

.addon-copy {
    display: grid;
    flex: 1;
    color: var(--navy);
    font-size: 13px;
}

.addon-copy small {
    margin-top: 2px;
    color: var(--muted);
    font-size: 11px;
}

.addon-price {
    font-weight: 800;
    color: var(--red);
}

.form-error {
    padding: 12px 14px;
    border: 1px solid #f3b6b9;
    border-radius: 9px;
    background: #fff3f3;
    color: #9f1c22;
    font-size: 13px;
}

.checkout-summary {
    align-self: start;
}

.summary-photo {
    display: none;
    height: 100px;
    margin-bottom: 14px;
    border-radius: 10px;
    background:
        linear-gradient(180deg, rgba(20, 39, 74, .05), rgba(20, 39, 74, .2)),
        url('../images/storage-blue.jpg') center/cover;
}

.summary-lines {
    display: grid;
    gap: 9px;
    padding-bottom: 13px;
}

.summary-lines > div,
.checkout-total {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    font-size: 12px;
}

.summary-lines span { color: var(--muted); }
.summary-lines strong { color: var(--navy); text-align: right; }

.checkout-total {
    align-items: center;
    padding: 14px 0;
    border-top: 1px solid var(--divider);
    font-size: 14px;
    font-weight: 700;
}

.checkout-total strong {
    color: var(--red);
    font: 700 28px/1 Georgia, "Times New Roman", Times, serif;
}

.pay-btn { margin-top: 2px; font-size: 13px; }

.stripe-note {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-top: 11px;
    color: var(--muted);
    font-size: 10px;
    text-align: center;
}

.payment-marks {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 12px;
}

.payment-marks span {
    padding: 4px 6px;
    border: 1px solid var(--border);
    border-radius: 4px;
    color: var(--text-2);
    font-size: 9px;
    font-weight: 700;
}

.booking-assurances {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 12px;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--divider);
    color: var(--text-2);
    font-size: 11px;
}

@media (max-width: 339px) {
    .form-grid.two { grid-template-columns: 1fr; }
}

@media (max-width: 519px) {
    .booking-page-head p,
    .checkout-card-title p { display: none; }

    .booking-page-head h1 { font-size: 27px; }

    .booking-page .field { margin-top: 8px; }
    .booking-page .input,
    .booking-page .select { padding: 10px; min-height: 44px; }
    .booking-page .select { padding-right: 34px; }

    .compact-grid { align-items: end; }

    .checkout-summary .checkout-card-title { margin-bottom: 5px; }
    .payment-marks { margin-top: 8px; }
    .booking-assurances { margin-top: 10px; padding-top: 10px; }
}

/* ---------- Tablet and desktop ---------- */
@media (min-width: 768px) {
    body { padding: 18px; }

    .app-shell {
        max-width: 1180px;
        border-radius: 18px;
    }

    .header { padding: 13px 28px; }

    .hero {
        min-height: 500px;
        padding: 44px 7% 115px;
        background-position: center 43%;
    }

    .hero-copy h1 {
        max-width: 620px;
        font-size: clamp(42px, 6vw, 68px);
    }

    .hero-copy .addr { max-width: 500px; font-size: 15px; }

    .booking {
        max-width: 980px;
        margin: -80px auto 0;
        padding: 22px;
    }

    .booking-fields { gap: 12px; }
    .fieldbox { padding: 12px 14px; }

    .trust {
        max-width: 980px;
        margin: 0 auto;
        padding: 30px 20px 12px;
    }

    .section {
        max-width: 1040px;
        margin: 0 auto;
        padding: 44px 26px 6px;
    }

    .section > h2,
    .store-intro h2 { font-size: 32px; }

    .hiw { max-width: 760px; margin: 0 auto; }

    .carousel { padding: 26px 56px; }
    .car-text { font-size: 15px; }

    .photo-grid {
        grid-template-columns: 1.45fr repeat(3, minmax(0, 1fr));
        gap: 12px;
    }

    .photo-grid-main {
        grid-column: auto;
        min-height: 280px !important;
    }

    .photo-grid figure { min-height: 280px; }

    .footer { padding: 32px max(28px, calc((100% - 1040px) / 2)); }

    .band { padding: 50px 20px; }
    .band h1 { font-size: 40px; }

    .booking-page { padding: 42px 26px 56px; }

    .checkout-layout {
        grid-template-columns: minmax(0, 1.65fr) minmax(290px, .8fr);
        align-items: start;
    }

    .checkout-summary {
        position: sticky;
        top: 18px;
    }

    .checkout-card,
    .checkout-summary { padding: 22px; }

    .summary-photo { display: block; }

    .drawer { right: max(0px, calc(50% - 590px)); }

    .whatsapp-float { right: max(24px, calc(50% - 566px)); }

    .admin-login-wrap { min-height: 650px; }
}

@media (min-width: 1000px) {
    .two-col { gap: 24px; }
    .findus, .questions { padding: 18px; }

    .help-card {
        grid-template-columns: 1fr 1.2fr;
        align-items: center;
        padding: 32px;
    }

    .help-copy h2 { font-size: 26px; }

    .help-actions { grid-template-columns: repeat(3, 1fr); }

    .help-action {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        padding: 18px 12px;
    }

    .help-text { justify-items: center; }

    .help-value { max-width: 100%; }
}
