:root{
  --brand:#16a34a;
  --text:#0f172a;
  --muted:#64748b;
  --border:#e5e7eb;
  --footer-bg:#0b1220;
}

html, body{
  height:100%;
}

body{
  font-family:"Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:#f8fafc;
  min-height:100vh;
  display:flex;
  flex-direction:column;
  padding-top:var(--header-offset, 0px);
}

main{
  flex:1 0 auto;
}

/* Sticky footer (layout wrapper lives inside body) */
.page-shell{
  flex:1 0 auto;
  min-height:calc(100vh - var(--header-offset, 0px));
  display:flex;
  flex-direction:column;
}
.site-footer{
  margin-top:auto;
}

/* Header */
.site-header{
  background:#fff;
  border-bottom:1px solid var(--border);
  position:fixed;
  top:0;
  left:0;
  right:0;
  z-index:1030;
}
.site-header-inner{
  display:flex;
  align-items:center;
  gap:1.75rem;
  padding:1rem 0;
}
.site-brand{
  display:flex;
  align-items:center;
  gap:.75rem;
  text-decoration:none;
  min-width:220px;
  overflow:hidden;
}
.brand-mark{
  width:44px;
  height:44px;
  border-radius:999px;
  background:var(--brand);
  display:grid;
  place-items:center;
  flex:0 0 auto;
}
.brand-mark svg{
  width:22px;
  height:22px;
  fill:#fff;
}
.brand-mark img{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:999px;
}
.brand-name{
  font-weight:800;
  font-size:1.35rem;
  color:var(--brand);
  line-height:1;
  font-family:"Playfair Display", serif;
  min-width:0;
}

.user-avatar{
  width:22px;
  height:22px;
  border-radius:999px;
  object-fit:cover;
  margin-right:.35rem;
  border:2px solid rgba(255,255,255,.65);
}

.profile-avatar{
  width:64px;
  height:64px;
  border-radius:999px;
  overflow:hidden;
  background:#f1f5f9;
  display:grid;
  place-items:center;
  flex:0 0 auto;
}
.profile-avatar img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.profile-avatar-fallback{
  width:64px;
  height:64px;
  border-radius:999px;
  background:#e2e8f0;
  color:#0f172a;
  display:grid;
  place-items:center;
  font-size:1.4rem;
}

.site-nav{
  flex:1 1 auto;
}
.site-nav ul{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  justify-content:center;
  gap:1.75rem;
}
.site-nav a{
  color:#334155;
  text-decoration:none;
  font-weight:600;
  padding:.25rem 0;
  position:relative;
}
.site-nav a:hover{
  color:var(--brand);
}
.site-nav a.active{
  color:var(--text);
}
.site-nav a.active::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-10px;
  height:2px;
  background:var(--brand);
  border-radius:2px;
}

.site-actions{
  display:flex;
  align-items:center;
  gap:.75rem;
}
.icon-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:42px;
  height:42px;
  border-radius:12px;
  color:var(--text);
  text-decoration:none;
}
button.icon-btn{
  background:transparent;
  border:0;
  padding:0;
}
.icon-btn i{
  font-size:1.25rem;
}
.icon-btn:hover{
  color:var(--brand);
  background:rgba(22, 163, 74, .08);
}
.cart-badge{
  position:absolute;
  top:-6px;
  right:-6px;
  background:var(--brand);
  color:#fff;
  font-weight:700;
  font-size:.72rem;
  line-height:1;
  padding:.25rem .38rem;
  border-radius:999px;
  border:2px solid #fff;
  min-width:22px;
  text-align:center;
}

/* Mobile menu */
.mobile-menu{
  width:360px !important;
}
@media (max-width: 575.98px){
  .mobile-menu{ width:100% !important; }
}
.mobile-menu .offcanvas-body{
  padding:1.25rem 1.25rem 1.5rem;
}
.mobile-menu-links{
  display:flex;
  flex-direction:column;
  gap:.25rem;
}
.mobile-menu-link{
  display:flex;
  align-items:center;
  gap:.6rem;
  padding:.85rem .9rem;
  border-radius:14px;
  text-decoration:none;
  color:#0f172a;
  font-weight:800;
  background:transparent;
}
.mobile-menu-link:hover{
  background:rgba(22, 163, 74, .08);
  color:var(--brand);
}
.mobile-menu-link.active{
  background:#ecfdf5;
  color:var(--brand);
  border-left:4px solid var(--brand);
}
.mobile-user-icon{
  width:36px;
  height:36px;
  border-radius:999px;
  background:#e2e8f0;
  display:grid;
  place-items:center;
  color:#0f172a;
}
.min-w-0{min-width:0;}

/* Cart offcanvas + toast */
.cart-offcanvas{
  width:420px !important;
}
@media (max-width: 575.98px){
  .cart-offcanvas{ width:100% !important; }
}
.cart-offcanvas-header{
  padding:1.25rem 1.5rem;
  border-bottom:1px solid rgba(148,163,184,.25);
}
.cart-offcanvas-title{
  font-weight:900;
  font-size:1.25rem;
  color:#0f172a;
}
.cart-offcanvas-body{
  padding:1.25rem 1.5rem 1.5rem;
  position:relative;
  background:#fff;
}
/* `data-checkout-step` may live on `.cart-offcanvas-body` or `#cartOffcanvasBody` */
.cart-offcanvas-body[data-checkout-step="shipping"],
.cart-offcanvas-body[data-checkout-step="payment"],
#cartOffcanvasBody[data-checkout-step="shipping"],
#cartOffcanvasBody[data-checkout-step="payment"]{
  /* Remove bottom padding so sticky summary can fully cover the bottom edge */
  padding-bottom:0;
}
.cart-items{
  display:flex;
  flex-direction:column;
}
.cart-item{
  display:flex;
  gap:1rem;
  padding:1rem 0;
  border-bottom:1px solid rgba(148,163,184,.22);
}
.cart-thumb{
  width:64px;
  height:64px;
  border-radius:16px;
  background:#dcfce7;
  display:grid;
  place-items:center;
  overflow:hidden;
  flex:0 0 auto;
}
.cart-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.cart-thumb-emoji{
  font-size:1.8rem;
  line-height:1;
}
.cart-meta{
  flex:1 1 auto;
  min-width:0;
}
.cart-name{
  font-weight:900;
  color:#0f172a;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.cart-price{
  color:var(--brand);
  font-weight:900;
  margin-top:.15rem;
}
.cart-qty{
  display:inline-flex;
  align-items:center;
  gap:.4rem;
  background:#f1f5f9;
  border-radius:999px;
  padding:.25rem .35rem;
  margin-top:.55rem;
}
.cart-qty-btn{
  width:28px;
  height:28px;
  border-radius:999px;
  border:0;
  background:#e2e8f0;
  color:#0f172a;
  font-weight:900;
  line-height:1;
  display:grid;
  place-items:center;
}
.cart-qty-btn:hover{
  background:#cbd5e1;
}
.cart-qty-num{
  min-width:24px;
  text-align:center;
  font-weight:900;
  color:#0f172a;
}
.cart-remove{
  width:42px;
  height:42px;
  border-radius:12px;
  border:0;
  background:transparent;
  color:#ef4444;
  display:grid;
  place-items:center;
  margin-top:.2rem;
}
.cart-remove:hover{
  background:rgba(239, 68, 68, .10);
  color:#dc2626;
}
.cart-summary{
  padding-top:1.2rem;
}
.cart-summary-row{
  display:flex;
  justify-content:space-between;
  gap:1rem;
  color:#475569;
  font-size:.95rem;
  padding:.25rem 0;
}
.cart-summary-row strong{
  color:#0f172a;
  font-weight:900;
}
.cart-summary-total{
  font-size:1.05rem;
  padding-top:.6rem;
  margin-top:.35rem;
  border-top:1px solid rgba(148,163,184,.25);
}
.cart-summary-total strong{
  color:var(--brand);
  font-size:1.25rem;
}
.cart-checkout{
  border-radius:12px;
  padding:1.05rem 1.25rem;
  font-weight:900;
  margin-top:1rem;
  width:100%;
}
.cart-empty{
  text-align:center;
  padding:3rem 1rem;
}
.cart-empty-icon{
  width:74px;
  height:74px;
  border-radius:999px;
  background:#dcfce7;
  color:var(--brand);
  display:grid;
  place-items:center;
  margin:0 auto 1.2rem;
}
.cart-empty-icon i{
  font-size:1.8rem;
}
.cart-empty-title{
  font-weight:900;
  color:#0f172a;
  font-size:1.2rem;
}
.cart-empty-desc{
  color:#64748b;
  margin-top:.35rem;
}
.cart-empty-btn{
  border-radius:12px;
  padding:.9rem 1.2rem;
  font-weight:900;
  margin-top:1.25rem;
}

/* Offcanvas checkout flow */
.checkout-step{
  display:flex;
  flex-direction:column;
  gap:1rem;
}
.checkout-back{
  display:inline-flex;
  align-items:center;
  gap:.5rem;
  color:var(--brand);
  text-decoration:none;
  font-weight:800;
  padding:.15rem 0;
}
.checkout-back:hover{
  text-decoration:underline;
  color:#15803d;
}
.checkout-title{
  font-weight:900;
  color:#0f172a;
  font-size:1.1rem;
  margin-top:.15rem;
}
.checkout-subtitle{
  color:#64748b;
  font-size:.95rem;
  margin-top:-.55rem;
}
.checkout-form .form-label{
  font-weight:800;
  color:#0f172a;
  font-size:.92rem;
}
.checkout-form .form-control,
.checkout-form .form-select{
  border-radius:12px;
  padding:.75rem .9rem;
  border:1px solid rgba(148,163,184,.38);
}
.checkout-form .form-control:focus,
.checkout-form .form-select:focus{
  border-color:rgba(22,163,74,.55);
  box-shadow:0 0 0 .2rem rgba(22,163,74,.12);
}
.checkout-summary.checkout-summary-sticky{
  position:sticky;
  bottom:0;
  background:#fff;
  z-index:30;
  padding:1rem 1.5rem calc(1.5rem + env(safe-area-inset-bottom));
  margin:.25rem -1.5rem 0;
  border-top:1px solid rgba(148,163,184,.25);
  box-shadow:none;
}
.checkout-summary.checkout-summary-sticky::before{
  display:none;
}
.checkout-shipping-row strong{
  color:var(--brand);
}

.payment-options{
  display:flex;
  flex-direction:column;
  gap:.85rem;
}
/* Prevent checkout content from showing behind sticky summary in offcanvas */
.cart-offcanvas-body[data-checkout-step="shipping"] .checkout-fields,
#cartOffcanvasBody[data-checkout-step="shipping"] .checkout-fields,
.cart-offcanvas-body[data-checkout-step="payment"] .payment-options,
#cartOffcanvasBody[data-checkout-step="payment"] .payment-options{
  padding-bottom:0;
}
.payment-option{
  width:100%;
}
.payment-option{
  display:flex;
  align-items:flex-start;
  gap:.75rem;
  border:1px solid rgba(148,163,184,.38);
  border-radius:14px;
  padding:1rem 1rem;
  cursor:pointer;
  background:#fff;
  transition:transform .12s ease, border-color .12s ease, box-shadow .12s ease;
}
.payment-option:hover{
  border-color:rgba(22,163,74,.45);
  box-shadow:0 10px 24px rgba(15,23,42,.06);
}
.payment-option-radio{
  margin-top:.15rem;
  flex:0 0 auto;
}
.payment-option-body{
  min-width:0;
}

/* Midtrans embed in cart offcanvas */
.midtrans-embed-card{
  border:1px solid rgba(148,163,184,.38);
  border-radius:16px;
  overflow:hidden;
  background:#fff;
}
.midtrans-embed{
  width:100%;
  min-height:560px;
  background:linear-gradient(180deg, rgba(248,250,252,1), rgba(255,255,255,1));
}
.payment-option-title{
  font-weight:900;
  color:#0f172a;
  line-height:1.2;
}
.payment-option-desc{
  color:#64748b;
  font-size:.92rem;
  margin-top:.2rem;
}

.payment-midtrans-box{
  display:flex;
  align-items:flex-start;
  gap:.85rem;
  padding:1rem;
  border-radius:14px;
  border:1px solid rgba(148,163,184,.38);
  background:#fff;
}
.payment-midtrans-icon{
  width:42px;
  height:42px;
  border-radius:14px;
  background:#dcfce7;
  color:var(--brand);
  display:grid;
  place-items:center;
  flex:0 0 auto;
}
.payment-midtrans-icon i{
  font-size:1.2rem;
}
.payment-midtrans-title{
  font-weight:900;
  color:#0f172a;
  line-height:1.2;
}
.payment-midtrans-desc{
  color:#64748b;
  font-size:.92rem;
  margin-top:.25rem;
}

.checkout-success{
  align-items:center;
  text-align:center;
}
.checkout-success-icon{
  width:74px;
  height:74px;
  border-radius:999px;
  background:#dcfce7;
  color:var(--brand);
  display:grid;
  place-items:center;
  margin:.25rem auto 0;
}
.checkout-success-icon i{
  font-size:2rem;
}
.checkout-success-title{
  font-weight:900;
  color:#0f172a;
  font-size:1.25rem;
  margin-top:.1rem;
}
.checkout-success-subtitle{
  color:#64748b;
  margin-top:-.35rem;
  margin-bottom:.25rem;
}

.invoice-card{
  width:100%;
  background:#f8fafc;
  border:1px solid rgba(148,163,184,.25);
  border-radius:16px;
  padding:1.25rem 1.1rem;
  text-align:left;
}
.invoice-header{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:1rem;
}
.invoice-brand{
  display:flex;
  align-items:center;
  gap:.6rem;
}
.invoice-brand-icon{
  width:34px;
  height:34px;
  border-radius:10px;
  background:#dcfce7;
  color:var(--brand);
  display:grid;
  place-items:center;
}
.invoice-brand-name{
  font-weight:900;
  color:var(--brand);
  font-size:1.05rem;
}
.invoice-meta{
  text-align:right;
}
.invoice-meta-title{
  font-weight:900;
  color:#0f172a;
  font-size:.8rem;
  letter-spacing:.04em;
}
.invoice-meta-date{
  color:#64748b;
  font-size:.9rem;
  margin-top:.15rem;
}
.invoice-meta-code{
  color:#0f172a;
  font-weight:800;
  font-size:.9rem;
  margin-top:.1rem;
}
.invoice-divider{
  height:1px;
  background:rgba(148,163,184,.25);
  margin:1rem 0;
}
.invoice-section-title{
  font-weight:900;
  font-size:.8rem;
  letter-spacing:.04em;
  color:#0f172a;
  margin-bottom:.45rem;
}
.invoice-ship{
  color:#0f172a;
  font-size:.95rem;
  line-height:1.35;
}
.invoice-items{
  display:flex;
  flex-direction:column;
  gap:.75rem;
}
.invoice-item-top{
  display:flex;
  justify-content:space-between;
  gap:.75rem;
}
.invoice-item-name{
  font-weight:800;
  color:#0f172a;
  min-width:0;
}
.invoice-item-total{
  font-weight:900;
  color:#0f172a;
  white-space:nowrap;
}
.invoice-item-sub{
  color:#64748b;
  font-size:.92rem;
  margin-top:.2rem;
}
.invoice-totals{
  display:flex;
  flex-direction:column;
  gap:.45rem;
}
.invoice-row{
  display:flex;
  justify-content:space-between;
  gap:.75rem;
  color:#0f172a;
  font-size:.95rem;
}
.invoice-row .text-brand{
  color:var(--brand);
  font-weight:900;
}
.invoice-total{
  font-weight:900;
  padding-top:.55rem;
  border-top:1px solid rgba(148,163,184,.25);
  margin-top:.25rem;
}
.invoice-total span:last-child{
  color:var(--brand);
  font-size:1.15rem;
}
.invoice-payment{
  text-align:center;
}
.invoice-payment-title{
  font-weight:900;
  font-size:.75rem;
  letter-spacing:.06em;
  color:#64748b;
}
.invoice-payment-pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:.4rem .9rem;
  border-radius:999px;
  background:#dcfce7;
  color:#166534;
  font-weight:900;
  margin-top:.55rem;
}
.invoice-thanks{
  text-align:center;
  color:#64748b;
  font-size:.92rem;
  margin-top:1rem;
}

.whatsapp-btn{
  width:100%;
  border-radius:14px;
  padding:1rem 1.2rem;
  font-weight:900;
  margin-top:1rem;
}

.cart-toast-container{
  z-index:2000;
  pointer-events:none;
}
.cart-toast{
  pointer-events:auto;
  border:0;
  border-radius:14px;
  background:var(--brand);
  color:#fff;
  box-shadow:0 18px 36px rgba(15, 23, 42, .22);
  min-width:320px;
  max-width:520px;
}
.cart-toast.is-danger{
  background:#dc2626;
}
.cart-toast .toast-body{
  font-weight:800;
}
.btn-brand{
  background:var(--brand);
  border-color:var(--brand);
  color:#fff;
  font-weight:700;
  border-radius:999px;
  padding:.55rem 1rem;
}
.btn-brand:hover{
  background:#15803d;
  border-color:#15803d;
  color:#fff;
}

/* Footer */
.site-footer{
  background:radial-gradient(circle at 10% 0%, #15264b 0%, var(--footer-bg) 55%);
  color:#cbd5e1;
  margin-top:auto;
}
.site-footer .text-muted{
  color:rgba(203, 213, 225, .75) !important;
}
.footer-bottom a{
  color:#cbd5e1;
  text-decoration:none;
}
.footer-bottom a:hover{
  color:#fff;
  text-decoration:underline;
}
.footer-brand{
  display:flex;
  align-items:center;
  gap:.75rem;
  margin-bottom:1rem;
}
.footer-brand .footer-title{
  font-family:"Playfair Display", serif;
}
.footer-title{
  color:#fff;
  font-weight:800;
  margin-bottom:.9rem;
}
.footer-links{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  flex-direction:column;
  gap:.55rem;
}
.footer-links a{
  color:#cbd5e1;
  text-decoration:none;
}
.footer-links a:hover{
  color:#fff;
  text-decoration:underline;
}
.newsletter-input{
  background:rgba(255,255,255,.06) !important;
  border:1px solid rgba(148,163,184,.25) !important;
  color:#fff !important;
  border-radius:12px !important;
}
.newsletter-input::placeholder{
  color:#94a3b8;
}
.newsletter-btn{
  border-radius:12px !important;
  width:54px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-weight:800;
}
.site-footer hr{
  border-color:rgba(148,163,184,.18) !important;
}

@media (max-width: 991.98px){
  .site-brand{min-width:0;}
  .brand-name{font-size:1.15rem;}
  .site-header-inner{
    display:grid;
    grid-template-columns:auto 1fr auto auto;
    align-items:center;
    gap:.25rem;
    padding:.85rem 0;
  }
  .site-search-btn{justify-self:end;}
  .site-cart-btn{justify-self:end;}
  .site-menu-btn{justify-self:end;}
  .brand-name{
    max-width:140px;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
  }
  html, body{ overflow-x:hidden; }
}

/* Hero */
.hero-section{
  background:#eefdf3;
}
.hero-title{
  font-family:"Playfair Display", serif;
  font-weight:700;
  letter-spacing:-.02em;
  line-height:1.05;
  font-size:clamp(2.4rem, 4vw, 3.6rem);
  color:#0f172a;
}
.hero-accent{
  font-family:"Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--brand);
  font-weight:800;
  display:inline-block;
}
.hero-desc{
  color:#475569;
  font-size:1.05rem;
  line-height:1.7;
  max-width:560px;
}
.hero-perk{
  display:inline-flex;
  align-items:center;
  gap:.85rem;
  background:var(--brand);
  color:#fff;
  padding:1.05rem 1.25rem;
  border-radius:16px;
  box-shadow:0 14px 28px rgba(15, 23, 42, .12);
}
.hero-perk-icon{
  width:48px;
  height:48px;
  border-radius:999px;
  background:#fff;
  color:var(--brand);
  display:grid;
  place-items:center;
  flex:0 0 auto;
}
.hero-perk-icon i{
  font-size:1.35rem;
}
.hero-perk-title{
  font-weight:800;
  letter-spacing:.02em;
}
.hero-perk-sub{
  font-size:.9rem;
  opacity:.95;
}
.btn-hero{
  border-radius:999px;
  padding:.9rem 1.6rem;
  font-weight:800;
}
.btn-outline-brand{
  border:2px solid var(--brand);
  color:var(--brand);
  background:#fff;
}
.btn-outline-brand:hover{
  background:rgba(22, 163, 74, .08);
  color:var(--brand);
  border-color:var(--brand);
}
.hero-illustration{
  display:flex;
  justify-content:center;
  align-items:center;
  overflow:hidden;
}
.hero-illustration img{
  max-width:520px;
  width:100%;
  height:auto;
}

/* Popular categories */
.popcat-section{
  background:#f8fafc;
}
.popcat-title{
  font-family:"Playfair Display", serif;
  font-weight:700;
  font-size:clamp(1.8rem, 3.2vw, 2.3rem);
  color:#0f172a;
  letter-spacing:-.02em;
}
.popcat-sub{
  color:#64748b;
  margin-top:.4rem;
}
.popcat-link{
  text-decoration:none;
  display:block;
}
.popcat-card{
  text-align:center;
  border-radius:18px;
  padding:2.25rem 1.5rem;
  border:1px solid rgba(15, 23, 42, .06);
  transition:transform .15s ease, box-shadow .15s ease;
  min-height:168px;
}

/* Product detail (Woo-like) */
.product-page{
  padding:1rem 0 2rem;
}
.product-breadcrumb{
  color:#64748b;
  font-size:.95rem;
  display:flex;
  align-items:center;
  gap:.5rem;
  flex-wrap:wrap;
}
.product-breadcrumb a{
  color:#64748b;
  text-decoration:none;
  font-weight:700;
}
.product-breadcrumb a:hover{ color:var(--brand); text-decoration:underline; }
.product-breadcrumb .sep{ opacity:.6; }
.product-breadcrumb .current{ color:#0f172a; font-weight:800; }

.product-gallery{
  display:flex;
  flex-direction:column;
  gap:1rem;
}
.product-main{
  border:1px solid rgba(148,163,184,.35);
  border-radius:22px;
  background:#fff;
  overflow:hidden;
  box-shadow:0 18px 40px rgba(15,23,42,.06);
}
.product-main img{
  width:100%;
  height:520px;
  object-fit:cover;
  display:block;
}
.product-placeholder{
  height:520px;
  display:grid;
  place-items:center;
  background:linear-gradient(180deg, #f8fafc, #fff);
}
.product-placeholder img{ width:160px; opacity:.7; }
.product-placeholder-emoji{
  width:120px;
  height:120px;
  border-radius:28px;
  background:#ecfdf5;
  color:var(--brand);
  display:grid;
  place-items:center;
  font-size:3.2rem;
  border:1px solid rgba(22,163,74,.22);
}
.product-thumbs{
  display:flex;
  gap:.75rem;
  overflow:auto;
  padding-bottom:.25rem;
}
.product-thumb{
  border:1px solid rgba(148,163,184,.35);
  border-radius:16px;
  padding:0;
  background:#fff;
  width:92px;
  height:92px;
  overflow:hidden;
  flex:0 0 auto;
  cursor:pointer;
  transition:transform .12s ease, border-color .12s ease, box-shadow .12s ease;
}
.product-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.product-thumb:hover{
  transform:translateY(-2px);
  box-shadow:0 12px 26px rgba(15,23,42,.08);
  border-color:rgba(22,163,74,.55);
}
.product-thumb.active{
  border-color:rgba(22,163,74,.85);
  box-shadow:0 0 0 .25rem rgba(22,163,74,.12);
}

.product-summary{
  background:#fff;
  border:1px solid rgba(148,163,184,.35);
  border-radius:22px;
  padding:1.5rem 1.5rem 1.25rem;
  box-shadow:0 18px 40px rgba(15,23,42,.06);
}
.product-title{
  font-weight:900;
  letter-spacing:-.02em;
  margin:0 0 .65rem;
  color:#0f172a;
  font-size:clamp(1.55rem, 2.2vw, 2.15rem);
}
.product-meta{
  display:flex;
  align-items:center;
  gap:.75rem;
  flex-wrap:wrap;
  margin-bottom:.65rem;
}
.product-rating{
  display:inline-flex;
  align-items:center;
  gap:.4rem;
  font-weight:900;
  color:#0f172a;
  background:#f1f5f9;
  border:1px solid rgba(148,163,184,.35);
  padding:.35rem .6rem;
  border-radius:999px;
}
.product-rating i{ color:#f59e0b; }
.product-stock{
  font-weight:900;
  padding:.35rem .65rem;
  border-radius:999px;
  border:1px solid rgba(148,163,184,.35);
}
.product-stock.in{
  background:#ecfdf5;
  color:#15803d;
  border-color:rgba(22,163,74,.25);
}
.product-stock.out{
  background:#f1f5f9;
  color:#64748b;
}
.product-price{
  font-weight:900;
  font-size:1.6rem;
  color:#0f172a;
  margin:.35rem 0 1rem;
}
.product-short{
  color:#475569;
  line-height:1.8;
  background:#f8fafc;
  border:1px solid rgba(148,163,184,.25);
  border-radius:16px;
  padding:1rem 1rem;
  margin-bottom:1rem;
}
.product-cart-row{
  display:flex;
  align-items:flex-end;
  gap:.6rem;
  flex-wrap:wrap;
}
.product-qty{
  width:120px;
}
.product-buy{
  border-radius:14px;
  padding:.75rem 1rem;
  font-weight:900;
}
.product-note{
  display:flex;
  align-items:center;
  gap:.5rem;
  color:#64748b;
  font-size:.92rem;
  margin-top:.9rem;
}
.product-note i{ color:var(--brand); }
.product-info{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:.75rem;
  margin-top:1.1rem;
}
.product-info-item{
  display:flex;
  gap:.75rem;
  border:1px solid rgba(148,163,184,.25);
  border-radius:16px;
  padding:.9rem 1rem;
  background:#f8fafc;
}
.product-info-item i{
  width:40px;
  height:40px;
  border-radius:14px;
  background:#ecfdf5;
  color:var(--brand);
  display:grid;
  place-items:center;
  flex:0 0 auto;
}
.product-info-item .label{
  font-weight:900;
  color:#0f172a;
  font-size:.95rem;
}
.product-info-item .value{
  color:#64748b;
  font-size:.9rem;
  margin-top:.15rem;
}

@media (max-width: 991.98px){
  .product-main img, .product-placeholder{ height:360px; }
  .product-summary{ padding:1.25rem 1.1rem; }
  .product-info{ grid-template-columns:1fr; }
  .product-qty{ width:100px; }
}
.popcat-card:hover{
  transform:translateY(-2px);
  box-shadow:0 18px 36px rgba(15, 23, 42, .10);
}
.popcat-icon{
  width:62px;
  height:62px;
  border-radius:999px;
  background:#fff;
  display:grid;
  place-items:center;
  margin:0 auto 1.1rem;
  box-shadow:0 14px 28px rgba(15, 23, 42, .10);
  border:1px solid rgba(15, 23, 42, .06);
  font-size:1.6rem;
}
.popcat-name{
  color:#0f172a;
  font-weight:800;
  font-size:1.06rem;
}
.popcat-count{
  margin-top:.35rem;
  color:#64748b;
  font-size:.95rem;
}
.popcat-bg-1{ background:#e7fbef; }
.popcat-bg-2{ background:#fff6d8; }
.popcat-bg-3{ background:#ffe9ee; }
.popcat-bg-4{ background:#e7f5ff; }

/* Featured products */
.featured-section{
  background:#f8fafc;
}
.featured-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:1rem;
  margin-bottom:1.6rem;
  flex-wrap:wrap;
}
.featured-title{
  font-family:"Playfair Display", serif;
  font-weight:700;
  font-size:clamp(1.9rem, 3.2vw, 2.4rem);
  color:#0f172a;
  letter-spacing:-.02em;
}
.featured-sub{
  color:#64748b;
  margin-top:.35rem;
}
.featured-link{
  color:var(--brand);
  font-weight:800;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  gap:.35rem;
  padding-bottom:.15rem;
}
.featured-link:hover{
  color:#15803d;
  text-decoration:underline;
}

.featured-card{
  border-radius:18px;
  overflow:hidden;
  border:1px solid rgba(15, 23, 42, .08);
  background:#fff;
  box-shadow:0 12px 24px rgba(15, 23, 42, .08);
  transition:transform .15s ease, box-shadow .15s ease;
  display:flex;
  flex-direction:column;
}
.featured-card:hover{
  transform:translateY(-2px);
  box-shadow:0 18px 36px rgba(15, 23, 42, .12);
}
.featured-thumb{
  background:#c8fbd6;
  min-height:170px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  position:relative;
  overflow:hidden;
}
.featured-thumb-icon{
  font-size:2.75rem;
  line-height:1;
  position:relative;
  z-index:1;
}
.featured-thumb-img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:0;
  box-shadow:none;
  background:transparent;
  padding:0;
  z-index:0;
}
.featured-body{
  padding:1.1rem 1.1rem 1rem;
  display:flex;
  flex-direction:column;
  gap:.55rem;
  flex:1 1 auto;
}
.featured-name{
  font-weight:800;
  color:#0f172a;
  text-decoration:none;
  font-size:1.06rem;
}
.featured-name:hover{
  color:var(--brand);
}
.featured-meta{
  font-size:.9rem;
  color:#475569;
}
.featured-meta i{
  color:#f59e0b;
}
.featured-bottom{
  margin-top:auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:.75rem;
}
.featured-price{
  color:var(--brand);
  font-weight:900;
  font-size:1.08rem;
}
.featured-add{
  width:40px;
  height:40px;
  border-radius:999px;
  border:none;
  background:#dcfce7;
  color:var(--brand);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 10px 20px rgba(15, 23, 42, .10);
  transition:transform .12s ease, background .12s ease, color .12s ease;
}
.featured-add.is-added{
  background:var(--brand);
  color:#fff;
  transform:scale(.92);
}
.btn.is-added{
  transform:translateY(1px);
}
.featured-add:hover{
  background:#bbf7d0;
}
.featured-add:disabled{
  opacity:.55;
  box-shadow:none;
}

/* Products listing page */
.products-page{
  padding-top:.25rem;
}
.products-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:1rem;
  flex-wrap:wrap;
  margin-bottom:1rem;
}
.products-title{
  font-family:"Playfair Display", serif;
  font-weight:700;
  font-size:clamp(1.9rem, 3.2vw, 2.4rem);
  color:#0f172a;
  letter-spacing:-.02em;
}
.products-sub{
  color:#64748b;
  margin-top:.35rem;
}
.products-search{
  margin-left:auto;
  min-width:min(520px, 100%);
}
.products-search .input-group{
  border-radius:14px;
  overflow:hidden;
  background:#fff;
  box-shadow:0 10px 22px rgba(15, 23, 42, .06);
}
.products-search .input-group-text{
  background:#fff;
  border-color:rgba(15, 23, 42, .12);
  color:#64748b;
  padding:.75rem .85rem;
}
.products-search .form-control{
  border-color:rgba(15, 23, 42, .12);
  padding:.75rem .85rem;
}
.products-search .form-control:focus{
  box-shadow:none;
  border-color:rgba(22, 163, 74, .35);
}
.products-search .btn{
  padding:.75rem 1rem;
  font-weight:800;
}
.products-cats{
  display:flex;
  align-items:center;
  gap:.6rem;
  flex-wrap:nowrap;
  overflow:auto hidden;
  padding:.1rem 0 .35rem;
  margin-bottom:.75rem;
  scroll-snap-type:x mandatory;
  -webkit-overflow-scrolling:touch;
}
.products-cats::-webkit-scrollbar{
  height:6px;
}
.products-cats::-webkit-scrollbar-thumb{
  background:rgba(15, 23, 42, .15);
  border-radius:999px;
}
.cat-chip{
  display:inline-flex;
  align-items:center;
  gap:.4rem;
  padding:.55rem .85rem;
  border-radius:999px;
  border:1px solid rgba(15, 23, 42, .12);
  background:#fff;
  color:#0f172a;
  font-weight:800;
  text-decoration:none;
  white-space:nowrap;
  scroll-snap-align:start;
  transition:background .12s ease, border-color .12s ease, color .12s ease, transform .12s ease;
}
.cat-chip:hover{
  transform:translateY(-1px);
  border-color:rgba(22, 163, 74, .25);
  background:#f0fdf4;
  color:var(--brand);
}
.cat-chip.active{
  background:var(--brand);
  border-color:var(--brand);
  color:#fff;
  box-shadow:0 14px 26px rgba(22, 163, 74, .28);
}
.products-page .featured-thumb{
  min-height:190px;
}
.products-page .featured-thumb-img{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:0;
  box-shadow:none;
  background:transparent;
  padding:0;
  display:block;
}
.products-page .featured-thumb-icon{
  font-size:3rem;
}
@media (max-width: 575.98px){
  .products-head{
    align-items:flex-start;
  }
  .products-search{
    width:100%;
    min-width:0;
  }
  .products-search .btn{
    padding:.75rem .9rem;
  }
  .products-page .featured-thumb{
    min-height:165px;
  }
  .products-page .featured-thumb-img{
    width:100%;
    height:100%;
  }
}

/* Why section */
.why-section{
  background:#fff;
  box-shadow:0 0 0 100vmax #fff;
  clip-path:inset(0 -100vmax);
}
.why-title{
  font-family:"Playfair Display", serif;
  font-weight:700;
  font-size:clamp(1.9rem, 3.2vw, 2.4rem);
  color:#0f172a;
  letter-spacing:-.02em;
}
.why-sub{
  color:#64748b;
  margin-top:.35rem;
}
.why-card{
  text-align:center;
  padding:2rem 1.25rem;
}
.why-icon{
  width:72px;
  height:72px;
  border-radius:999px;
  background:#dcfce7;
  color:var(--brand);
  display:grid;
  place-items:center;
  margin:0 auto 1.25rem;
}
.why-icon i{
  font-size:1.7rem;
}
.why-name{
  font-weight:900;
  color:#0f172a;
  font-size:1.1rem;
  margin-bottom:.5rem;
}
.why-desc{
  color:#64748b;
  max-width:320px;
  margin:0 auto;
  line-height:1.6;
}

/* Shipping checker */
.shipping-section{
  background:transparent;
}
.shipping-title{
  font-family:"Playfair Display", serif;
  font-weight:700;
  font-size:clamp(2rem, 3.6vw, 2.6rem);
  color:#0f172a;
  letter-spacing:-.02em;
}
.shipping-sub{
  color:#64748b;
  margin-top:.35rem;
}

.ship-card{
  background:#fff;
  border-radius:18px;
  border:1px solid rgba(15, 23, 42, .08);
  box-shadow:0 18px 36px rgba(15, 23, 42, .10);
}
.ship-card-title{
  font-weight:900;
  color:#0f172a;
  font-size:1.25rem;
}
.ship-label{
  font-weight:700;
  color:#0f172a;
}

.ship-money .input-group-text{
  background:#fff;
  border:1px solid #e2e8f0;
  border-right:0;
  border-radius:12px 0 0 12px;
  color:#64748b;
  font-weight:800;
  padding:0 1rem;
}
.ship-money .form-control{
  border:1px solid #e2e8f0;
  border-left:0;
  border-radius:0 12px 12px 0;
  height:56px;
  padding:0 1rem;
}
.ship-select{
  border:1px solid #e2e8f0;
  border-radius:12px;
  height:56px;
  padding:0 1rem;
}
.ship-select:focus,
.ship-money .form-control:focus{
  border-color:var(--brand);
  box-shadow:0 0 0 .25rem rgba(22, 163, 74, .12);
}

.ship-btn-primary{
  background:var(--brand);
  border:1px solid var(--brand);
  color:#fff;
  font-weight:900;
  border-radius:12px;
  padding:1rem 1.25rem;
}
.ship-btn-primary:hover{
  background:#15803d;
  border-color:#15803d;
  color:#fff;
}
.ship-btn-secondary{
  background:#fff;
  border:1px solid #e2e8f0;
  color:#0f172a;
  font-weight:900;
  border-radius:12px;
  padding:1rem 1.25rem;
}
.ship-btn-secondary:hover{
  background:#f8fafc;
  color:#0f172a;
}

.ship-result-inner{
  min-height:420px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  gap:.55rem;
}
.ship-result-icon{
  width:92px;
  height:92px;
  border-radius:999px;
  background:#dcfce7;
  color:var(--brand);
  display:grid;
  place-items:center;
  margin-bottom:.2rem;
}
.ship-result-icon i{
  font-size:2rem;
}
.ship-result-title{
  font-weight:900;
  color:#0f172a;
  font-size:1.2rem;
  margin-top:.35rem;
}
.ship-result-desc{
  color:#64748b;
  max-width:320px;
  line-height:1.6;
}
.ship-result-output{
  width:100%;
  margin-top:1rem;
}
.ship-result-badge{
  border:1px solid #e2e8f0;
  background:#f8fafc;
  border-radius:16px;
  padding:1.1rem 1.2rem;
  text-align:left;
}
.ship-result-row{
  display:flex;
  justify-content:space-between;
  gap:1rem;
  color:#475569;
  font-size:.95rem;
  padding:.35rem 0;
}
.ship-result-row strong{
  color:#0f172a;
}
.ship-result-total{
  border-top:1px solid rgba(148,163,184,.25);
  margin-top:.35rem;
  padding-top:.75rem;
  font-size:1rem;
}

/* Category page */
.catpage-section{
  background:transparent;
}
.catpage-title{
  font-family:"Playfair Display", serif;
  font-weight:700;
  font-size:clamp(2rem, 3.6vw, 2.7rem);
  color:#0f172a;
  letter-spacing:-.02em;
}
.catpage-sub{
  color:#64748b;
  margin-top:.35rem;
}
.catpage-tabs{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:.75rem;
}
.catpage-pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:.6rem 1.15rem;
  border-radius:999px;
  background:#f1f5f9;
  color:#0f172a;
  text-decoration:none;
  font-weight:800;
}
.catpage-pill:hover{
  background:#e2e8f0;
  color:#0f172a;
}
.catpage-pill.active{
  background:var(--brand);
  color:#fff;
}
.catpage-pill.active:hover{
  background:#15803d;
  color:#fff;
}

/* Guide page */
.guide-section{
  background:transparent;
}
.guide-title{
  font-family:"Playfair Display", serif;
  font-weight:700;
  font-size:clamp(2.1rem, 4vw, 2.9rem);
  color:#0f172a;
  letter-spacing:-.02em;
}
.guide-sub{
  color:#64748b;
  margin-top:.35rem;
}
.guide-card{
  border-radius:18px;
  overflow:hidden;
  background:#fff;
  border:1px solid rgba(15, 23, 42, .08);
  box-shadow:0 18px 36px rgba(15, 23, 42, .10);
}
.guide-top{
  height:190px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.guide-emoji{
  font-size:3.2rem;
  line-height:1;
  filter:drop-shadow(0 12px 22px rgba(15, 23, 42, .18));
}
.guide-body{
  padding:1.65rem 1.6rem 1.5rem;
}
.guide-card-title{
  font-weight:900;
  font-size:1.25rem;
  color:#0f172a;
  margin-bottom:.55rem;
}
.guide-card-desc{
  color:#475569;
  line-height:1.65;
  margin-bottom:1.1rem;
}
.guide-list{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  flex-direction:column;
  gap:.65rem;
  color:#334155;
}
.guide-list i{
  color:var(--brand);
  margin-right:.55rem;
}

.guide-top-green{ background:linear-gradient(135deg, #34d399 0%, #22c55e 100%); }
.guide-top-orange{ background:linear-gradient(135deg, #fbbf24 0%, #f97316 100%); }
.guide-top-brown{ background:linear-gradient(135deg, #b45309 0%, #92400e 100%); }
.guide-top-emerald{ background:linear-gradient(135deg, #10b981 0%, #059669 100%); }
.guide-top-pink{ background:linear-gradient(135deg, #fb7185 0%, #f43f5e 100%); }
.guide-top-purple{ background:linear-gradient(135deg, #a78bfa 0%, #8b5cf6 100%); }

/* Blog page */
.blog-section{
  background:transparent;
}
.blog-title{
  font-family:"Playfair Display", serif;
  font-weight:700;
  font-size:clamp(2.1rem, 4vw, 2.9rem);
  color:#0f172a;
  letter-spacing:-.02em;
}
.blog-sub{
  color:#64748b;
  margin-top:.35rem;
}
.blog-card{
  border-radius:18px;
  overflow:hidden;
  background:#fff;
  border:1px solid rgba(15, 23, 42, .08);
  box-shadow:0 18px 36px rgba(15, 23, 42, .10);
  transition:transform .15s ease, box-shadow .15s ease;
}
.blog-card:hover{
  transform:translateY(-2px);
  box-shadow:0 22px 44px rgba(15, 23, 42, .14);
}
.blog-top{
  height:190px;
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
}
.blog-top.has-cover::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(15, 23, 42, .12) 0%, rgba(15, 23, 42, .34) 100%);
}
.blog-cover{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  z-index:0;
}
.blog-emoji{
  font-size:3.2rem;
  line-height:1;
  filter:drop-shadow(0 12px 22px rgba(15, 23, 42, .18));
  position:relative;
  z-index:1;
}
.blog-body{
  padding:1.55rem 1.6rem 1.4rem;
}
.blog-tag{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:.35rem .75rem;
  border-radius:999px;
  font-weight:900;
  font-size:.78rem;
  letter-spacing:.01em;
  margin-bottom:.8rem;
}
.blog-card-title{
  font-weight:900;
  font-size:1.25rem;
  color:#0f172a;
  line-height:1.3;
  margin:0 0 .65rem;
}
.blog-card-excerpt{
  color:#475569;
  line-height:1.65;
  margin:0 0 1.25rem;
}
.blog-meta{
  display:flex;
  justify-content:space-between;
  gap:1rem;
  color:#64748b;
  font-size:.92rem;
}

.blog-top-green{ background:linear-gradient(135deg, #34d399 0%, #10b981 100%); }
.blog-top-pink{ background:linear-gradient(135deg, #fda4af 0%, #fb7185 45%, #f43f5e 100%); }
.blog-top-yellow{ background:linear-gradient(135deg, #fbbf24 0%, #f59e0b 45%, #f97316 100%); }
.blog-top-blue{ background:linear-gradient(135deg, #60a5fa 0%, #38bdf8 60%, #0ea5e9 100%); }
.blog-top-purple{ background:linear-gradient(135deg, #c4b5fd 0%, #a78bfa 55%, #8b5cf6 100%); }
.blog-top-teal{ background:linear-gradient(135deg, #5eead4 0%, #34d399 55%, #10b981 100%); }

.blog-tag-green{ background:#e7fbef; color:var(--brand); }
.blog-tag-pink{ background:#ffe4ea; color:#e11d48; }
.blog-tag-orange{ background:#fff7d6; color:#d97706; }
.blog-tag-blue{ background:#e8f3ff; color:#2563eb; }
.blog-tag-purple{ background:#f2eaff; color:#7c3aed; }
.blog-tag-teal{ background:#e6fffb; color:#0f766e; }

/* Article detail */
.article-page{
  padding:.5rem 0 1.5rem;
}
.article-hero{
  border-radius:24px;
  overflow:hidden;
  position:relative;
  padding:1.75rem 1.6rem 1.6rem;
  color:#fff;
  box-shadow:0 26px 60px rgba(15, 23, 42, .18);
}
.article-cover{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  z-index:0;
}
.article-hero::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(15, 23, 42, .10) 0%, rgba(15, 23, 42, .52) 100%);
  z-index:1;
}
.article-hero-inner{
  position:relative;
  z-index:2;
}
.article-back{
  display:inline-flex;
  align-items:center;
  gap:.5rem;
  color:rgba(255,255,255,.92);
  text-decoration:none;
  font-weight:800;
}
.article-back:hover{
  color:#fff;
  text-decoration:underline;
}
.article-hero-head{
  display:flex;
  align-items:flex-start;
  gap:1rem;
  margin-top:1.25rem;
}
.article-emoji{
  width:64px;
  height:64px;
  border-radius:18px;
  display:grid;
  place-items:center;
  font-size:2rem;
  background:rgba(255,255,255,.20);
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.26);
  flex:0 0 auto;
}
.article-pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:.35rem .75rem;
  border-radius:999px;
  font-weight:900;
  font-size:.8rem;
  letter-spacing:.01em;
}
.article-meta-line{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:.55rem;
  margin-top:.55rem;
  color:rgba(255,255,255,.88);
  font-weight:700;
}
.article-meta-line .dot{
  opacity:.85;
}
.article-meta-link{
  color:rgba(255,255,255,.96);
  text-decoration:none;
  border-bottom:1px dashed rgba(255,255,255,.5);
}
.article-meta-link:hover{
  color:#fff;
  border-bottom-color:#fff;
}
.article-title{
  font-weight:900;
  letter-spacing:-.03em;
  font-size:clamp(2rem, 3.6vw, 2.85rem);
  margin-top:1.05rem;
  max-width:52ch;
}
.article-excerpt{
  max-width:78ch;
  color:rgba(255,255,255,.92);
  line-height:1.75;
  font-size:1.05rem;
  margin:0;
}
.article-card{
  border-radius:20px;
  overflow:hidden;
  background:#fff;
  border:1px solid rgba(15, 23, 42, .08);
  box-shadow:0 18px 36px rgba(15, 23, 42, .10);
  padding:1.35rem 1.35rem 1.25rem;
}
@media (min-width: 992px){
  .article-card{
    padding:1.75rem 1.85rem 1.6rem;
  }
}
.article-content{
  font-size:1.03rem;
  line-height:1.9;
  color:#0f172a;
}
.article-content p{
  margin:0 0 1.1rem;
}
.article-sidebar{
  position:sticky;
  top:calc(var(--header-offset, 0px) + 1rem);
  display:flex;
  flex-direction:column;
  gap:1rem;
}
.widget-card{
  background:#fff;
  border:1px solid rgba(15, 23, 42, .08);
  border-radius:18px;
  padding:1.1rem 1.1rem 1.0rem;
  box-shadow:0 14px 28px rgba(15, 23, 42, .08);
}
.widget-title{
  font-weight:900;
  color:#0f172a;
  font-size:1.05rem;
  margin-bottom:.75rem;
}
.widget-links{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  flex-direction:column;
  gap:.7rem;
}
.widget-links li{
  display:flex;
  flex-direction:column;
  gap:.12rem;
}
.widget-links a{
  text-decoration:none;
  color:#0f172a;
  font-weight:800;
  line-height:1.35;
}
.widget-links a:hover{
  color:var(--brand);
}
.widget-links small{
  color:#64748b;
}
.share-row{
  display:flex;
  flex-wrap:wrap;
  gap:.5rem;
}
.share-btn{
  flex:1 1 120px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.5rem;
  padding:.65rem .75rem;
  border-radius:14px;
  background:#fff;
  border:1px solid rgba(15, 23, 42, .10);
  text-decoration:none;
  color:#0f172a;
  font-weight:800;
}
.share-btn:hover{
  border-color:rgba(22, 163, 74, .35);
  color:var(--brand);
}
.tag-cloud{
  display:flex;
  flex-wrap:wrap;
  gap:.5rem;
}
.tag-chip{
  display:inline-flex;
  align-items:center;
  gap:.4rem;
  padding:.35rem .7rem;
  border-radius:999px;
  background:#f1f5f9;
  color:#0f172a;
  font-weight:900;
  font-size:.82rem;
  border:1px solid rgba(15, 23, 42, .08);
}
.tag-chip span{
  color:#64748b;
  font-weight:900;
}
.comment-list{
  display:flex;
  flex-direction:column;
}
.comment-item{
  display:flex;
  gap:.95rem;
  padding:1.05rem 0;
  border-top:1px solid rgba(15, 23, 42, .08);
}
.comment-item:first-child{
  border-top:0;
  padding-top:0;
}
.comment-avatar{
  width:44px;
  height:44px;
  border-radius:14px;
  background:linear-gradient(135deg, rgba(22, 163, 74, .18), rgba(56, 189, 248, .18));
  border:1px solid rgba(15, 23, 42, .08);
  display:grid;
  place-items:center;
  font-weight:900;
  color:#0f172a;
  flex:0 0 auto;
}
.comment-name{
  font-weight:900;
  color:#0f172a;
}
.comment-date{
  color:#64748b;
  font-size:.9rem;
}
.comment-text{
  margin-top:.45rem;
  color:#334155;
  line-height:1.8;
}

/* Contact page */
.contact-title{
  font-family:"Playfair Display", serif;
  font-weight:700;
  font-size:clamp(2.1rem, 4vw, 2.9rem);
  color:#0f172a;
  letter-spacing:-.02em;
}
.contact-sub{
  color:#64748b;
  margin-top:.35rem;
}
.contact-card{
  background:#fff;
  border-radius:18px;
  border:1px solid rgba(15, 23, 42, .08);
  box-shadow:0 18px 36px rgba(15, 23, 42, .10);
}
.contact-card-heading{
  font-weight:900;
  color:#0f172a;
  font-size:1.25rem;
}

.contact-label{
  font-weight:700;
  color:#0f172a;
}
.contact-input,
.contact-select,
.contact-textarea{
  border:1px solid #e2e8f0;
  border-radius:12px;
  padding:.95rem 1rem;
}
.contact-select,
.contact-input{
  height:56px;
}
.contact-textarea{
  resize:none;
}
.contact-input:focus,
.contact-select:focus,
.contact-textarea:focus{
  border-color:var(--brand);
  box-shadow:0 0 0 .25rem rgba(22, 163, 74, .12);
}
.contact-submit{
  background:var(--brand);
  border:1px solid var(--brand);
  color:#fff;
  font-weight:900;
  border-radius:12px;
  padding:1rem 1.25rem;
}
.contact-submit:hover{
  background:#15803d;
  border-color:#15803d;
  color:#fff;
}

.contact-info-card{
  border-radius:18px;
  background:linear-gradient(135deg, #22c55e 0%, #16a34a 60%, #15803d 100%);
  color:#fff;
  box-shadow:0 18px 36px rgba(15, 23, 42, .12);
}
.contact-info-title{
  font-weight:900;
  font-size:1.25rem;
}
.contact-info-list{
  display:flex;
  flex-direction:column;
  gap:1.25rem;
}
.contact-info-item{
  display:flex;
  gap:1rem;
  align-items:flex-start;
}
.contact-info-icon{
  width:44px;
  height:44px;
  border-radius:999px;
  background:rgba(255,255,255,.18);
  display:grid;
  place-items:center;
  flex:0 0 auto;
}
.contact-info-icon i{
  font-size:1.1rem;
}
.contact-info-label{
  font-weight:900;
  margin-bottom:.15rem;
}
.contact-info-value{
  opacity:.95;
}

.contact-hours{
  display:flex;
  flex-direction:column;
  gap:.65rem;
}
.contact-hours-row{
  display:flex;
  justify-content:space-between;
  gap:1rem;
  color:#334155;
}
.contact-hours-row strong{
  color:#0f172a;
}

.contact-social{
  display:flex;
  flex-wrap:wrap;
  gap:.75rem;
}
.contact-social-btn{
  width:44px;
  height:44px;
  border-radius:999px;
  background:#dcfce7;
  color:var(--brand);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
}
.contact-social-btn:hover{
  background:#bbf7d0;
  color:var(--brand);
}

/* Auth modal */
/* Use modal backdrop blur (doesn't break fixed header positioning) */
.modal-backdrop.show{
  opacity:.55;
  background-color:rgba(15, 23, 42, .75);
  backdrop-filter:blur(7px);
  -webkit-backdrop-filter:blur(7px);
}

/* Admin login page */
.admin-login-body{
  background:radial-gradient(circle at 50% 10%, rgba(22, 163, 74, .10) 0%, #f8fafc 42%, rgba(56, 189, 248, .10) 100%);
}
.admin-login-shell{
  width:100%;
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:4.5rem 1rem;
}
.admin-login-card{
  width:min(460px, 100%);
  background:#fff;
  border-radius:22px;
  border:1px solid rgba(15, 23, 42, .08);
  box-shadow:0 40px 95px rgba(15, 23, 42, .22);
  padding:2.2rem 2.15rem 1.7rem;
  text-align:center;
}
.admin-login-mark{
  width:86px;
  height:86px;
  border-radius:999px;
  background:var(--brand);
  display:grid;
  place-items:center;
  margin:-4.7rem auto 1.15rem;
  box-shadow:0 24px 60px rgba(22,163,74,.35);
  color:#fff;
}
.admin-login-mark i{
  font-size:2rem;
}
.admin-login-mark img{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:999px;
}
.admin-login-brand{
  font-family:"Playfair Display", serif;
  font-weight:700;
  font-size:1.75rem;
  color:#0f172a;
  letter-spacing:-.01em;
}
.admin-login-sub{
  color:#64748b;
  font-size:.96rem;
  margin-top:.35rem;
  margin-bottom:1.5rem;
}
.admin-input-icon{
  position:relative;
}
.admin-input-icon i{
  position:absolute;
  left:12px;
  top:50%;
  transform:translateY(-50%);
  color:#94a3b8;
  font-size:1rem;
  pointer-events:none;
}
.admin-input{
  border-radius:12px;
  border-color:#e2e8f0;
  padding:.75rem .95rem .75rem 2.45rem;
}
.admin-input:focus{
  border-color:rgba(22,163,74,.55);
  box-shadow:0 0 0 .2rem rgba(22,163,74,.15);
}
.admin-login-btn{
  background:var(--brand);
  border-color:var(--brand);
  color:#fff;
  font-weight:900;
  border-radius:12px;
  padding:.9rem 1rem;
}
.admin-login-btn:hover{
  background:#15803d;
  border-color:#15803d;
  color:#fff;
}

.auth-modal .modal-dialog.auth-modal-dialog{
  max-width:460px;
}
.auth-modal .modal-content{
  border:0;
  border-radius:18px;
  box-shadow:0 30px 80px rgba(15,23,42,.30);
  overflow:hidden;
}
.auth-modal-close{
  position:absolute;
  right:18px;
  top:18px;
  z-index:2;
}
.auth-modal-body{
  padding:2rem 2rem 1.6rem;
  text-align:center;
}
.auth-mark{
  width:56px;
  height:56px;
  border-radius:999px;
  background:var(--brand);
  color:#fff;
  display:grid;
  place-items:center;
  margin:0 auto 1rem;
  box-shadow:0 18px 40px rgba(22,163,74,.25);
}
.auth-mark i{
  font-size:1.35rem;
}
.auth-mark img{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:999px;
}
.auth-title{
  font-family:"Playfair Display", serif;
  font-weight:700;
  font-size:1.65rem;
  color:#0f172a;
}
.auth-sub{
  color:#64748b;
  font-size:.95rem;
  margin-top:.25rem;
}
.auth-form{
  text-align:left;
}
.auth-label{
  font-weight:700;
  color:#334155;
}
.auth-input{
  border-radius:12px;
  border-color:#e2e8f0;
  padding:.75rem .9rem;
}
.auth-input:focus{
  border-color:rgba(22,163,74,.55);
  box-shadow:0 0 0 .2rem rgba(22,163,74,.15);
}
.auth-link{
  color:var(--brand);
  text-decoration:none;
}
.auth-link:hover{
  text-decoration:underline;
  color:var(--brand);
}
.auth-submit{
  background:var(--brand);
  border-color:var(--brand);
  color:#fff;
  font-weight:800;
  border-radius:12px;
  padding:.85rem 1rem;
}
.auth-submit:hover{
  background:#15803d;
  border-color:#15803d;
  color:#fff;
}
.auth-switch{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:.35rem;
}
