/* Shoppin — standalone stylesheet (no build step) */

:root {
  --bg: #ffffff;
  --fg: #0a0a0a;
  --muted: #f4f4f5;
  --muted-fg: #6b7280;
  --border: #e5e7eb;
  --card: #ffffff;
  --radius: 22px;
  --wrap: 1120px;
  --font-display: "Sora", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 76px;
}

h1, h2, h3, .font-display { font-family: var(--font-display); letter-spacing: -0.01em; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.ic { flex: none; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 18px; }

/* 98% black / 2% grey gradient used across the site */
.hero-dark {
  background-image: linear-gradient(135deg, #101010 0%, #121212 92%, #4a4a4a 100%);
  background-size: 160% 160%;
  background-position: 0% 0%;
  transition: background-position .6s ease, filter .3s ease;
  color: #fff;
}
.hero-dark:hover { background-position: 100% 100%; }

@keyframes pageEnter { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.page-enter { animation: pageEnter .35s ease both; }

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 40; }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding-top: 12px; padding-bottom: 12px; }
.brand { display: flex; align-items: center; gap: 10px; min-width: 0; }
.brand-logo { height: 38px; width: auto; display: block; }
.brand-mark { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 14px; background: rgba(255,255,255,.15); font-family: var(--font-display); font-weight: 700; }
.brand-name { display: block; font-family: var(--font-display); font-size: 18px; font-weight: 700; line-height: 1.1; }
.brand-sub { display: flex; align-items: center; gap: 4px; font-size: 11px; color: rgba(255,255,255,.6); }
.header-actions { display: flex; align-items: center; gap: 8px; }
.main-nav { display: none; gap: 2px; margin-right: 6px; }
@media (min-width: 1024px) { .main-nav { display: flex; } .icon-btn.nav-toggle { display: none; } }
.nav-link { padding: 8px 14px; border-radius: 999px; font-size: 14px; font-weight: 500; color: rgba(255,255,255,.7); transition: background .2s, color .2s; }
.nav-link:hover { background: rgba(255,255,255,.1); color: #fff; }
.nav-link.is-active { background: rgba(255,255,255,.2); color: #fff; }
.mobile-nav { display: grid; gap: 2px; padding: 8px 18px 16px; }
@media (min-width: 1024px) { .mobile-nav { display: none !important; } }

.icon-btn { display: grid; place-items: center; width: 40px; height: 40px; border: 0; border-radius: 999px; background: rgba(255,255,255,.15); color: #fff; cursor: pointer; }
.icon-btn:hover { background: rgba(255,255,255,.25); }
.icon-btn.bordered { background: transparent; border: 2px solid var(--border); color: var(--fg); height: 44px; width: 44px; }
.icon-btn.bordered:hover { background: var(--muted); }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; border: 0; border-radius: 999px; padding: 11px 18px; font-size: 14px; font-weight: 600; cursor: pointer; transition: transform .12s ease, opacity .2s; }
.btn:active { transform: scale(.97); }
.btn-white { background: #fff; color: #000; }
.btn-ghost { border: 1px solid rgba(255,255,255,.3); background: transparent; color: #fff; }
.btn-dark { background: #101010; color: #fff; }
.btn-outline { border: 2px solid var(--fg); background: transparent; color: var(--fg); }

/* ---------- Hero carousel ---------- */
.hero { padding: 16px 18px 0; }
.hero-card { max-width: var(--wrap); margin: 0 auto; border-radius: 30px; overflow: hidden; }
.hero-slide[hidden] { display: none; }
.hero-slide { display: grid; gap: 24px; align-items: center; padding: 26px; }
@media (min-width: 860px) { .hero-slide { grid-template-columns: 1.1fr .9fr; padding: 40px; } }
.hero-slide h1 { margin: 0; font-size: clamp(28px, 5vw, 46px); font-weight: 800; line-height: 1.05; }
.hero-slide p { margin: 16px 0 0; max-width: 520px; color: rgba(255,255,255,.85); font-size: 15px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.hero-actions .btn { text-transform: uppercase; letter-spacing: .04em; font-size: 12px; font-weight: 700; padding: 13px 20px; }
.hero-img { display: block; aspect-ratio: 10 / 7; height: auto; border-radius: 24px; box-shadow: 0 25px 50px -12px rgba(0,0,0,.6); object-fit: cover; width: 100%; }
.hero-controls { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 0 26px 24px; }
@media (min-width: 860px) { .hero-controls { padding: 0 40px 24px; } }
.dots { display: flex; gap: 8px; }
.dot { height: 8px; width: 8px; border: 0; border-radius: 999px; background: rgba(255,255,255,.4); cursor: pointer; transition: width .3s, background .3s; }
.dot.is-active { width: 32px; background: #fff; }
.arrows { display: flex; gap: 8px; }
.arrow { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 999px; border: 1px solid rgba(255,255,255,.3); background: transparent; color: #fff; cursor: pointer; }
.arrow:hover { background: rgba(255,255,255,.1); }

/* ---------- Section basics ---------- */
.section { padding: 34px 18px 0; }
.section-inner { max-width: var(--wrap); margin: 0 auto; }
.section h2 { margin: 0; font-size: clamp(20px, 3vw, 26px); font-weight: 700; }
.section .lead { margin: 6px 0 0; color: var(--muted-fg); font-size: 14px; }
.bordered-box { border: 1px solid var(--border); border-radius: 28px; padding: 18px; }
@media (min-width: 640px) { .bordered-box { padding: 24px; } }

/* ---------- Services app drawer ---------- */
.tabs { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin-top: 16px; }
@media (min-width: 1024px) { .tabs { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.tab { display: flex; align-items: center; gap: 10px; text-align: left; padding: 12px; border-radius: 18px; border: 1px solid rgba(255,255,255,.1); cursor: pointer; color: #fff; }
.tab .tab-title { display: block; font-size: 13px; font-weight: 600; line-height: 1.2; overflow-wrap: anywhere; }
.tab .tab-count { display: block; font-size: 11px; color: rgba(255,255,255,.55); }
.tab.is-active { background: var(--bg); background-image: none; border: 2px solid var(--fg); color: var(--fg); box-shadow: 0 12px 24px -14px rgba(0,0,0,.5); }
.tab.is-active .tab-count { color: var(--muted-fg); }

.panel { margin-top: 12px; border: 1px solid var(--border); border-radius: 26px; background: var(--card); padding: 16px; }
@media (min-width: 640px) { .panel { padding: 20px; } }
.panel-head { display: flex; align-items: center; gap: 12px; }
.panel-head .badge { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 16px; }
.panel-head h3 { margin: 0; font-size: 16px; font-weight: 700; }
.panel-head p { margin: 0; font-size: 12px; color: var(--muted-fg); }

.tile-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 8px; margin-top: 16px; }
@media (min-width: 640px) { .tile-grid { grid-template-columns: repeat(4, minmax(0,1fr)); } }
@media (min-width: 1024px) { .tile-grid { grid-template-columns: repeat(6, minmax(0,1fr)); } }
.tile { display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 12px; border-radius: 18px; border: 1px solid rgba(255,255,255,.1); color: #fff; text-align: center; cursor: pointer; transition: transform .2s, filter .2s; }
.tile:hover { transform: translateY(-2px); filter: brightness(1.25); }
.tile span.label { font-size: 11.5px; font-weight: 500; line-height: 1.2; overflow-wrap: anywhere; }

.specialist { margin-top: 16px; border-top: 1px solid var(--border); padding-top: 16px; }
.specialist-title { margin: 0; font-size: 11px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--muted-fg); }
.spec-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 8px; margin-top: 12px; }
@media (min-width: 640px) { .spec-grid { grid-template-columns: repeat(5, minmax(0,1fr)); } }
@media (min-width: 1024px) { .spec-grid { grid-template-columns: repeat(6, minmax(0,1fr)); } }
.spec { display: flex; flex-direction: column; align-items: center; gap: 6px; padding: 10px 8px; border: 2px solid var(--border); border-radius: 18px; background: transparent; color: var(--fg); cursor: pointer; transition: background .2s; }
.spec:hover { background: var(--muted); }
.spec span.label { font-size: 10.5px; line-height: 1.2; color: var(--muted-fg); overflow-wrap: anywhere; text-align: center; }

.explore { display: inline-flex; align-items: center; gap: 4px; margin-top: 16px; font-size: 14px; font-weight: 600; }
.explore:hover { text-decoration: underline; text-underline-offset: 4px; }

/* ---------- How it works ---------- */
.how { background: var(--muted); border-radius: 30px; padding: 26px; }
@media (min-width: 640px) { .how { padding: 40px; } }
.steps { list-style: none; display: grid; gap: 16px; margin: 24px 0 0; padding: 0; }
@media (min-width: 640px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .steps { grid-template-columns: repeat(4, 1fr); } }
.step { background: var(--card); border-radius: 24px; padding: 20px; box-shadow: 0 1px 2px rgba(0,0,0,.05); }
.step .num { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 16px; font-family: var(--font-display); font-weight: 700; font-size: 14px; }
.step h3 { margin: 16px 0 0; font-size: 14px; font-weight: 600; }
.step p { margin: 8px 0 0; font-size: 12.5px; color: var(--muted-fg); }

/* ---------- Cards / generic content ---------- */
.card-grid { display: grid; gap: 16px; margin-top: 22px; }
@media (min-width: 768px) { .card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); } .card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); } }
.card { border: 1px solid var(--border); border-radius: 24px; padding: 20px; background: var(--card); }
.card h3 { margin: 0 0 8px; font-size: 16px; }
.card p { margin: 0; color: var(--muted-fg); font-size: 14px; }
.card .price { font-family: var(--font-display); font-size: 28px; font-weight: 700; margin: 6px 0 12px; }
.card ul { margin: 12px 0 0; padding-left: 18px; color: var(--muted-fg); font-size: 14px; }
.page-head { padding: 34px 18px 0; }
.page-head .inner { max-width: var(--wrap); margin: 0 auto; }
.page-head h1 { margin: 0; font-size: clamp(26px, 5vw, 40px); font-weight: 800; }
.page-head p { margin: 10px 0 0; max-width: 620px; color: var(--muted-fg); }

/* ---------- FAQ accordion ---------- */
.faq { border: 1px solid var(--border); border-radius: 20px; margin-top: 12px; overflow: hidden; background: var(--card); }
.faq summary { cursor: pointer; list-style: none; padding: 16px 18px; font-weight: 600; font-size: 15px; display: flex; justify-content: space-between; gap: 12px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 20px; line-height: 1; color: var(--muted-fg); }
.faq[open] summary::after { content: "–"; }
.faq p { margin: 0; padding: 0 18px 18px; color: var(--muted-fg); font-size: 14px; }

/* ---------- CTA band + footer ---------- */
.cta-band { padding: 40px 18px; }
.cta-pill { display: flex; flex-direction: column; gap: 18px; border-radius: 26px; padding: 22px; }
@media (min-width: 720px) { .cta-pill { flex-direction: row; align-items: center; justify-content: space-between; border-radius: 999px; padding: 22px 40px; } }
.cta-text { margin: 0; font-family: var(--font-display); font-size: 17px; font-weight: 600; }
@media (min-width: 720px) { .cta-text { font-size: 20px; white-space: nowrap; } }
.cta-country { text-decoration: underline; text-decoration-color: rgba(255,255,255,.4); text-underline-offset: 8px; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 8px; }

.site-footer { margin-top: 0; }
.footer-grid { display: grid; gap: 34px; padding-top: 54px; }
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.footer-brand { margin: 0; font-family: var(--font-display); font-size: 24px; font-weight: 600; }
.footer-copy { margin: 16px 0 0; max-width: 460px; font-size: 14px; color: rgba(255,255,255,.7); }
.socials { display: flex; gap: 10px; margin-top: 22px; }
.social { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 999px; border: 1px solid rgba(255,255,255,.15); background: rgba(255,255,255,.05); color: rgba(255,255,255,.8); }
.social:hover { background: rgba(255,255,255,.12); color: #fff; }
.footer-head { margin: 0; font-family: var(--font-display); font-size: 17px; font-weight: 600; }
.footer-list { list-style: none; margin: 18px 0 0; padding: 0; display: grid; gap: 12px; font-size: 14px; color: rgba(255,255,255,.7); }
.footer-list a:hover { color: #fff; }
.footer-bottom { display: flex; flex-direction: column; gap: 8px; margin-top: 34px; border-top: 1px solid rgba(255,255,255,.1); padding-top: 22px; padding-bottom: 28px; font-size: 12px; color: rgba(255,255,255,.55); }
@media (min-width: 640px) { .footer-bottom { flex-direction: row; align-items: center; justify-content: space-between; } }

/* ---------- Bottom app nav ---------- */
.bottom-nav { position: fixed; bottom: 0; left: 0; right: 0; z-index: 45; display: grid; grid-template-columns: repeat(5, 1fr); gap: 2px; background: #101010; border-top: 1px solid rgba(255,255,255,.1); padding: 8px 6px calc(8px + env(safe-area-inset-bottom)); }
@media (min-width: 768px) { .bottom-nav { display: none; } body { padding-bottom: 0; } }
.bottom-nav a { display: grid; justify-items: center; gap: 3px; font-size: 10px; color: rgba(255,255,255,.6); padding: 6px 0; border-radius: 14px; }
.bottom-nav a.is-active { color: #fff; background: rgba(255,255,255,.12); }

/* ---------- Booking modal ---------- */
.modal { position: fixed; inset: 0; z-index: 60; display: grid; place-items: center; padding: 16px; }
.modal[hidden] { display: none; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.55); backdrop-filter: blur(2px); }
.modal-card { position: relative; width: 100%; max-width: 440px; background: var(--card); border: 2px solid var(--border); border-radius: 28px; overflow: hidden; animation: pageEnter .25s ease both; }
.modal-head { position: relative; padding: 16px 20px; }
.modal-head h2 { margin: 0; font-size: 18px; font-weight: 700; }
.modal-sub { margin: 4px 0 0; font-size: 12px; color: rgba(255,255,255,.55); }
.modal-x { position: absolute; top: 12px; right: 12px; display: grid; place-items: center; width: 32px; height: 32px; border: 0; border-radius: 999px; background: rgba(255,255,255,.15); color: #fff; cursor: pointer; }
.modal-body { display: grid; gap: 12px; padding: 16px 20px 20px; }
.field { display: block; }
.field-label { display: block; font-size: 11px; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; color: var(--muted-fg); }
.input { margin-top: 6px; height: 44px; width: 100%; border: 2px solid var(--border); border-radius: 16px; background: var(--bg); padding: 0 14px; font-size: 14px; outline: none; transition: border-color .2s; color: var(--fg); }
.input:focus { border-color: var(--fg); }
.select { max-width: 150px; flex: none; font-weight: 600; }
.row { display: flex; gap: 8px; margin-top: 6px; }
.row .input { margin-top: 0; }
.consents { display: grid; gap: 8px; border: 2px solid var(--border); border-radius: 16px; padding: 12px; }
.check { display: flex; align-items: flex-start; gap: 10px; font-size: 11.5px; line-height: 1.35; color: var(--muted-fg); cursor: pointer; }
.check input { margin-top: 2px; width: 16px; height: 16px; accent-color: #101010; }
.captcha { display: grid; place-items: center; height: 44px; min-width: 92px; padding: 0 16px; border-radius: 16px; font-family: var(--font-display); font-weight: 700; font-size: 14px; white-space: nowrap; user-select: none; }
.btn-submit { width: 100%; padding: 14px; border-radius: 999px; color: #fff; font-weight: 600; }
.btn-submit[disabled] { opacity: .6; cursor: progress; }

/* ---------- Toast ---------- */
.toast { position: fixed; left: 50%; bottom: 90px; transform: translateX(-50%); z-index: 70; max-width: 92vw; padding: 12px 18px; border-radius: 999px; background: #101010; color: #fff; font-size: 13px; box-shadow: 0 18px 40px -12px rgba(0,0,0,.55); }
.toast[hidden] { display: none; }
.toast.is-error { background: #7f1d1d; }
