/* ============================================================
   Order / Delivery-Takeout System - shared styles
   Uses CSS variables defined in style.css :root
   ============================================================ */

.proto-banner{
  background:#fff8e8;
  border:1px solid #e8cf8a;
  color:#7a6222;
  font-size:13px;
  text-align:center;
  padding:10px 16px;
  line-height:1.6;
}

/* Category tabs */
.cat-tabs{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  justify-content:center;
  margin:0 0 36px;
}
.cat-tab{
  border:1px solid var(--brown);
  background:transparent;
  color:var(--brown);
  padding:9px 20px;
  border-radius:999px;
  font-size:14px;
  cursor:pointer;
  transition:background .2s, color .2s;
  font-family:inherit;
}
.cat-tab.active, .cat-tab:hover{
  background:var(--terracotta);
  border-color:var(--terracotta);
  color:#fff;
}

/* Product grid */
.product-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
}
.product-card{
  background:#fff;
  border:1px solid rgba(74,55,40,0.12);
  border-radius:14px;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  transition:transform .2s, box-shadow .2s;
}
.product-card:hover{ transform:translateY(-3px); box-shadow:0 12px 24px rgba(74,55,40,0.12); }
.product-card .thumb{
  height:150px;
  background:linear-gradient(135deg,var(--cream-deep),var(--cream));
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--terracotta-deep);
  font-size:13px;
  letter-spacing:.05em;
  overflow:hidden;
}
.product-card .thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.modal-photo{
  margin:-26px -28px 18px;
  height:200px;
  overflow:hidden;
  border-radius:16px 16px 0 0;
}
.modal-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.product-card .body{ padding:16px 18px 18px; display:flex; flex-direction:column; gap:8px; flex:1; }
.product-card h3{ font-size:17px; color:var(--brown); }
.product-card .cat-label{ font-size:11px; color:var(--terracotta-deep); letter-spacing:.08em; }
.product-card .desc{ font-size:12.5px; color:var(--brown-soft); line-height:1.6; flex:1; }
.product-card .price-row{ display:flex; align-items:center; justify-content:space-between; margin-top:6px; }
.product-card .price{ font-size:16px; font-weight:700; color:var(--brown); }
.product-card .sold-out{ color:#a33; font-size:12px; font-weight:700; }
.product-card button.add-btn{
  border:0;
  background:var(--terracotta);
  color:#fff;
  padding:9px 0;
  border-radius:8px;
  font-size:14px;
  cursor:pointer;
  font-family:inherit;
}
.product-card button.add-btn:disabled{ background:#ccc; cursor:not-allowed; }

/* Floating cart button */
.cart-fab{
  position:fixed;
  right:24px;
  bottom:24px;
  z-index:250;
  background:var(--brown);
  color:#fff;
  border:0;
  border-radius:999px;
  padding:14px 22px;
  display:flex;
  align-items:center;
  gap:10px;
  font-size:14px;
  cursor:pointer;
  box-shadow:0 10px 24px rgba(0,0,0,0.25);
  font-family:inherit;
}
.cart-fab .badge{
  background:var(--terracotta);
  color:#fff;
  border-radius:999px;
  min-width:22px;
  height:22px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:12px;
  padding:0 6px;
}

/* Cart / modal overlay */
.overlay{
  position:fixed; inset:0;
  background:rgba(30,20,12,0.45);
  display:none;
  z-index:300;
}
.overlay.open{ display:block; }

.panel{
  position:fixed;
  top:0; right:0;
  height:100%;
  width:min(420px, 92vw);
  background:#fff;
  z-index:310;
  transform:translateX(100%);
  transition:transform .25s ease;
  display:flex;
  flex-direction:column;
  box-shadow:-12px 0 30px rgba(0,0,0,0.15);
}
.panel.open{ transform:translateX(0); }
.panel-head{
  padding:20px 22px;
  border-bottom:1px solid rgba(74,55,40,0.1);
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.panel-head h3{ font-size:18px; color:var(--brown); }
.panel-close{ background:none; border:0; font-size:22px; cursor:pointer; color:var(--brown-soft); line-height:1; }
.panel-body{ padding:18px 22px; overflow-y:auto; flex:1; }
.panel-foot{ padding:18px 22px; border-top:1px solid rgba(74,55,40,0.1); }

.cart-line{
  display:flex;
  gap:12px;
  padding:12px 0;
  border-bottom:1px solid rgba(74,55,40,0.08);
}
.cart-line .info{ flex:1; }
.cart-line .name{ font-size:14px; color:var(--brown); font-weight:700; }
.cart-line .opts{ font-size:12px; color:var(--brown-soft); margin-top:2px; }
.cart-line .qty-row{ display:flex; align-items:center; gap:8px; margin-top:8px; }
.qty-btn{
  width:26px; height:26px; border-radius:6px; border:1px solid var(--brown);
  background:#fff; color:var(--brown); cursor:pointer; font-size:14px; line-height:1;
}
.cart-line .line-total{ font-size:14px; font-weight:700; color:var(--brown); white-space:nowrap; }
.cart-remove{ background:none; border:0; color:#a33; font-size:12px; cursor:pointer; margin-top:6px; }

.cart-empty{ text-align:center; color:var(--brown-soft); padding:60px 10px; font-size:14px; }

.cart-total-row{
  display:flex; justify-content:space-between; align-items:center;
  font-size:16px; color:var(--brown); margin-bottom:14px;
}
.cart-total-row strong{ font-size:20px; }

/* Product detail modal */
.modal{
  position:fixed;
  inset:0;
  z-index:320;
  display:none;
  align-items:center;
  justify-content:center;
  padding:20px;
}
.modal.open{ display:flex; }
.modal-card{
  background:#fff;
  border-radius:16px;
  max-width:480px;
  width:100%;
  max-height:88vh;
  overflow-y:auto;
  padding:26px 28px;
}
.modal-card h3{ font-size:20px; color:var(--brown); margin-bottom:6px; }
.modal-card .cat-label{ font-size:11px; color:var(--terracotta-deep); letter-spacing:.08em; }
.modal-card .desc{ font-size:13px; color:var(--brown-soft); margin:12px 0; line-height:1.7; }
.modal-card .price{ font-size:20px; font-weight:700; color:var(--brown); margin-bottom:16px; }
.opt-group{ margin-bottom:18px; }
.opt-group h4{ font-size:13px; color:var(--brown); margin-bottom:8px; }
.opt-choice{
  display:flex; align-items:center; justify-content:space-between;
  border:1px solid rgba(74,55,40,0.15);
  border-radius:8px;
  padding:9px 14px;
  margin-bottom:8px;
  cursor:pointer;
  font-size:13.5px;
  color:var(--brown);
}
.opt-choice input{ margin-right:8px; }
.qty-select-row{ display:flex; align-items:center; justify-content:space-between; margin:18px 0; }
.qty-select-row .qty-row{ display:flex; align-items:center; gap:10px; }
.qty-select-row .qty-num{ font-size:16px; min-width:24px; text-align:center; }
.modal-actions{ display:flex; gap:12px; margin-top:8px; }
.modal-actions button{ flex:1; }
.modal-close-x{ float:right; background:none; border:0; font-size:20px; cursor:pointer; color:var(--brown-soft); }

/* Stepper (checkout) */
.stepper{
  display:flex;
  justify-content:center;
  gap:6px;
  flex-wrap:wrap;
  margin-bottom:44px;
}
.stepper .step{
  display:flex;
  align-items:center;
  gap:8px;
  font-size:12.5px;
  color:var(--brown-soft);
  padding:8px 14px;
  border-radius:999px;
  background:var(--cream-deep);
}
.stepper .step.active{ background:var(--terracotta); color:#fff; font-weight:700; }
.stepper .step.done{ background:var(--brown); color:#fff; }

.checkout-layout{
  display:grid;
  grid-template-columns:1.6fr 1fr;
  gap:40px;
  align-items:start;
}
.checkout-step{ display:none; }
.checkout-step.active{ display:block; }

.choice-card{
  border:2px solid rgba(74,55,40,0.15);
  border-radius:12px;
  padding:20px;
  margin-bottom:14px;
  cursor:pointer;
  transition:border-color .2s;
}
.choice-card.selected{ border-color:var(--terracotta); background:#fff8f2; }
.choice-card.disabled{ opacity:.55; cursor:not-allowed; }
.choice-card h4{ font-size:16px; color:var(--brown); margin-bottom:6px; }
.choice-card p{ font-size:13px; color:var(--brown-soft); }
.choice-card .notice{ margin-top:10px; font-size:12.5px; color:#a33; }
.choice-card .alt-links{ display:flex; gap:10px; margin-top:10px; flex-wrap:wrap; }
.choice-card .alt-links a{
  font-size:12.5px; border:1px solid var(--brown); color:var(--brown);
  padding:6px 12px; border-radius:999px; text-decoration:none;
}

.form-row{ margin-bottom:18px; }
.form-row label{ display:block; font-size:13px; color:var(--brown); margin-bottom:6px; font-weight:700; }
.form-row input[type="text"], .form-row input[type="tel"], .form-row input[type="date"],
.form-row input[type="number"], .form-row input[type="email"], .form-row input[type="password"],
.form-row textarea, .form-row select{
  width:100%;
  padding:11px 14px;
  border:1px solid rgba(74,55,40,0.25);
  border-radius:8px;
  font-family:inherit;
  font-size:14px;
  color:var(--brown);
  background:#fff;
}
.form-row textarea{ resize:vertical; min-height:70px; }
.form-hint{ font-size:12px; color:var(--brown-soft); margin-top:6px; }
.char-counter{ font-size:11.5px; color:var(--brown-soft); }
.form-error{ font-size:12.5px; color:#a33; margin:-8px 0 14px; }
.req-mark{
  font-size:11px;
  font-weight:700;
  color:#a33;
  background:rgba(163,51,51,0.08);
  border-radius:4px;
  padding:1px 6px;
  margin-left:8px;
  vertical-align:1px;
}

.member-guest-row{ display:grid; grid-template-columns:1fr 1fr; gap:16px; }

.auth-tabs{ display:flex; gap:8px; margin-bottom:18px; }
.auth-tab{
  flex:1; padding:10px 14px; border:1px solid rgba(74,55,40,0.25); border-radius:8px;
  background:#fff; color:var(--brown-soft); font-family:inherit; font-size:14px; font-weight:700; cursor:pointer;
}
.auth-tab.active{ background:var(--brown); color:#fff; border-color:var(--brown); }
.member-logged-in{
  border:2px solid var(--terracotta); background:#fff8f2; border-radius:12px;
  padding:16px 20px; margin-top:16px;
}
.member-logged-in p{ font-size:14px; color:var(--brown); margin-bottom:10px; }

.pay-option{
  border:2px solid rgba(74,55,40,0.15);
  border-radius:12px;
  padding:18px 20px;
  margin-bottom:14px;
  cursor:pointer;
}
.pay-option.selected{ border-color:var(--terracotta); background:#fff8f2; }
.pay-option.disabled{ opacity:.5; cursor:not-allowed; }
.pay-option h4{ font-size:15px; color:var(--brown); }
.pay-option p{ font-size:12.5px; color:var(--brown-soft); margin-top:4px; }
.card-mock{ display:grid; grid-template-columns:1fr 1fr; gap:10px; margin-top:14px; }
.card-mock input{ grid-column:span 2; }
.card-mock input:disabled{ background:#f4f4f4; color:#999; }

.order-summary-box{
  background:var(--cream-deep);
  border-radius:14px;
  padding:22px 24px;
  position:sticky;
  top:100px;
}
.order-summary-box h4{ font-size:15px; color:var(--brown); margin-bottom:14px; }
.order-summary-box .line{ display:flex; justify-content:space-between; font-size:13px; color:var(--brown-soft); margin-bottom:8px; }
.order-summary-box .total{ display:flex; justify-content:space-between; font-size:17px; color:var(--brown); font-weight:700; margin-top:14px; padding-top:14px; border-top:1px solid rgba(74,55,40,0.15); }

/* Editable line items in the checkout order summary sidebar */
.summary-line{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:10px;
  margin-bottom:14px;
  padding-bottom:14px;
  border-bottom:1px dashed rgba(74,55,40,0.15);
}
.summary-line:last-child{ border-bottom:none; margin-bottom:8px; padding-bottom:0; }
.summary-line-name{ font-size:13px; color:var(--brown-soft); margin-bottom:6px; line-height:1.5; }
.summary-line-qtyrow{ display:flex; align-items:center; gap:8px; }
.summary-qty-btn{
  width:24px;
  height:24px;
  border-radius:50%;
  border:1px solid rgba(74,55,40,0.3);
  background:#fff;
  color:var(--brown);
  font-size:13px;
  cursor:pointer;
  line-height:1;
  font-family:inherit;
  flex-shrink:0;
}
.summary-qty-num{ font-size:13px; color:var(--brown); min-width:16px; text-align:center; }
.summary-remove-btn{
  border:0;
  background:none;
  color:#a33;
  font-size:12px;
  cursor:pointer;
  text-decoration:underline;
  margin-left:4px;
  font-family:inherit;
}
.summary-line-total{ font-size:13px; color:var(--brown); font-weight:700; white-space:nowrap; }

.step-actions{ display:flex; justify-content:space-between; margin-top:28px; gap:14px; }

/* Toggle switch */
.toggle-switch{ position:relative; display:inline-block; width:52px; height:28px; flex-shrink:0; }
.toggle-switch input{ opacity:0; width:0; height:0; }
.toggle-slider{
  position:absolute; cursor:pointer; inset:0;
  background:#ccc; border-radius:999px; transition:.2s;
}
.toggle-slider::before{
  content:""; position:absolute; height:22px; width:22px; left:3px; bottom:3px;
  background:#fff; border-radius:50%; transition:.2s;
}
.toggle-switch input:checked + .toggle-slider{ background:var(--terracotta); }
.toggle-switch input:checked + .toggle-slider::before{ transform:translateX(24px); }

/* Admin layout */
.admin-shell{ display:grid; grid-template-columns:220px 1fr; min-height:100vh; }
.admin-side{
  background:var(--brown);
  color:#f2e6d3;
  padding:28px 18px;
}
.admin-side .brand{ font-size:15px; font-weight:700; margin-bottom:30px; display:block; color:#fff; }
.admin-side nav a{
  display:block;
  padding:11px 14px;
  border-radius:8px;
  color:#f2e6d3;
  font-size:13.5px;
  text-decoration:none;
  margin-bottom:4px;
}
.admin-side nav a.active, .admin-side nav a:hover{ background:rgba(255,255,255,0.14); color:#fff; }
.admin-main{ padding:36px 40px; background:var(--cream); }
.admin-tab{ display:none; }
.admin-tab.active{ display:block; }
.admin-head{ display:flex; justify-content:space-between; align-items:center; margin-bottom:24px; }
.admin-head h2{ font-size:22px; color:var(--brown); }

.stat-grid{ display:grid; grid-template-columns:repeat(auto-fit, minmax(180px, 1fr)); gap:18px; margin-bottom:32px; }
.stat-card{ background:#fff; border-radius:12px; padding:20px; border:1px solid rgba(74,55,40,0.1); }
.stat-card .num{ font-size:26px; font-weight:700; color:var(--brown); }
.stat-card .label{ font-size:12.5px; color:var(--brown-soft); margin-top:4px; }

.admin-table{ width:100%; border-collapse:collapse; background:#fff; border-radius:10px; overflow:hidden; }
.admin-table th, .admin-table td{ padding:12px 14px; font-size:13px; border-bottom:1px solid rgba(74,55,40,0.08); text-align:left; }
.admin-table th{ background:var(--cream-deep); color:var(--brown); font-weight:700; }
.admin-table input, .admin-table select{
  width:100%; padding:6px 8px; border:1px solid rgba(74,55,40,0.2); border-radius:6px; font-size:13px; font-family:inherit;
}
.admin-card{ background:#fff; border:1px solid rgba(74,55,40,0.1); border-radius:12px; padding:24px; margin-bottom:20px; }
.admin-card h3{ font-size:15px; color:var(--brown); margin-bottom:16px; }
.setting-row{ display:flex; align-items:center; justify-content:space-between; padding:14px 0; border-bottom:1px solid rgba(74,55,40,0.08); }
.setting-row:last-child{ border-bottom:0; }
.setting-row .label{ font-size:14px; color:var(--brown); }
.setting-row .desc{ font-size:12px; color:var(--brown-soft); margin-top:3px; }
.setting-row input[type="number"], .setting-row input[type="time"]{
  width:100px; padding:8px 10px; border:1px solid rgba(74,55,40,0.25); border-radius:8px; font-family:inherit;
}
.setting-row input[type="text"]{
  padding:8px 10px; border:1px solid rgba(74,55,40,0.25); border-radius:8px; font-family:inherit; font-size:13px;
}
.btn-mini{
  border:1px solid var(--brown); background:#fff; color:var(--brown);
  border-radius:6px; padding:6px 12px; font-size:12px; cursor:pointer; font-family:inherit;
}
.btn-mini.danger{ border-color:#a33; color:#a33; }
.status-pill{ font-size:11px; padding:3px 10px; border-radius:999px; }
.status-pill.on{ background:#e5f3e5; color:#2a7a2a; }
.status-pill.off{ background:#f3e5e5; color:#a33; }

.status-btns{ display:flex; flex-wrap:wrap; gap:5px; max-width:320px; }
.status-btn{
  border:1px solid rgba(74,55,40,0.25); background:#fff; color:var(--brown-soft);
  border-radius:999px; padding:6px 12px; font-size:12px; font-family:inherit; cursor:pointer;
  white-space:nowrap; transition:background .15s, color .15s, border-color .15s;
}
.status-btn:hover:not(.active):not(:disabled){ border-color:var(--brown); color:var(--brown); }
.status-btn.active{ background:var(--terracotta); border-color:var(--terracotta); color:#fff; font-weight:700; cursor:default; }
.status-btn.danger{ border-color:#a33; color:#a33; }
.status-btn.danger.active{ background:#a33; border-color:#a33; color:#fff; }
.status-btn:disabled{ opacity:.5; cursor:not-allowed; }

/* ---- Order tracker: progress bar + delivery map ---- */
.track-eta{
  display:inline-block;
  font-size:14px;
  color:var(--brown);
  background:#fff8f2;
  border:1px solid rgba(201,123,74,0.35);
  border-radius:999px;
  padding:8px 18px;
  margin-bottom:16px;
}
.track-eta strong{ color:var(--terracotta-deep); font-size:16px; }

.track-stepper{
  display:flex;
  flex-wrap:wrap;
  gap:0;
  margin:6px 0 4px;
}
.track-step{
  flex:1;
  min-width:90px;
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  position:relative;
  padding:0 4px;
}
.track-step::before{
  content:'';
  position:absolute;
  top:9px;
  left:-50%;
  width:100%;
  height:3px;
  background:rgba(74,55,40,0.15);
  z-index:0;
}
.track-step:first-child::before{ display:none; }
.track-step.done::before, .track-step.active::before{ background:var(--terracotta); }
.track-dot{
  width:20px; height:20px; border-radius:50%;
  background:#fff; border:3px solid rgba(74,55,40,0.2);
  z-index:1; margin-bottom:8px;
}
.track-step.done .track-dot{ background:var(--brown); border-color:var(--brown); }
.track-step.active .track-dot{ background:var(--terracotta); border-color:var(--terracotta); box-shadow:0 0 0 4px rgba(201,123,74,0.2); }
.track-label{ font-size:11.5px; color:var(--brown-soft); }
.track-step.active .track-label, .track-step.done .track-label{ color:var(--brown); font-weight:700; }

.track-cancelled{
  padding:14px 16px; border-radius:10px; background:#f3e5e5; color:#a33; font-size:13.5px;
}

.track-map{
  width:100%;
  height:440px;
  border-radius:12px;
  overflow:hidden;
  margin-top:18px;
  background:#f4ece2;
}
@media (max-width:640px){
  .track-map{ height:300px; }
}

.track-detail-row td{ padding:0 0 20px; border-top:none; }
.track-detail{ padding:16px; background:#fff8f2; border-radius:12px; }

.admin-detail-row td{ padding:0 0 20px; border-top:none; }
.admin-detail{ padding:16px 20px; background:#fff8f2; border-radius:12px; }
.admin-detail input[type="time"]{
  padding:8px 10px; border:1px solid rgba(74,55,40,0.25); border-radius:8px; font-family:inherit; font-size:13px;
}

@media (max-width:960px){
  .checkout-layout{ grid-template-columns:1fr; }
  .order-summary-box{ position:static; }
  .product-grid{ grid-template-columns:repeat(2,1fr); }
  .admin-shell{ grid-template-columns:1fr; }
  .admin-side{ display:flex; align-items:center; gap:16px; padding:16px; overflow-x:auto; }
  .admin-side .brand{ margin-bottom:0; white-space:nowrap; }
  .admin-side nav{ display:flex; gap:6px; }
  .stat-grid{ grid-template-columns:repeat(2,1fr); }
}
@media (max-width:640px){
  .product-grid{ grid-template-columns:1fr; }
  .member-guest-row{ grid-template-columns:1fr; }
  .stat-grid{ grid-template-columns:1fr; }
  .track-step{ min-width:70px; }
  .track-label{ font-size:10.5px; }
}

/* Blog: reuse .product-grid/.product-card, add a few extras */
a.blog-card{ text-decoration:none; color:inherit; }
a.blog-card:hover{ text-decoration:none; }
.blog-card .blog-date{ font-size:11.5px; color:var(--brown-soft); }
.blog-card .blog-readmore{
  align-self:flex-start;
  margin-top:auto;
  font-size:12.5px;
  font-weight:700;
  color:var(--terracotta-deep);
  text-decoration:underline;
}
.blog-post-hero-img{
  width:100%;
  max-height:420px;
  object-fit:cover;
  border-radius:14px;
  margin-bottom:28px;
}
.blog-post-meta{
  display:flex;
  align-items:center;
  gap:14px;
  margin-bottom:8px;
  font-size:12.5px;
  color:var(--brown-soft);
}
.blog-post-intro{
  font-size:16px;
  font-weight:700;
  color:var(--brown);
  line-height:1.9;
  margin-bottom:24px;
}
.blog-post-recommend{
  background:#fff8f2;
  border:1px solid rgba(201,123,74,0.25);
  border-radius:14px;
  padding:20px 24px;
  margin:32px 0;
}
.blog-post-recommend h4{ font-size:15px; color:var(--terracotta-deep); margin-bottom:10px; }
.blog-post-recommend ul{ padding-left:1.2em; }
.blog-post-recommend li{ font-size:14px; line-height:1.8; color:var(--brown); }
.blog-post-social{ margin:20px 0; font-size:13px; color:var(--brown-soft); }
.blog-post-social a{ color:var(--terracotta-deep); font-weight:700; }
.blog-post-hashtags{ margin-top:6px; }
.blog-post-cta-row{ display:grid; grid-template-columns:1fr 1fr; gap:16px; margin-top:32px; }
.blog-post-cta{
  display:flex;
  flex-direction:column;
  gap:8px;
  padding:22px;
  border-radius:14px;
  background:#fff8f2;
  border:1px solid rgba(74,55,40,0.12);
  text-align:center;
}
.blog-post-cta h4{ font-size:14px; color:var(--brown); }
.blog-post-cta p{ color:var(--brown-soft); font-size:13.5px; line-height:1.8; }
.blog-post-cta p a{ color:var(--terracotta-deep); font-weight:700; text-decoration:underline; }
.blog-empty{
  text-align:center;
  color:var(--brown-soft);
  grid-column:1/-1;
  padding:60px 10px;
}
.blog-post-related{ margin:32px 0; }
.blog-post-related h4{ font-size:15px; color:var(--brown); margin-bottom:16px; }
.blog-post-related-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}
@media (max-width:640px){
  .blog-post-related-grid{ grid-template-columns:1fr; }
}

/* Blog list: category dropdown + pager */
.blog-filter-row{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  margin:0 0 32px;
  flex-wrap:wrap;
}
.blog-filter-label{ font-size:13px; color:var(--brown); font-weight:700; }
.blog-category-select{
  padding:9px 16px;
  border:1px solid var(--brown);
  border-radius:999px;
  font-size:14px;
  font-family:inherit;
  color:var(--brown);
  background:#fff;
  cursor:pointer;
}
.blog-pager{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:6px;
  flex-wrap:wrap;
  margin-top:36px;
}
.pager-btn{
  border:1px solid rgba(74,55,40,0.25);
  background:#fff;
  color:var(--brown);
  padding:8px 14px;
  border-radius:8px;
  font-size:13px;
  cursor:pointer;
  font-family:inherit;
}
.pager-btn.active{ background:var(--terracotta); border-color:var(--terracotta); color:#fff; }
.pager-btn:disabled{ opacity:.4; cursor:not-allowed; }

/* Blog home preview (index.html) */
.blog-home-slider{
  display:flex;
  gap:20px;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  padding-bottom:8px;
  margin:0 0 8px;
}
.blog-home-slider::-webkit-scrollbar{ height:6px; }
.blog-home-slider::-webkit-scrollbar-thumb{ background:rgba(74,55,40,0.2); border-radius:999px; }
.blog-home-card{
  scroll-snap-align:start;
  flex:0 0 calc((100% - 40px) / 3);
  min-width:220px;
  background:#fff;
  border:1px solid rgba(74,55,40,0.12);
  border-radius:14px;
  overflow:hidden;
  text-decoration:none;
  color:inherit;
  display:flex;
  flex-direction:column;
  transition:transform .2s, box-shadow .2s;
}
.blog-home-card:hover{ transform:translateY(-3px); box-shadow:0 12px 24px rgba(74,55,40,0.12); text-decoration:none; }
.blog-home-card .thumb{
  height:150px;
  background:linear-gradient(135deg,var(--cream-deep),var(--cream));
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--terracotta-deep);
  font-size:13px;
  overflow:hidden;
}
.blog-home-card .thumb img{ width:100%; height:100%; object-fit:cover; display:block; }
.blog-home-card .body{ padding:14px 16px 18px; display:flex; flex-direction:column; gap:6px; }
.blog-home-card .blog-date{ font-size:11px; color:var(--brown-soft); }
.blog-home-card h3{ font-size:14.5px; color:var(--brown); line-height:1.5; }
@media (max-width:960px){
  .blog-home-card{ flex:0 0 calc((100% - 20px) / 2); }
  .blog-post-cta-row{ grid-template-columns:1fr; }
}
@media (max-width:640px){
  .blog-home-card{ flex:0 0 78%; }
}

/* Reservation form */
.reservation-note{
  background:#fff8f2;
  border:1px solid rgba(201,123,74,0.3);
  border-radius:10px;
  padding:16px 18px;
  font-size:13px;
  color:var(--brown-soft);
  margin-bottom:24px;
  line-height:1.8;
}
.reservation-success{
  text-align:center;
  padding:40px 20px;
}
.reservation-success h3{ font-size:18px; color:var(--brown); margin-bottom:12px; }
