/* =========================================================
   BookFlow – WooCommerce Booking & Rental
   Shared stylesheet — hand-written, no framework
   ========================================================= */

:root{
  --forest-900:#1f3328;
  --forest-800:#2a4436;
  --forest-700:#33543f;
  --forest-600:#3f6a4e;
  --forest-500:#4f8262;
  --sage-100:#eef3ec;
  --sage-200:#dde8d9;
  --cream-50:#fbf8f2;
  --cream-100:#f5efe2;
  --cream-200:#ece1cb;
  --terracotta-600:#c2603d;
  --terracotta-700:#a44e30;
  --terracotta-100:#f7e4d8;
  --ink-900:#241f18;
  --ink-700:#4a4237;
  --ink-500:#746a5c;
  --ink-300:#a89d8c;
  --line:#e3d9c6;
  --white:#ffffff;
  --red-600:#b3432f;
  --red-100:#fbe6e0;
  --amber-600:#a9791f;
  --amber-100:#faf0da;
  --green-600:#3f6a4e;
  --green-100:#e4efe4;
  --shadow-sm:0 1px 2px rgba(36,31,24,.08);
  --shadow-md:0 6px 20px rgba(36,31,24,.10);
  --shadow-lg:0 16px 40px rgba(36,31,24,.16);
  --radius-sm:6px;
  --radius-md:10px;
  --radius-lg:18px;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-display: Georgia, "Iowan Old Style", "Palatino Linotype", "Book Antiqua", serif;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:var(--font-body);
  color:var(--ink-900);
  background:var(--cream-50);
  line-height:1.55;
  -webkit-font-smoothing:antialiased;
}
img{ max-width:100%; display:block; }
a{ color:inherit; }
h1,h2,h3,h4{ font-family:var(--font-display); font-weight:700; line-height:1.15; margin:0 0 .5em; color:var(--forest-900); }
p{ margin:0 0 1em; color:var(--ink-700); }
ul{ margin:0; padding:0; }
button{ font-family:inherit; }

.container{ max-width:1180px; margin:0 auto; padding:0 24px; }

/* ---------- Top notice bar ---------- */
.top-bar{
  background:var(--forest-900);
  color:var(--sage-100);
  font-size:.8rem;
  letter-spacing:.02em;
  text-align:center;
  padding:7px 12px;
}
.top-bar strong{ color:var(--cream-100); }

/* ---------- Header ---------- */
.site-header{
  background:var(--cream-50);
  border-bottom:1px solid var(--line);
  position:sticky; top:0; z-index:50;
}
.site-header .container{
  display:flex; align-items:center; justify-content:space-between;
  padding-top:16px; padding-bottom:16px; gap:24px;
}
.brand{ display:flex; align-items:center; gap:10px; text-decoration:none; }
.brand-mark{
  width:36px; height:36px; border-radius:9px;
  background:linear-gradient(155deg,var(--forest-600),var(--forest-900));
  display:flex; align-items:center; justify-content:center;
  color:var(--cream-100); font-family:var(--font-display); font-weight:700; font-size:1.05rem;
  box-shadow:var(--shadow-sm);
  flex-shrink:0;
}
.brand-name{ font-family:var(--font-display); font-weight:700; font-size:1.25rem; color:var(--forest-900); }
.brand-tag{ display:block; font-family:var(--font-body); font-weight:400; font-size:.68rem; letter-spacing:.08em; text-transform:uppercase; color:var(--terracotta-700); }

.main-nav{ display:flex; align-items:center; gap:28px; }
.main-nav a{
  text-decoration:none; color:var(--ink-700); font-size:.94rem; font-weight:600;
  padding:6px 2px; border-bottom:2px solid transparent;
}
.main-nav a:hover, .main-nav a.is-active{ color:var(--forest-800); border-bottom-color:var(--terracotta-600); }
.nav-cta{
  background:var(--forest-800); color:var(--cream-50)!important; padding:10px 18px!important;
  border-radius:8px; border-bottom:none!important;
}
.nav-cta:hover{ background:var(--forest-900); color:var(--cream-50)!important; }

.nav-toggle{
  display:none; background:none; border:1px solid var(--line); border-radius:8px;
  width:40px; height:40px; align-items:center; justify-content:center; cursor:pointer;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after{
  content:""; display:block; width:18px; height:2px; background:var(--ink-900); position:relative;
  box-shadow:0 -6px 0 var(--ink-900), 0 6px 0 var(--ink-900);
}

/* ---------- Breadcrumb ---------- */
.breadcrumb{
  background:var(--sage-100); border-bottom:1px solid var(--line);
  font-size:.82rem; color:var(--ink-500);
}
.breadcrumb .container{ padding-top:10px; padding-bottom:10px; }
.breadcrumb a{ text-decoration:none; color:var(--forest-700); font-weight:600; }
.breadcrumb span{ margin:0 6px; color:var(--ink-300); }

/* ---------- Hero ---------- */
.hero{
  background:
    radial-gradient(900px 420px at 82% -10%, var(--sage-200) 0%, transparent 60%),
    var(--cream-50);
  padding:64px 0 56px;
  border-bottom:1px solid var(--line);
}
.hero .container{ display:grid; grid-template-columns:1.05fr .95fr; gap:56px; align-items:center; }
.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  background:var(--terracotta-100); color:var(--terracotta-700);
  font-size:.72rem; font-weight:700; letter-spacing:.09em; text-transform:uppercase;
  padding:6px 12px; border-radius:999px; margin-bottom:18px;
}
.hero h1{ font-size:2.6rem; max-width:620px; }
.hero .lede{ font-size:1.1rem; max-width:520px; color:var(--ink-700); }
.hero-actions{ display:flex; gap:14px; margin-top:26px; flex-wrap:wrap; }
.hero-stats{ display:flex; gap:30px; margin-top:38px; flex-wrap:wrap; }
.hero-stats div{ min-width:100px; }
.hero-stats strong{ display:block; font-family:var(--font-display); font-size:1.5rem; color:var(--forest-900); }
.hero-stats span{ font-size:.78rem; color:var(--ink-500); text-transform:uppercase; letter-spacing:.05em; }

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding:13px 24px; border-radius:9px; font-weight:700; font-size:.95rem;
  text-decoration:none; cursor:pointer; border:1px solid transparent;
  transition:transform .12s ease, box-shadow .12s ease, background .15s ease, color .15s ease, border-color .15s ease;
}
.btn:active{ transform:translateY(1px); }
.btn-primary{ background:var(--terracotta-600); color:var(--white); box-shadow:var(--shadow-sm); }
.btn-primary:hover{ background:var(--terracotta-700); }
.btn-dark{ background:var(--forest-900); color:var(--cream-50); }
.btn-dark:hover{ background:var(--forest-800); }
.btn-outline{ background:transparent; color:var(--forest-900); border-color:var(--forest-900); }
.btn-outline:hover{ background:var(--forest-900); color:var(--cream-50); }
.btn-block{ width:100%; }
.btn-lg{ padding:16px 26px; font-size:1.02rem; }
.btn[disabled]{ opacity:.5; cursor:not-allowed; box-shadow:none; }
.btn[disabled]:hover{ background:var(--terracotta-600); }

/* ---------- Cabin illustration (CSS/SVG hero art) ---------- */
.cabin-scene{
  position:relative; border-radius:var(--radius-lg); overflow:hidden;
  box-shadow:var(--shadow-lg); aspect-ratio:4/3; background:linear-gradient(180deg,#bcd8ea 0%,#dcebd8 55%,#dcebd8 100%);
}
.cabin-scene svg{ width:100%; height:100%; display:block; }

/* ---------- Feature grid ---------- */
.section{ padding:72px 0; }
.section-head{ max-width:640px; margin:0 auto 44px; text-align:center; }
.section-head .eyebrow{ margin-left:auto; margin-right:auto; }
.section-head h2{ font-size:2rem; }

.feature-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:26px; }
.feature-card{
  background:var(--white); border:1px solid var(--line); border-radius:var(--radius-md);
  padding:26px 24px; box-shadow:var(--shadow-sm);
}
.feature-icon{
  width:44px; height:44px; border-radius:10px; background:var(--sage-100);
  display:flex; align-items:center; justify-content:center; margin-bottom:16px; color:var(--forest-700);
}
.feature-card h3{ font-size:1.08rem; margin-bottom:.4em; }
.feature-card p{ font-size:.92rem; margin-bottom:0; }

.mode-strip{
  display:grid; grid-template-columns:1fr 1fr; gap:24px; margin-top:8px;
}
.mode-card{
  border:1px solid var(--line); border-radius:var(--radius-md); padding:28px; background:var(--sage-100);
}
.mode-card h3{ display:flex; align-items:center; gap:10px; }
.mode-badge{
  font-size:.66rem; font-weight:700; letter-spacing:.06em; text-transform:uppercase;
  background:var(--forest-800); color:var(--cream-50); padding:4px 9px; border-radius:999px;
}

.cta-band{
  background:var(--forest-900); color:var(--cream-50); border-radius:var(--radius-lg);
  padding:48px 44px; display:flex; align-items:center; justify-content:space-between; gap:32px; flex-wrap:wrap;
}
.cta-band h2{ color:var(--cream-50); font-size:1.7rem; margin-bottom:.3em; }
.cta-band p{ color:var(--sage-200); margin-bottom:0; }

/* ---------- Footer ---------- */
.site-footer{ background:var(--forest-900); color:var(--sage-200); padding:52px 0 26px; margin-top:40px; }
.footer-grid{ display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:36px; padding-bottom:34px; }
.footer-grid h4{ color:var(--cream-100); font-family:var(--font-body); font-size:.82rem; text-transform:uppercase; letter-spacing:.07em; margin-bottom:14px; }
.footer-grid a{ display:block; text-decoration:none; color:var(--sage-200); font-size:.9rem; padding:5px 0; }
.footer-grid a:hover{ color:var(--cream-50); }
.footer-grid p{ color:var(--sage-200); font-size:.88rem; }
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.12); padding-top:22px;
  display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px;
  font-size:.8rem; color:var(--sage-200);
}

/* =========================================================
   PRODUCT PAGE
   ========================================================= */
.product-header{ padding:32px 0 8px; }
.product-title{ font-size:2.1rem; margin-bottom:.25em; }
.product-meta{ display:flex; align-items:center; gap:14px; flex-wrap:wrap; margin-bottom:6px; }
.rating{ color:var(--terracotta-600); font-size:.95rem; letter-spacing:1px; }
.rating-count{ color:var(--ink-500); font-size:.86rem; }
.sku-line{ color:var(--ink-500); font-size:.86rem; }

.product-layout{
  display:grid; grid-template-columns:1fr 1.15fr; gap:48px; padding:24px 0 72px; align-items:start;
}
.gallery-main{
  border-radius:var(--radius-lg); overflow:hidden; box-shadow:var(--shadow-md); aspect-ratio:4/3.1;
}
.gallery-thumbs{ display:flex; gap:10px; margin-top:12px; }
.gallery-thumbs div{
  flex:1; aspect-ratio:1/1; border-radius:8px; overflow:hidden; cursor:pointer; border:2px solid transparent;
}
.gallery-thumbs div.is-active{ border-color:var(--terracotta-600); }
.product-desc{ margin-top:28px; }
.product-desc h3{ font-size:1.15rem; }
.product-desc ul{ margin:0 0 0 1.1em; padding:0; }
.product-desc li{ margin-bottom:6px; color:var(--ink-700); font-size:.95rem; }

.price-row{ display:flex; align-items:baseline; gap:10px; margin:10px 0 18px; }
.price-current{ font-family:var(--font-display); font-size:1.7rem; color:var(--forest-900); font-weight:700; }
.price-unit{ color:var(--ink-500); font-size:.9rem; }

/* ---- Booking box ---- */
.booking-box{
  border:1px solid var(--line); border-radius:var(--radius-lg); background:var(--white);
  box-shadow:var(--shadow-md); padding:26px 26px 24px; position:sticky; top:96px;
}
.booking-box h2{ font-size:1.2rem; margin-bottom:4px; }
.booking-sub{ font-size:.85rem; color:var(--ink-500); margin-bottom:18px; }

.mode-toggle{ display:flex; gap:8px; background:var(--sage-100); border-radius:9px; padding:4px; margin-bottom:18px; }
.mode-toggle button{
  flex:1; border:none; background:transparent; padding:9px 8px; border-radius:7px; font-weight:700; font-size:.84rem;
  color:var(--ink-500); cursor:pointer;
}
.mode-toggle button.is-active{ background:var(--white); color:var(--forest-800); box-shadow:var(--shadow-sm); }

.cal-head{ display:flex; align-items:center; justify-content:space-between; margin-bottom:10px; }
.cal-head .cal-month{ font-weight:700; color:var(--forest-900); font-size:.98rem; }
.cal-nav{ display:flex; gap:6px; }
.cal-nav button{
  width:32px; height:32px; border-radius:8px; border:1px solid var(--line); background:var(--white);
  cursor:pointer; display:flex; align-items:center; justify-content:center; color:var(--forest-800);
  font-size:.95rem; line-height:1;
}
.cal-nav button:hover{ background:var(--sage-100); }
.cal-nav button:disabled{ opacity:.35; cursor:not-allowed; }

.cal-grid{ display:grid; grid-template-columns:repeat(7,1fr); gap:4px; }
.cal-dow{ text-align:center; font-size:.68rem; font-weight:700; color:var(--ink-500); text-transform:uppercase; padding-bottom:6px; letter-spacing:.03em; }

.cal-day{
  position:relative; aspect-ratio:1/1; display:flex; align-items:center; justify-content:center;
  font-size:.83rem; border-radius:7px; cursor:pointer; border:1px solid transparent; background:var(--cream-50);
  color:var(--ink-900); user-select:none;
}
.cal-day:hover:not(.is-disabled):not(.is-empty){ background:var(--sage-200); }
.cal-day.is-empty{ background:transparent; cursor:default; }
.cal-day.is-disabled{
  color:var(--ink-300); cursor:not-allowed; background:repeating-linear-gradient(135deg, var(--cream-100), var(--cream-100) 4px, var(--cream-200) 4px, var(--cream-200) 8px);
  text-decoration:line-through;
}
.cal-day.is-today{ box-shadow:inset 0 0 0 1px var(--terracotta-600); font-weight:700; }
.cal-day.is-selected-start,.cal-day.is-selected-end{ background:var(--terracotta-600); color:var(--white); font-weight:700; }
.cal-day.is-in-range{ background:var(--terracotta-100); color:var(--forest-900); border-radius:0; }
.cal-day.is-selected-start{ border-top-left-radius:7px; border-bottom-left-radius:7px; }
.cal-day.is-selected-end{ border-top-right-radius:7px; border-bottom-right-radius:7px; }
.cal-day.is-weekend-night::after{
  content:""; position:absolute; bottom:4px; width:4px; height:4px; border-radius:50%; background:var(--terracotta-600);
}
.cal-day.is-selected-start.is-weekend-night::after,.cal-day.is-selected-end.is-weekend-night::after,.cal-day.is-in-range.is-weekend-night::after{ background:var(--forest-900); }

.cal-legend{ display:flex; flex-wrap:wrap; gap:12px 16px; margin:14px 0 4px; font-size:.72rem; color:var(--ink-500); }
.cal-legend span{ display:inline-flex; align-items:center; gap:6px; }
.legend-swatch{ width:11px; height:11px; border-radius:3px; display:inline-block; }
.legend-swatch.blocked{ background:repeating-linear-gradient(135deg, var(--cream-100), var(--cream-100) 3px, var(--cream-200) 3px, var(--cream-200) 6px); border:1px solid var(--line); }
.legend-swatch.selected{ background:var(--terracotta-600); }
.legend-swatch.range{ background:var(--terracotta-100); border:1px solid var(--terracotta-600); }
.legend-swatch.weekend{ background:var(--white); border:1px solid var(--line); position:relative; }
.legend-swatch.weekend::after{ content:""; position:absolute; bottom:1px; right:1px; width:4px; height:4px; border-radius:50%; background:var(--terracotta-600); }

.timeslot-wrap{ display:none; }
.timeslot-wrap.is-active{ display:block; }
.timeslot-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:8px; margin-top:12px; }
.timeslot-btn{
  border:1px solid var(--line); background:var(--white); border-radius:8px; padding:9px 6px; font-size:.82rem;
  font-weight:600; color:var(--ink-700); cursor:pointer;
}
.timeslot-btn:hover:not(:disabled){ border-color:var(--terracotta-600); }
.timeslot-btn.is-active{ background:var(--terracotta-600); color:var(--white); border-color:var(--terracotta-600); }
.timeslot-btn:disabled{ opacity:.4; cursor:not-allowed; text-decoration:line-through; }

.form-msg{
  margin-top:14px; padding:11px 13px; border-radius:8px; font-size:.85rem; display:none; align-items:flex-start; gap:8px;
}
.form-msg.is-visible{ display:flex; }
.form-msg.is-error{ background:var(--red-100); color:var(--red-600); }
.form-msg.is-warn{ background:var(--amber-100); color:var(--amber-600); }
.form-msg.is-ok{ background:var(--green-100); color:var(--green-600); }

.hold-note{
  display:flex; align-items:center; gap:8px; font-size:.78rem; color:var(--ink-500);
  background:var(--sage-100); border-radius:8px; padding:9px 11px; margin-top:16px;
}
.hold-note .dot{ width:7px; height:7px; border-radius:50%; background:var(--forest-600); flex-shrink:0; }
.hold-timer{ font-variant-numeric:tabular-nums; font-weight:700; color:var(--forest-800); }

.price-breakdown{ margin-top:18px; border-top:1px dashed var(--line); padding-top:16px; }
.price-line{ display:flex; justify-content:space-between; font-size:.88rem; color:var(--ink-700); padding:4px 0; }
.price-line.is-muted{ color:var(--ink-500); font-size:.82rem; }
.price-line.is-total{ border-top:1px solid var(--line); margin-top:8px; padding-top:12px; font-size:1.05rem; font-weight:700; color:var(--forest-900); }
.price-empty{ font-size:.85rem; color:var(--ink-500); padding:6px 0; }

.stay-summary{
  display:flex; gap:14px; margin-top:16px; background:var(--sage-100); border-radius:9px; padding:12px 14px; font-size:.84rem;
}
.stay-summary div strong{ display:block; color:var(--forest-900); font-size:.92rem; }
.stay-summary div span{ color:var(--ink-500); font-size:.72rem; text-transform:uppercase; letter-spacing:.03em; }

.rules-list{ margin-top:20px; padding-top:16px; border-top:1px solid var(--line); font-size:.78rem; color:var(--ink-500); display:grid; gap:6px; }
.rules-list li{ list-style:none; display:flex; gap:7px; }
.rules-list li::before{ content:"✓"; color:var(--forest-600); font-weight:700; }

/* Confirmation card */
.confirm-card{
  display:none; margin-top:18px; border:1px solid var(--forest-600); background:var(--green-100);
  border-radius:var(--radius-md); padding:18px 18px 16px;
}
.confirm-card.is-visible{ display:block; }
.confirm-card h4{ color:var(--forest-900); font-size:1rem; display:flex; align-items:center; gap:8px; margin-bottom:10px; }
.confirm-card .check{
  width:22px; height:22px; border-radius:50%; background:var(--forest-700); color:#fff; display:inline-flex;
  align-items:center; justify-content:center; font-size:.75rem; flex-shrink:0;
}
.confirm-row{ display:flex; justify-content:space-between; font-size:.85rem; color:var(--ink-700); padding:2px 0; }
.confirm-row strong{ color:var(--forest-900); }

/* ---------- Reviews / trust ---------- */
.trust-row{ display:flex; gap:34px; flex-wrap:wrap; padding:36px 0; border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.trust-item{ display:flex; align-items:center; gap:12px; flex:1; min-width:200px; }
.trust-icon{ width:40px; height:40px; border-radius:9px; background:var(--sage-100); color:var(--forest-700); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.trust-item strong{ display:block; font-size:.92rem; color:var(--forest-900); }
.trust-item span{ font-size:.78rem; color:var(--ink-500); }

/* =========================================================
   ADMIN DASHBOARD
   ========================================================= */
.admin-shell{ display:grid; grid-template-columns:230px 1fr; min-height:calc(100vh - 260px); }
.admin-side{ background:var(--forest-900); color:var(--sage-200); padding:26px 18px; }
.admin-side .brand{ margin-bottom:26px; padding:0 6px; }
.admin-side .brand-name{ color:var(--cream-50); font-size:1.08rem; }
.admin-nav a{
  display:flex; align-items:center; gap:10px; text-decoration:none; color:var(--sage-200); font-size:.88rem;
  font-weight:600; padding:10px 12px; border-radius:8px; margin-bottom:2px;
}
.admin-nav a:hover{ background:rgba(255,255,255,.06); color:var(--cream-50); }
.admin-nav a.is-active{ background:var(--terracotta-600); color:var(--white); }
.admin-nav .nav-group-label{ font-size:.66rem; text-transform:uppercase; letter-spacing:.08em; color:var(--sage-200); opacity:.6; margin:18px 12px 8px; }

.admin-main{ padding:32px 36px 60px; background:var(--cream-50); }
.admin-topline{ display:flex; align-items:center; justify-content:space-between; margin-bottom:22px; flex-wrap:wrap; gap:12px; }
.admin-topline h1{ font-size:1.55rem; margin-bottom:2px; }
.admin-topline p{ margin:0; font-size:.86rem; color:var(--ink-500); }

.stat-cards{ display:grid; grid-template-columns:repeat(4,1fr); gap:16px; margin-bottom:26px; }
.stat-card{ background:var(--white); border:1px solid var(--line); border-radius:var(--radius-md); padding:16px 18px; }
.stat-card span{ font-size:.72rem; text-transform:uppercase; letter-spacing:.04em; color:var(--ink-500); }
.stat-card strong{ display:block; font-family:var(--font-display); font-size:1.55rem; color:var(--forest-900); margin-top:4px; }

.admin-panel{ background:var(--white); border:1px solid var(--line); border-radius:var(--radius-lg); box-shadow:var(--shadow-sm); }
.admin-toolbar{ display:flex; align-items:center; gap:12px; padding:18px 20px; border-bottom:1px solid var(--line); flex-wrap:wrap; }
.admin-toolbar .field{ display:flex; flex-direction:column; gap:5px; }
.admin-toolbar label{ font-size:.68rem; text-transform:uppercase; letter-spacing:.05em; color:var(--ink-500); font-weight:700; }
.admin-toolbar select, .admin-toolbar input[type="search"]{
  padding:8px 12px; border:1px solid var(--line); border-radius:8px; font-size:.86rem; background:var(--white); color:var(--ink-900);
  min-width:170px;
}
.admin-toolbar select:focus, .admin-toolbar input:focus{ outline:2px solid var(--forest-600); outline-offset:1px; }
.toolbar-count{ margin-left:auto; font-size:.82rem; color:var(--ink-500); align-self:flex-end; padding-bottom:8px; }
.toolbar-reset{ align-self:flex-end; }

.table-wrap{ overflow-x:auto; }
table.bookings-table{ width:100%; border-collapse:collapse; min-width:900px; }
.bookings-table th{
  text-align:left; font-size:.7rem; text-transform:uppercase; letter-spacing:.05em; color:var(--ink-500);
  padding:12px 16px; border-bottom:1px solid var(--line); background:var(--cream-100); white-space:nowrap;
}
.bookings-table td{ padding:14px 16px; border-bottom:1px solid var(--line); font-size:.87rem; color:var(--ink-700); vertical-align:middle; }
.bookings-table tr:last-child td{ border-bottom:none; }
.bookings-table tr.is-hidden{ display:none; }
.bookings-table tr:hover td{ background:var(--cream-100); }

.cell-product{ display:flex; align-items:center; gap:10px; }
.product-swatch{ width:34px; height:34px; border-radius:8px; flex-shrink:0; background:var(--sage-200); display:flex; align-items:center; justify-content:center; color:var(--forest-700); font-size:1rem; }
.cell-product strong{ display:block; color:var(--forest-900); font-size:.87rem; }
.cell-product span{ font-size:.76rem; color:var(--ink-500); }

.badge{ display:inline-flex; align-items:center; gap:5px; padding:4px 10px; border-radius:999px; font-size:.72rem; font-weight:700; text-transform:capitalize; }
.badge::before{ content:""; width:6px; height:6px; border-radius:50%; }
.badge-confirmed{ background:var(--green-100); color:var(--green-600); }
.badge-confirmed::before{ background:var(--green-600); }
.badge-pending{ background:var(--amber-100); color:var(--amber-600); }
.badge-pending::before{ background:var(--amber-600); }
.badge-cancelled{ background:var(--red-100); color:var(--red-600); }
.badge-cancelled::before{ background:var(--red-600); }

.order-link{ color:var(--forest-700); font-weight:700; text-decoration:none; }
.order-link:hover{ text-decoration:underline; }

.row-action{
  border:1px solid var(--line); background:var(--white); color:var(--ink-700); font-size:.78rem; font-weight:700;
  padding:7px 12px; border-radius:7px; cursor:pointer;
}
.row-action:hover{ border-color:var(--red-600); color:var(--red-600); background:var(--red-100); }
.row-action:disabled{ opacity:.4; cursor:not-allowed; }
.row-action:disabled:hover{ border-color:var(--line); color:var(--ink-700); background:var(--white); }

.admin-empty{ text-align:center; padding:60px 20px; color:var(--ink-500); font-size:.9rem; display:none; }
.admin-empty.is-visible{ display:block; }

.admin-toast{
  position:fixed; bottom:24px; right:24px; background:var(--forest-900); color:var(--cream-50);
  padding:13px 18px; border-radius:9px; box-shadow:var(--shadow-lg); font-size:.86rem; max-width:320px;
  display:flex; gap:10px; align-items:flex-start; transform:translateY(20px); opacity:0; pointer-events:none;
  transition:transform .25s ease, opacity .25s ease; z-index:200;
}
.admin-toast.is-visible{ transform:translateY(0); opacity:1; }
.admin-toast .check{ width:18px; height:18px; border-radius:50%; background:var(--terracotta-600); flex-shrink:0; display:flex; align-items:center; justify-content:center; font-size:.65rem; margin-top:1px; }

/* ---------- Responsive ---------- */
@media (max-width:980px){
  .hero .container{ grid-template-columns:1fr; }
  .hero-actions{ margin-bottom:8px; }
  .feature-grid{ grid-template-columns:repeat(2,1fr); }
  .product-layout{ grid-template-columns:1fr; }
  .booking-box{ position:static; }
  .footer-grid{ grid-template-columns:1fr 1fr; }
  .admin-shell{ grid-template-columns:1fr; }
  .admin-side{ display:none; }
  .stat-cards{ grid-template-columns:repeat(2,1fr); }
  .mode-strip{ grid-template-columns:1fr; }
}
@media (max-width:640px){
  .main-nav{
    position:absolute; top:100%; left:0; right:0; background:var(--cream-50); border-bottom:1px solid var(--line);
    flex-direction:column; align-items:stretch; padding:10px 20px 18px; gap:2px; display:none; box-shadow:var(--shadow-md);
  }
  .main-nav.is-open{ display:flex; }
  .main-nav a{ padding:11px 4px; border-bottom:1px solid var(--line); }
  .nav-cta{ margin-top:8px; text-align:center; }
  .nav-toggle{ display:flex; }
  .hero{ padding:44px 0 40px; }
  .hero h1{ font-size:2rem; }
  .feature-grid{ grid-template-columns:1fr; }
  .footer-grid{ grid-template-columns:1fr; gap:26px; }
  .cta-band{ padding:32px 24px; }
  .admin-main{ padding:22px 16px 40px; }
  .stat-cards{ grid-template-columns:1fr 1fr; }
  .admin-toolbar{ flex-direction:column; align-items:stretch; }
  .toolbar-count{ margin-left:0; }
}
.admin-nav a[href="#"]{ opacity:.4; cursor:not-allowed; pointer-events:none; }
