/* ══════════════════════════════════════════
   Prakriti Ayurvedic — Store Theme
   ══════════════════════════════════════════ */

:root {
  --primary:   #2ca66a;
  --primary-d: #1d8a54;
  --primary-l: #e8f7f0;
  --secondary: #f4a823;
  --accent:    #e63946;
  --text:      #222;
  --muted:     #6c757d;
  --border:    #e8e8e8;
  --bg:        #f8f9fa;
  --white:     #ffffff;
  --shadow:    0 2px 12px rgba(0,0,0,.08);
  --radius:    10px;
}

* { box-sizing: border-box; margin:0; padding:0; }
body { font-family: 'Hind Siliguri', sans-serif; color:var(--text); background:#fff; font-size:15px; }
a { color:inherit; text-decoration:none; }
img { max-width:100%; }

/* ── Top Bar ── */
.top-bar {
  background: var(--section-topbar-bg, var(--primary-d, #14532d));
  color: var(--section-topbar-text, #fff);
  font-size: 12px;
  padding: 6px 0;
}
.top-bar a { color:inherit; }
.top-bar .marquee-wrap { overflow:hidden; flex:1; margin: 0 20px; }
.top-bar .marquee-text { white-space:nowrap; animation: marquee 22s linear infinite; display:inline-block; }
@keyframes marquee { 0%{transform:translateX(100%)} 100%{transform:translateX(-100%)} }

/* ── Sticky Header ── */
.site-header {
  position: relative;
  background: var(--section-header-bg, #fff);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
  padding: 4px 0;
}
.modern-store-header { z-index: 1001; position: relative; }
.store-header-wrap .store-search-panel { position: absolute; left: 0; right: 0; top: 100%; }
.brand-logo:not(.brand-logo--nav) img  { height: 50px; object-fit:contain; }
.brand-logo:not(.brand-logo--nav) span { font-size: 20px; font-weight:800; color: var(--primary); }

/* Legacy search (search page only) */
.search-form-lg { display:flex; gap:0; border:2px solid #d1d5db; border-radius:10px; overflow:hidden; background:#fff; }
.search-form-lg input { flex:1; border:none; outline:none; padding:14px 16px; font-size:16px; }
.search-form-lg button { border:none; background:var(--primary); color:#fff; padding:0 22px; font-weight:700; }

/* Cart icon legacy */
.cart-icon { color: var(--text); position:relative; font-size:20px; }
.cart-icon:hover { color: var(--primary); }

/* Nav Menu (legacy — unified nav uses store-header.css) */
.main-nav { background: var(--section-nav-bg, var(--primary)); }

/* ── Hero Banner ── */
.hero-carousel .carousel-item img {
  max-height: 480px; object-fit:cover; width:100%;
}
.hero-section {
  background: linear-gradient(135deg, var(--section-hero-bg1, #e8f7f0), var(--section-hero-bg2, #d5f0e3));
  padding: 60px 0;
  text-align:center;
}
.hero-section h1 { font-size:2.2rem; font-weight:800; color: var(--primary); }
.hero-section p   { font-size:1.1rem; color: var(--muted); margin:12px 0 24px; }

/* ── Split Hero Layout (Neemba-style centered) ── */
.hero-section-outer {
  background: #eef1f3;
  padding: 14px 0 18px;
  --hero-block-height: 480px;
}
.hero-section-container {
  max-width: 1180px;
  padding-left: 15px;
  padding-right: 15px;
}
.hero-wrap {
  display: flex;
  align-items: stretch;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(15, 23, 42, .06);
  position: relative;
  height: var(--hero-block-height, 480px);
  min-height: var(--hero-block-height, 480px);
  max-height: var(--hero-block-height, 480px);
}

/* Left category sidebar */
.hero-cat-sidebar {
  width: 215px;
  flex-shrink: 0;
  background: #fff;
  border-right: 1px solid var(--border);
  overflow-y: auto;
  scrollbar-width: thin;
  z-index: 2;
  height: 100%;
  max-height: none;
}
.hero-cat-sidebar-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  padding: 12px 14px 8px;
  border-bottom: 1px solid #f3f4f6;
}
.hero-cat-sidebar::-webkit-scrollbar { width:4px; }
.hero-cat-sidebar::-webkit-scrollbar-thumb { background: var(--border); border-radius:4px; }

.hero-cat-list { list-style:none; margin:0; padding:4px 0; }
.hero-cat-item {
  display: flex; align-items: center; gap:8px;
  padding: 11px 12px;
  min-height: 52px;
  color: var(--text); transition:.18s;
  border-bottom: 1px solid #f3f4f6;
  cursor: pointer;
}
.hero-cat-item:hover, .hero-cat-item.active {
  background: var(--primary-l);
  color: var(--primary);
}
.hero-cat-icon {
  width: 32px; height: 32px; border-radius:6px;
  overflow:hidden; flex-shrink:0;
  background: var(--primary-l);
  display:flex; align-items:center; justify-content:center;
  font-size:14px; color: var(--primary);
}
.hero-cat-icon img { width:100%; height:100%; object-fit:cover; }
.hero-cat-name  { flex:1; font-size:12px; font-weight:600; line-height:1.3; }
.hero-cat-count {
  font-size:10px; font-weight:700;
  background: var(--primary); color:#fff;
  padding:1px 6px; border-radius:50px; min-width:20px; text-align:center;
}
.hero-cat-arrow { font-size:10px; color: var(--muted); flex-shrink:0; }
.hero-cat-item:hover .hero-cat-arrow { color: var(--primary); transform:translateX(2px); }

/* Right slider */
.hero-slider-wrap {
  flex: 1; min-width:0;
  position: relative; overflow:hidden;
  height: 100%;
}
.hero-slider-wrap .carousel,
.hero-slider-wrap .carousel-inner,
.hero-slider-wrap .carousel-item {
  height: 100%;
}
.hero-slide-img {
  width:100%;
  height: 100%;
  min-height: 100%;
  max-height: none;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hero-slide-caption {
  text-shadow: 0 2px 8px rgba(0,0,0,.6);
  bottom: 1.25rem;
  left: 6%;
  right: auto;
  max-width: 52%;
  text-align: left;
}
.hero-slide-caption h2 {
  font-size: clamp(1rem, 2.2vw, 1.65rem);
  font-weight: 800;
  margin-bottom: .35rem;
}
.hero-slide-caption p {
  font-size: clamp(.8rem, 1.6vw, .95rem);
  margin-bottom: 0;
}
.hero-slide-caption .btn {
  font-size: .85rem;
  padding: .4rem 1rem;
}
.hero-slide-dots {
  bottom: 10px;
}
.hero-slide-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

/* Mobile cart float */
.hero-cart-float {
  position:absolute; right:12px; bottom:12px;
  background: var(--primary); color:#fff;
  width:48px; height:48px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-size:18px; box-shadow:0 4px 12px rgba(0,0,0,.2);
  z-index:10;
}
.hero-cart-float span {
  position:absolute; top:-4px; right:-4px;
  background: var(--accent); color:#fff;
  font-size:10px; font-weight:700;
  width:18px; height:18px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
}

/* Responsive hero */
@media(max-width:767px) {
  .hero-section-outer { padding: 10px 0 12px; --hero-block-height: 280px; }
  .hero-section-container { padding-left: 10px; padding-right: 10px; }
  .hero-wrap {
    flex-direction: column;
    height: auto;
    min-height: unset;
    max-height: none;
    border-radius: 8px;
  }
  .hero-cat-sidebar { width:100%; height:auto; max-height:165px; border-right:none; border-bottom:1px solid var(--border); }
  .hero-slider-wrap { height: var(--hero-block-height, 280px); min-height: var(--hero-block-height, 280px); }
  .hero-slide-img { min-height: 100%; }
  .hero-slide-caption { max-width: 90%; left: 5%; }
}
@media(min-width:768px) and (max-width:991px) {
  .hero-section-container { max-width: 960px; }
  .hero-section-outer { --hero-block-height: 440px; }
  .hero-cat-sidebar { width: 190px; }
}
@media(min-width:992px) and (max-width:1199px) {
  .hero-section-container { max-width: 980px; }
  .hero-section-outer { --hero-block-height: 460px; }
}
@media(min-width:1400px) {
  .hero-section-container { max-width: 1240px; }
  .hero-section-outer { --hero-block-height: 500px; }
}

/* ── Trust Bar ── */
.trust-bar {
  background: var(--section-trust-bg, var(--primary-l));
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.trust-item { text-align:center; }
.trust-item .t-icon {
  width:44px; height:44px; border-radius:50%;
  background: var(--primary); color:#fff;
  display:flex; align-items:center; justify-content:center;
  margin: 0 auto 6px;
  font-size:18px;
}
.trust-item .t-title  { font-size:13px; font-weight:700; }
.trust-item .t-sub    { font-size:11px; color: var(--muted); }

/* ── Neemba Category Section ── */
.cat-section {
  background: var(--section-catstrip-bg, #fff);
  padding: 22px 0 26px;
  border-bottom: 1px solid var(--border);
}
.cat-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.cat-section-head h4 {
  font-size: 1.15rem;
  font-weight: 800;
  margin: 0;
  color: var(--text);
}
.cat-drag-hint {
  font-size: 12px;
  color: var(--muted);
}
.cat-scroll-wrap { overflow: hidden; }
.cat-scroll-row {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  padding: 4px 2px 10px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.cat-scroll-row::-webkit-scrollbar { display: none; }
.cat-circle-item {
  flex: 0 0 auto;
  width: 96px;
  text-align: center;
  text-decoration: none;
  color: var(--text);
  transition: .2s;
}
.cat-circle-item:hover,
.cat-circle-item.active { color: var(--primary); }
.cat-circle-img {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  margin: 0 auto 10px;
  position: relative;
  overflow: visible;
  border: 2px solid #e5e7eb;
  background: #f9fafb;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .2s;
}
.cat-circle-item:hover .cat-circle-img,
.cat-circle-item.active .cat-circle-img {
  border-color: var(--primary);
  box-shadow: 0 4px 14px rgba(44,166,106,.18);
}
.cat-circle-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.cat-circle-fallback {
  font-size: 28px;
  color: var(--primary);
}
.cat-circle-count {
  position: absolute;
  bottom: -2px;
  right: -2px;
  background: var(--primary);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  min-width: 22px;
  padding: 2px 6px;
  border-radius: 50px;
  border: 2px solid #fff;
  line-height: 1.2;
}
.cat-circle-name {
  display: block;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
  word-break: break-word;
}

/* ── Neemba Section Bar (Trending / Combo) ── */
.home-prod-block { background: #fff; }
.sec-bar {
  background: var(--primary);
  color: #fff;
  padding: 11px 0;
}
.sec-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.sec-bar h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}
.sec-bar a {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}
.sec-bar a:hover { opacity: .85; text-decoration: underline; }
.sec-products { padding: 24px 0 36px; background: #fff; }
.sec-products-alt { background: var(--bg, #f9fafb); }

/* ── Category Scroll Strip (legacy chips — page builder) ── */
.cat-strip {
  background: var(--section-catstrip-bg, #fff);
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.cat-strip-inner {
  display: flex; gap:12px;
  overflow-x: auto; padding-bottom:4px;
  scrollbar-width: none;
}
.cat-strip-inner::-webkit-scrollbar { display:none; }
.cat-chip {
  display: inline-flex; flex-direction:column; align-items:center;
  min-width: 80px; cursor:pointer; text-decoration:none;
  padding: 8px 12px; border-radius:50px;
  background: var(--primary-l); color: var(--primary);
  font-size:12px; font-weight:600; white-space:nowrap;
  border: 1.5px solid transparent;
  transition:.2s;
}
.cat-chip:hover, .cat-chip.active {
  background: var(--primary); color:#fff;
  border-color: var(--primary);
}
.cat-chip i { font-size:18px; margin-bottom:4px; }

/* ── Section Common ── */
.sec { padding: 40px 0; }
.sec-alt { background: var(--bg); }
.sec-title {
  text-align:center; margin-bottom:28px;
}
.sec-title h2 {
  font-size:1.5rem; font-weight:800;
  color: var(--section-title-color, var(--primary));
  display:inline-flex; align-items:center; gap:8px;
}
.sec-title h2::before, .sec-title h2::after {
  content:''; flex:1; height:2px;
  background: linear-gradient(to right, transparent, var(--primary));
}
.sec-title h2::after { background: linear-gradient(to left, transparent, var(--primary)); }
.sec-title p { color: var(--muted); font-size:14px; margin-top:4px; }
.sec-viewall {
  text-align:center; margin-top:24px;
}
.sec-viewall a {
  border: 1.5px solid var(--primary); color: var(--primary);
  padding: 8px 28px; border-radius:50px; font-weight:600; font-size:14px;
  transition:.2s;
}
.sec-viewall a:hover { background: var(--primary); color:#fff; }

/* ── Product Card ── */
.prod-card {
  background:#fff; border-radius:var(--radius);
  box-shadow: var(--shadow);
  overflow:hidden; transition:.22s;
  border: 1px solid var(--border);
  display:flex; flex-direction:column;
  height:100%;
}
.prod-card:hover { box-shadow:0 10px 32px rgba(44,166,106,.2); transform:translateY(-4px); border-color:rgba(44,166,106,.25); }

.prod-card-img { position:relative; overflow:hidden; background:#f3f4f6; cursor:zoom-in; }
.prod-card-img > a {
  display:block; width:100%; height:100%;
  position:relative; overflow:hidden;
}
.prod-card-img img {
  width:100%; height:220px; object-fit:cover;
  display:block;
  transition:transform .5s cubic-bezier(.25,.46,.45,.94);
  will-change:transform;
  transform:scale(1);
}
.prod-card-img.is-zooming img {
  transform:scale(1.72);
}
.prod-card-img::after {
  content:'';
  position:absolute; inset:0;
  background:linear-gradient(120deg, transparent 30%, rgba(255,255,255,.22) 50%, transparent 70%);
  transform:translateX(-120%);
  transition:transform .65s ease;
  pointer-events:none; z-index:2;
}
.prod-card-img.is-zooming::after {
  transform:translateX(120%);
}
.prod-zoom-hint {
  position:absolute; left:50%; bottom:14px;
  transform:translateX(-50%) translateY(8px);
  background:rgba(17,24,39,.78);
  color:#fff; font-size:11px; font-weight:700;
  padding:5px 12px; border-radius:999px;
  display:flex; align-items:center; gap:6px;
  opacity:0; pointer-events:none;
  transition:opacity .25s ease, transform .25s ease;
  z-index:3; backdrop-filter:blur(4px);
  letter-spacing:.02em;
}
.prod-card-img.is-zooming .prod-zoom-hint {
  opacity:1; transform:translateX(-50%) translateY(0);
}
@media (hover:none), (pointer:coarse) {
  .prod-card-img { cursor:default; }
  .prod-card-img.is-zooming img { transform:scale(1.06); }
  .prod-zoom-hint { display:none; }
}

.prod-badge {
  position:absolute; top:10px; left:10px;
  background: var(--accent); color:#fff;
  font-size:11px; font-weight:700;
  padding:2px 8px; border-radius:50px;
}
.prod-badge-new {
  position:absolute; top:10px; right:10px;
  background: var(--secondary); color:#fff;
  font-size:11px; font-weight:700;
  padding:2px 8px; border-radius:50px;
}
.prod-wishlist {
  position:absolute; bottom:10px; right:10px;
  background:#fff; border:none; border-radius:50%;
  width:32px; height:32px;
  display:flex; align-items:center; justify-content:center;
  box-shadow: var(--shadow); cursor:pointer; font-size:14px;
  color: var(--muted); transition:.2s;
  opacity:0;
}
.prod-card:hover .prod-wishlist { opacity:1; }
.prod-wishlist:hover { color: var(--accent); }

.prod-card-body {
  padding: 12px 14px 14px;
  flex:1; display:flex; flex-direction:column;
}
.prod-card-body .prod-name {
  font-size:14px; font-weight:600; color: var(--text);
  margin-bottom:6px; line-height:1.4;
  overflow:hidden; display:-webkit-box;
  -webkit-line-clamp:2; -webkit-box-orient:vertical;
}
.prod-price-row { display:flex; align-items:center; gap:8px; margin-bottom:10px; }
.prod-price     { font-size:18px; font-weight:800; color: var(--primary); }
.prod-old-price { font-size:13px; color: var(--muted); text-decoration:line-through; }
.prod-save      { font-size:11px; background: #fff3cd; color:#b45309; padding:1px 6px; border-radius:50px; font-weight:600; }

.btn-buy {
  display:block; width:100%;
  background: var(--primary); color:#fff;
  border:none; border-radius:var(--radius);
  padding:9px; font-size:14px; font-weight:700;
  cursor:pointer; text-align:center; transition:.2s;
  margin-top:auto;
}
.btn-buy:hover { background: var(--primary-d); color:#fff; }
.btn-buy-outline {
  background:#fff; color: var(--primary);
  border:1.5px solid var(--primary);
}
.btn-buy-outline:hover { background: var(--primary); color:#fff; }

/* ── Horizontal Product Scroll ── */
.prod-scroll {
  display:flex; gap:16px;
  overflow-x:auto; padding-bottom:8px;
  scrollbar-width:thin; scrollbar-color: var(--primary) var(--bg);
}
.prod-scroll .prod-col { min-width:200px; max-width:200px; }

/* ── Best Seller Tag ── */
.prod-rating { display:flex; align-items:center; gap:4px; font-size:12px; color:#f59e0b; margin-bottom:6px; }
.prod-rating span { color: var(--muted); }

/* ── Category Grid ── */
.cat-grid-card {
  background: var(--primary-l); border-radius:var(--radius);
  padding:20px 12px; text-align:center;
  transition:.2s; cursor:pointer; border:1.5px solid transparent;
  display:block; color: var(--primary);
}
.cat-grid-card:hover { background: var(--primary); color:#fff; border-color: var(--primary); }
.cat-grid-card i { font-size:28px; display:block; margin-bottom:8px; }
.cat-grid-card span { font-size:13px; font-weight:600; }

/* ── WhatsApp Float ── */
.wa-float {
  position:fixed; bottom:80px; right:20px; z-index:9990;
  width:50px; height:50px; border-radius:50%;
  background:#25d366; color:#fff;
  display:flex; align-items:center; justify-content:center;
  font-size:24px; box-shadow:0 4px 16px rgba(37,211,102,.4);
  transition:.2s;
}
.wa-float:hover { transform:scale(1.1); color:#fff; }

/* ── Footer ── */
.site-footer {
  background: var(--section-footer-bg, #1a1a2e);
  color: var(--section-footer-text, #ccc);
  padding: 48px 0 0;
}
.footer-logo { height:50px; margin-bottom:12px; }
.footer-brand-name { font-size:20px; font-weight:800; color:var(--section-footer-heading, #fff); margin-bottom:8px; }
.footer-desc { font-size:13px; line-height:1.7; color:var(--section-footer-link, #aaa); }
.footer-social { display:flex; gap:8px; margin-top:16px; }
.footer-social a {
  width:34px; height:34px; border-radius:50%;
  background:rgba(255,255,255,.1);
  display:flex; align-items:center; justify-content:center;
  color:#fff; font-size:14px; transition:.2s;
}
.footer-social a:hover { background: var(--primary); }
.footer-heading { font-size:14px; font-weight:700; color:var(--section-footer-heading, #fff); margin-bottom:14px; text-transform:uppercase; letter-spacing:.5px; }
.footer-list { list-style:none; }
.footer-list li { margin-bottom:8px; }
.footer-list li a { color:var(--section-footer-link, #aaa); font-size:13px; transition:.2s; display:inline-flex; align-items:center; gap:6px; }
.footer-list li a:hover { color:var(--section-footer-heading, #fff); }
.footer-link-arrow { font-size:10px; opacity:.85; flex-shrink:0; }
.footer-contact-item { display:flex; gap:10px; align-items:flex-start; color:var(--section-footer-link, #aaa); font-size:13px; margin-bottom:10px; margin-top:10px; }
.footer-contact-item:first-of-type { margin-top:16px; }
.footer-contact-item a { color:var(--section-footer-link, #aaa); text-decoration:none; }
.footer-contact-item a:hover { color:var(--section-footer-heading, #fff); }
.footer-contact-item i { color: var(--section-footer-heading, #fff); margin-top:2px; flex-shrink:0; width:16px; text-align:center; opacity:.9; }
.footer-bottom {
  border-top:1px solid rgba(255,255,255,.12);
  padding:14px 0; margin-top:32px;
  font-size:12px;
  color:var(--section-footer-link, #ccc);
  background:var(--section-footer-bottom-bg, rgba(0,0,0,.12));
}
.footer-bottom-inner {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}
.footer-copy { flex:1; min-width:200px; }
.footer-dev { white-space:nowrap; }
.footer-dev a { color:var(--section-footer-heading, #fff); font-weight:600; text-decoration:none; }
.footer-dev a:hover { text-decoration:underline; opacity:.9; }
.footer-bottom a { color: var(--section-footer-heading, #fff); }
@media(max-width:575px){
  .footer-bottom-inner { flex-direction:column; text-align:center; }
  .footer-copy, .footer-dev { width:100%; }
}

/* ── Order Tracking Section ── */
.track-section { background: var(--primary-l); padding:48px 0; }
.track-section h3 { font-size:1.4rem; font-weight:800; color: var(--primary); }
.track-form { display:flex; gap:0; max-width:480px; margin:16px auto 0; }
.track-form input  { flex:1; border:1.5px solid var(--primary); border-right:none; border-radius:var(--radius) 0 0 var(--radius); padding:10px 16px; font-size:14px; outline:none; }
.track-form button { background: var(--primary); color:#fff; border:none; border-radius:0 var(--radius) var(--radius) 0; padding:10px 22px; font-weight:700; cursor:pointer; }

/* ── Testimonials ── */
.testimonial-card {
  background:#fff; border-radius:var(--radius);
  padding:20px; box-shadow: var(--shadow);
  border:1px solid var(--border);
}
.testimonial-card .stars { color:#f59e0b; font-size:14px; margin-bottom:8px; }
.testimonial-card p  { font-size:13px; color: var(--text); font-style:italic; }
.testimonial-card .reviewer { margin-top:12px; display:flex; align-items:center; gap:10px; }
.testimonial-card .reviewer img { width:40px; height:40px; border-radius:50%; object-fit:cover; }
.testimonial-card .reviewer-name { font-weight:700; font-size:13px; }

/* ── Responsive ── */
@media(max-width:576px) {
  .hero-section h1 { font-size:1.5rem; }
  .prod-card-img img { height:180px; }
  .sec { padding:28px 0; }
}

/* ── Animations ── */
@keyframes fadeInUp {
  from { opacity:0; transform:translateY(20px); }
  to   { opacity:1; transform:translateY(0); }
}
.animate-up { animation: fadeInUp .5s ease both; }

/* Homepage product reveal */
.prod-card.prod-reveal {
  opacity:0; transform:translateY(18px);
  transition:opacity .55s ease, transform .55s ease, box-shadow .22s, border-color .22s;
}
.prod-card.prod-reveal.is-visible {
  opacity:1; transform:translateY(0);
}
.sec-title h2 {
  position:relative; display:inline-block;
}
.sec-title h2::after {
  content:''; display:block; width:48px; height:3px;
  background:linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius:999px; margin:8px auto 0;
}

/* ── Admin Edit Bar (GrapesJS trigger) ── */
.edit-bar {
  position:fixed; bottom:20px; left:50%; transform:translateX(-50%);
  z-index:8888; display:none;
}
.edit-bar.show { display:flex; }
.edit-bar button {
  background: var(--primary); color:#fff;
  border:none; border-radius:50px; padding:10px 24px;
  font-weight:700; font-size:14px; box-shadow:0 4px 16px rgba(0,0,0,.2);
  cursor:pointer; display:flex; align-items:center; gap:8px;
}
