/* ════════════════════════════════════════════════════════
   SUHAA AURAAMART — Custom CSS
   Single source of truth. No duplicates.
════════════════════════════════════════════════════════ */

/* ── CSS Variables ── */
:root {
  --color-primary:         #20565b;
  --color-primary-dark:    #20565b;
  --color-primary-light:   #eeeeee;
  --color-primary-muted:   #f0e8df;
  --color-navbar-bg:       #ffffff;
  --color-navbar-border:   var(--color-primary);
  --color-page-bg:         #f5f0eb;
  --color-text-main:       #444444;
  --color-text-muted:      #999999;
  --color-text-subtle:     #bbbbbb;
  --color-text-on-primary: #ffffff;
  --color-brand-sub:       #aaaaaa;
  --color-search-bg:       #f7f7f7;
  --color-search-border:   #e8e8e8;
  --color-badge-bg:        var(--color-primary-light);
  --color-badge-border:    #f0d0a0;
  --color-coin-from:       #f5c842;
  --color-coin-to:         #e8a010;
  --color-mobile-bg:       #ffffff;
  --color-mobile-divider:  #f0e8df;
  --color-mobile-hover-bg: #fff3e8;
  --color-divider:         #f0e8df;
  --color-hover-bg:        #fff3e8;
  
    --brown-hero: #3D1005;
    /* hero darkest */
    --brown-mid: #7B2208;
    /* hero/commitment bg */
    --brown-light: #A0310E;
    --amber: #C8873A;
    /* badges, cert bg */
    --amber-light: #E8A84A;
    --gold: #D4A017;
    --cream: #FFF8F0;
    --peach: #FFF0E0;
    --peach-border: #F0DDD0;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Segoe UI', sans-serif; background: var(--color-page-bg); }
a {
    text-decoration: none !important;
}

/* ════════════════════════════════════════════════════════
   NAVBAR
════════════════════════════════════════════════════════ */

.suhaa-navbar {
  background: var(--color-navbar-bg);
  border-bottom: 3px solid var(--color-navbar-border);
  min-height: 70px;
  position: relative;
  z-index: 1020;
}
.suhaa-navbar.is-sticky { position: sticky; top: 0; }

.navbar-inner {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 16px;
  min-height: 70px;
  flex-wrap: nowrap;
}

/* Logo */
.navbar-brand-custom {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-circle {
  /*width: 44px; height: 44px;*/
  /*border-radius: 50%;*/
  /*border: 2px solid var(--color-primary);*/
  /*background: var(--color-primary-light);*/
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; overflow: hidden;
}
.logo-circle img {object-fit: contain; }
.brand-name { display: block; font-size: 12px; font-weight: 700; color: var(--color-primary-dark); }
.brand-sub  { display: block; font-size: 8px;  color: var(--color-brand-sub); letter-spacing: 1.5px; text-transform: uppercase; }

/* Desktop nav links */
.nav-links {
  display: flex; align-items: center; gap: 1px;
  list-style: none; margin: 0 0 0 auto; padding: 0; flex-shrink: 0;
}
.nav-links li a {
  display: flex; align-items: center; gap: 5px;
  padding: 5px 8px; font-size: 11.5px; font-weight: 500;
  color: var(--color-text-main); text-decoration: none;
  border-radius: 20px; white-space: nowrap; transition: all 0.18s;
}
.nav-icon-wrap {
  width: 20px; height: 20px; border-radius: 5px;
  background: var(--color-primary-light);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: background 0.18s;
}
.nav-icon-wrap svg { stroke: var(--color-primary-dark); transition: stroke 0.18s; }

.nav-links li a:hover                    { color: var(--color-primary); }
.nav-links li a:hover .nav-icon-wrap     { background: var(--color-primary); }
.nav-links li a:hover .nav-icon-wrap svg { stroke: #fff; }
.nav-links li a.active                   { background: var(--color-primary); color: #fff !important; font-weight: 600; }
.nav-links li a.active .nav-icon-wrap    { background: rgba(255,255,255,0.22); }
.nav-links li a.active .nav-icon-wrap svg{ stroke: #fff; }

/* Right section */
.nav-right { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }

/* Points badge */
.points-badge {
  display: flex; align-items: center; gap: 5px;
  background: var(--color-badge-bg); border: 1.5px solid var(--color-badge-border);
  border-radius: 20px; padding: 4px 10px 4px 5px;
  font-size: 12px; font-weight: 700; color: var(--color-primary-dark); white-space: nowrap;
}
.points-coin {
  width: 22px; height: 22px; border-radius: 50%;
  background: linear-gradient(135deg, var(--color-coin-from), var(--color-coin-to));
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; color: #fff; font-weight: 700; flex-shrink: 0;
}

/* Search */
.suhaa-search-wrap { position: relative; }
.search-bar {
  display: flex; align-items: center;
  background: var(--color-search-bg); border: 1.5px solid var(--color-search-border);
  border-radius: 20px; padding: 5px 12px; gap: 6px;
  width: 200px; transition: border-color 0.2s;
}
.search-bar:focus-within { border-color: var(--color-primary); }
.search-bar i     { color: var(--color-text-muted); font-size: 12px; }
.search-bar input { border: none; background: transparent; outline: none; font-size: 12px; color: var(--color-text-main); width: 100%; }
.search-bar input::placeholder { color: var(--color-text-subtle); }

/* Icon button */
.icon-btn {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--color-primary-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-primary-dark); font-size: 14px;
  text-decoration: none; border: none; cursor: pointer;
  transition: background 0.2s, color 0.2s; flex-shrink: 0; position: relative;
}
.icon-btn:hover     { background: var(--color-primary); color: #fff; }
.icon-btn svg       { stroke: var(--color-primary-dark); transition: stroke 0.2s; }
.icon-btn:hover svg { stroke: #fff; }
.icon-btn.dropdown-toggle::after { display: none !important; }

/* Language <li> wrapper */
.suhaa-lang-li { list-style: none; padding: 0; margin: 0; display: flex; align-items: center; }

/* Shared dropdown skin */
.suhaa-dd-menu {
  border: none !important;
  border-radius: 16px !important;
  box-shadow: 0 16px 48px rgba(0,0,0,0.14) !important;
  padding: 6px 0 8px !important;
  min-width: 220px;
  margin-top: 8px !important;
  z-index: 10060 !important;
}
.suhaa-dd-header {
  font-size: 10px; font-weight: 700; color: var(--color-text-muted);
  padding: 8px 16px; letter-spacing: 0.8px; text-transform: uppercase;
  border-bottom: 1px solid var(--color-divider); margin-bottom: 4px;
}
.suhaa-dd-divider { border-top: 1px solid var(--color-divider); margin: 4px 0; }

/* Profile dropdown items */
.suhaa-dd-item {
  display: flex !important; align-items: center; gap: 10px;
  padding: 10px 16px !important; font-size: 13px !important; font-weight: 500;
  color: var(--color-text-main) !important; text-decoration: none; transition: background 0.15s;
}
.suhaa-dd-item:hover        { background: var(--color-primary-light) !important; color: var(--color-primary) !important; text-decoration: none; }
.suhaa-dd-logout            { color: #d63030 !important; }
.suhaa-dd-logout:hover      { background: #fff0f0 !important; color: #d63030 !important; }
.suhaa-dd-icon {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--color-primary-muted);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-primary); font-size: 13px; flex-shrink: 0;
}
.suhaa-dd-icon--red { background: #ffe5e5 !important; color: #d63030 !important; }

/* Language items */
.suhaa-lang-item {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 16px; text-decoration: none; cursor: pointer;
  transition: background 0.15s; color: var(--color-text-main);
}
.suhaa-lang-item:hover  { background: var(--color-primary-light); text-decoration: none; color: var(--color-primary-dark); }
.suhaa-lang-item.active { background: var(--color-primary-light); }
.suhaa-lang-flag {
  width: 30px; height: 30px; border-radius: 50%;
  background: #f0f0f0; overflow: hidden;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.suhaa-lang-flag img   { width: 100%; height: 100%; object-fit: cover; }
.suhaa-lang-info       { flex: 1; line-height: 1.2; }
.suhaa-lang-name       { display: block; font-size: 13px; font-weight: 600; color: var(--color-text-main); }
.suhaa-lang-sub        { display: block; font-size: 10px; color: var(--color-text-muted); }
.suhaa-lang-radio      { flex-shrink: 0; font-size: 15px; }
.suhaa-lang-radio .fa-solid  { color: var(--color-primary); }
.suhaa-lang-radio .fa-regular { color: #ccc; }

/* Cart */
.suhaa-cart-wrap { position: relative; }
.suhaa-cart-badge {
  position: absolute; top: -4px; right: -4px;
  min-width: 17px; height: 17px;
  background: var(--color-primary); color: #fff;
  font-size: 9px; font-weight: 700; border-radius: 20px; border: 2px solid #fff;
  display: flex; align-items: center; justify-content: center; padding: 0 3px; line-height: 1;
}


/* Top banner */
.suhaa-top-banner { background: var(--color-primary); }

/* Mobile toggle */
.mobile-toggle {
  display: none; background: none; border: none;
  font-size: 20px; color: var(--color-primary);
  cursor: pointer; padding: 4px 6px; margin-left: auto; flex-shrink: 0;
}

/* Mobile menu */
.mobile-menu { display: none; background: #fff; border-top: 1px solid var(--color-mobile-divider); padding: 12px 18px 20px; }
.mobile-menu.open { display: block; }

.mobile-search {
  display: flex; align-items: center;
  background: var(--color-search-bg); border: 1.5px solid var(--color-search-border);
  border-radius: 20px; padding: 8px 14px; gap: 8px; margin-bottom: 10px;
}
.mobile-search i     { color: var(--color-text-muted); font-size: 12px; }
.mobile-search input { border: none; background: transparent; outline: none; font-size: 13px; color: var(--color-text-main); width: 100%; }
.mobile-search input::placeholder { color: var(--color-text-subtle); }

.mobile-nav-links { list-style: none; padding: 0; margin: 0 0 10px; }
.mobile-nav-links li a {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 10px; font-size: 13.5px; font-weight: 500;
  color: var(--color-text-main); text-decoration: none;
  border-radius: 10px; transition: background 0.15s, color 0.15s;
}
.mobile-nav-links li a:hover  { background: var(--color-mobile-hover-bg); color: var(--color-primary); }
.mobile-nav-links li a.active { background: var(--color-primary); color: #fff; }

.mobile-nav-icon {
  width: 28px; height: 28px; border-radius: 7px;
  background: var(--color-primary-muted);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.mobile-nav-icon svg { stroke: var(--color-primary-dark); }
.mobile-nav-links li a:hover  .mobile-nav-icon     { background: var(--color-primary); }
.mobile-nav-links li a:hover  .mobile-nav-icon svg { stroke: #fff; }
.mobile-nav-links li a.active .mobile-nav-icon     { background: rgba(255,255,255,0.25); }
.mobile-nav-links li a.active .mobile-nav-icon svg { stroke: #fff; }

.mobile-lang-row   { padding: 10px 0 12px; border-top: 1px solid var(--color-mobile-divider); }
.mobile-lang-label { font-size: 10px; font-weight: 700; color: var(--color-text-muted); text-transform: uppercase; letter-spacing: 1px; display: block; margin-bottom: 8px; }
.mobile-lang-items { display: flex; flex-wrap: wrap; gap: 8px; }
.mobile-lang-pill  {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 5px 11px; border-radius: 20px; font-size: 12px; font-weight: 500;
  color: var(--color-text-main); background: var(--color-primary-light);
  border: 1.5px solid var(--color-primary-muted); text-decoration: none; transition: all 0.15s;
}
.mobile-lang-pill img    { border-radius: 50%; object-fit: cover; width: 14px; height: 14px; }
.mobile-lang-pill:hover  { background: var(--color-primary-muted); text-decoration: none; }
.mobile-lang-pill.active { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }

.mobile-bottom { display: flex; align-items: center; gap: 10px; padding-top: 12px; border-top: 1px solid var(--color-mobile-divider); }

/* Navbar responsive */
@media (max-width: 1024px) {
  .nav-links li a { padding: 5px 6px; font-size: 11px; }
  .nav-icon-wrap  { width: 18px; height: 18px; }
  .search-bar     { width: 120px; }
  .navbar-inner   { gap: 4px; padding: 0 12px; }
  .nav-right      { gap: 4px; }
}
@media (max-width: 900px) {
  .nav-links, .search-bar, .points-badge { display: none !important; }
  .mobile-toggle { display: flex; }
}
@media (max-width: 480px) {
  .navbar-inner { padding: 0 10px;
  
        display: flex;
        justify-content: space-between;}
  .logo-circle  { width: auto; height: auto; }
  
  .pbox-bottom {
        display: block !important;
        height: unset !important;
    }
}


/* ════════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════════ */

.suhaa-footer {
  background: #1e1e24;
  color: #aaaaaa;
  padding: 48px 0 0;
}

.suhaa-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.2fr 1.2fr;
  gap: 32px 24px;
  /*padding-bottom: 40px;*/
  border-bottom: 1px solid #2e2e38;
}

/* Brand col */
.sf-logo            { display: inline-block; margin-bottom: 14px; }
.sf-logo img        { height: 52px; width: auto; object-fit: contain; }
.sf-about           { font-size: 12.5px; line-height: 1.7; color: #999; margin-bottom: 16px; max-width: 280px; }
.sf-about p         { margin: 0; font-size: inherit; color: inherit; }

.sf-contact-row     { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.sf-contact-row--top{ align-items: flex-start; }
.sf-contact-icon    { flex-shrink: 0; color: var(--color-primary); margin-top: 1px; }
.sf-contact-icon svg{ stroke: var(--color-primary); }
.sf-contact-text    { font-size: 12.5px; color: #999; text-decoration: none; line-height: 1.5; }
.sf-contact-text:hover { color: var(--color-primary); }

/* Link cols */
.sf-col-title { font-size: 12px; font-weight: 700; color: #ccc; text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 16px; }
.sf-link-list { list-style: none; padding: 0; margin: 0; }
.sf-link-list li { margin-bottom: 10px; }
.sf-link-list li a { font-size: 13px; color: #888; text-decoration: none; transition: color 0.15s; }
.sf-link-list li a:hover { color: var(--color-primary); }

/* Payment 2×2 grid */
.sf-payment-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.sf-payment-item {
  background: #fff; border-radius: 6px; padding: 6px 10px;
  display: flex; align-items: center; justify-content: center; min-height: 36px;
}
.sf-payment-item img         { max-height: 22px; max-width: 70px; object-fit: contain; }
.sf-payment-placeholder      { font-size: 11px; font-weight: 700; color: #444; }

/* CTA col */
.sf-col--cta { display: flex; flex-direction: column; align-items: flex-start; gap: 20px; }
.sf-subscribe-box  { width: 100%; }
.sf-subscribe-form { display: flex; flex-direction: column; gap: 10px; }

/* "Join Us" pill trigger */
.sf-join-trigger {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--color-primary); color: #fff; border: none;
  border-radius: 25px; padding: 10px 20px;
  font-size: 13px; font-weight: 700; cursor: pointer;
  transition: background 0.2s, transform 0.15s; white-space: nowrap;
}
.sf-join-trigger:hover { background: var(--color-primary); transform: translateY(-1px); }
.sf-join-trigger svg   { stroke: #fff; flex-shrink: 0; }

/* Inline pill input + send */
.sf-subscribe-row {
  display: flex; align-items: center;
  background: #2a2a33; border: 1.5px solid #3a3a46;
  border-radius: 25px; overflow: hidden; transition: border-color 0.2s;
}
.sf-subscribe-row:focus-within { border-color: var(--color-primary); }
.sf-subscribe-input {
  flex: 1; background: transparent; border: none; outline: none;
  padding: 9px 14px; font-size: 12.5px; color: #ccc; min-width: 0;
}
.sf-subscribe-input::placeholder { color: #555; }
.sf-subscribe-send {
  flex-shrink: 0; width: 36px; height: 36px;
  background: var(--color-primary); border: none; border-radius: 50%; margin: 3px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background 0.2s;
}
.sf-subscribe-send:hover { background: var(--color-primary); }
.sf-subscribe-send svg   { stroke: #fff; }

/* Social icons */
.sf-social { display: flex; gap: 10px; flex-wrap: wrap; }
.sf-social-btn {
  width: 34px; height: 34px; border-radius: 50%;
  background: #2e2e38; display: flex; align-items: center; justify-content: center;
  color: #888; font-size: 15px; text-decoration: none; transition: background 0.2s, color 0.2s;
}
.sf-social-btn:hover { background: var(--color-primary); color: #fff; }

/* Bottom bar */
.sf-bottom-bar   { border-top: 1px solid #2e2e38; padding: 16px 0; }
.sf-copyright    { text-align: center; font-size: 12.5px; color: #666; }
.sf-copyright a  { color: #888; text-decoration: none; }
.sf-copyright a:hover { color: #e8821a; }

/* Footer responsive */
@media (max-width: 1200px) {
  .suhaa-footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 28px 20px; }
  .sf-col--cta { grid-column: span 2; flex-direction: row; align-items: center; flex-wrap: wrap; }
}
@media (max-width: 768px) {
  .suhaa-footer-grid { grid-template-columns: 1fr 1fr; gap: 28px 20px; }
  .sf-col--brand { grid-column: span 2; }
  .sf-col--cta   { grid-column: span 2; flex-direction: row; align-items: center; flex-wrap: wrap; }
}
@media (max-width: 480px) {
  .suhaa-footer-grid { grid-template-columns: 1fr; }
  .sf-col--brand, .sf-col--cta { grid-column: span 1; }
  .sf-about { max-width: 100%; }
}






/* ── Cart dropdown panel ── */
#cart_items .dropdown-toggle::after { display: none !important; }

.suhaa-cart-menu {
  right: 0 !important;
  left: auto !important;
  width: 300px !important;
  max-width: 300px !important;
  border: none !important;
  border-radius: 16px !important;
  box-shadow: 0 16px 48px rgba(0,0,0,0.14) !important;
  padding: 0 !important;
  overflow: hidden !important;
  z-index: 10060 !important;
  margin-top: 8px !important;
  /* CRITICAL: default display:none, Bootstrap toggles to block on open */
}

/* Header row */
.suhaa-cart-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 16px 10px;
  border-bottom: 1px solid var(--color-primary-muted);
}
.suhaa-cart-title {
  font-size: 13px; font-weight: 700; color: var(--color-text-main);
}
.suhaa-cart-pill {
  font-size: 11px; font-weight: 700;
  color: var(--color-primary-dark);
  background: var(--color-primary-muted);
  border: 1px solid var(--color-badge-border);
  border-radius: 20px; padding: 3px 10px;
}

/* Items list */
.suhaa-cart-list {
  list-style: none; margin: 0; padding: 6px 0;
  max-height: 260px; overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--color-primary-muted) transparent;
}
.suhaa-cart-list::-webkit-scrollbar       { width: 4px; }
.suhaa-cart-list::-webkit-scrollbar-thumb { background: var(--color-primary-muted); border-radius: 4px; }

.suhaa-cart-item {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 16px; transition: background 0.15s;
}
.suhaa-cart-item:hover { background: var(--color-primary-light); }

.suhaa-cart-thumb {
  flex-shrink: 0; width: 48px; height: 48px;
  border-radius: 8px; overflow: hidden;
  border: 1px solid var(--color-primary-muted);
  background: var(--color-search-bg); display: block;
}
.suhaa-cart-thumb img {
  width: 100%; height: 100%; object-fit: cover; transition: transform 0.2s;
}
.suhaa-cart-item:hover .suhaa-cart-thumb img { transform: scale(1.06); }

.suhaa-cart-info { flex: 1; min-width: 0; }
.suhaa-cart-name {
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden; font-size: 12px; font-weight: 600;
  color: var(--color-text-main); text-decoration: none;
  line-height: 1.3; margin-bottom: 4px;
}
.suhaa-cart-name:hover { color: var(--color-primary); }
.suhaa-cart-meta  { display: flex; align-items: center; gap: 6px; }
.suhaa-cart-qty   { font-size: 11px; font-weight: 600; color: var(--color-text-muted); background: var(--color-primary-muted); border-radius: 5px; padding: 1px 6px; }
.suhaa-cart-price { font-size: 12px; font-weight: 700; color: var(--color-primary-dark); }

.suhaa-cart-remove {
  flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%;
  background: transparent; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--color-text-subtle); font-size: 11px; transition: background 0.15s, color 0.15s;
}
.suhaa-cart-remove:hover { background: #ffe5e5; color: #e03030; }

/* Subtotal */
.suhaa-cart-subtotal {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 16px;
  border-top: 1px solid var(--color-primary-muted);
  background: var(--color-primary-light);
}
.suhaa-cart-subtotal-label { font-size: 12px; font-weight: 500; color: var(--color-text-muted); }
.suhaa-cart-subtotal-value { font-size: 14px; font-weight: 800; color: var(--color-primary-dark); }

/* View Cart button */
.suhaa-cart-actions { padding: 10px 16px 14px; }
.suhaa-cart-btn-view {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 9px 16px;
  background: var(--color-primary); color: #fff;
  font-size: 13px; font-weight: 700; border-radius: 25px;
  text-decoration: none; transition: background 0.2s, transform 0.15s;
}
.suhaa-cart-btn-view:hover {
  background: var(--color-primary-dark); color: #fff;
  text-decoration: none; transform: translateY(-1px);
}

/* Empty state */
.suhaa-cart-empty      { padding: 28px 16px 24px; text-align: center; }
.suhaa-cart-empty-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--color-primary-muted);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px; font-size: 22px; color: var(--color-primary);
}
.suhaa-cart-empty-title { font-size: 13px; font-weight: 700; color: var(--color-text-main); margin-bottom: 4px; }
.suhaa-cart-empty-sub   { font-size: 12px; color: var(--color-text-muted); }

/* Cart badge on trigger */
.suhaa-cart-badge {
  position: absolute; top: -4px; right: -4px;
  min-width: 17px; height: 17px;
  background: var(--color-primary); color: #fff;
  font-size: 9px; font-weight: 700; border-radius: 20px; border: 2px solid #fff;
  display: flex; align-items: center; justify-content: center;
  padding: 0 3px; line-height: 1; pointer-events: none;
}






/* Home */
/* Festival card (right) */
.fcard {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, .97);
    border-radius: 14px;
    padding: 18px 20px;
    min-width: 230px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .2);
    z-index: 3;
}

.fc-head {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
}

.fc-head i {
    color: var(--or);
    font-size: 16px;
    margin-top: 2px;
}

.fc-lbl {
    font-size: 10px;
    color: var(--tmu);
    display: block;
}

.fc-name {
    font-size: 14px;
    font-weight: 700;
    display: block;
}

.countdown-row {
    display: flex;
    gap: 10px;
    margin-bottom: 14px;
}

.cbox {
    background: var(--or);
    color: #fff;
    border-radius: 8px;
    text-align: center;
    padding: 7px 13px;
    flex: 1;
}

.cbox .cn {
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
}

.cbox .cu {
    font-size: 9px;
    text-transform: uppercase;
    opacity: .85;
}

.btn-order-kit {
    width: 100%;
    background: var(--or);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 10px;
}

.delivery-row {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #FFF8F0;
    border-radius: 8px;
    padding: 9px 12px;
}

.delivery-row i {
    color: var(--or);
    font-size: 14px;
}

.dr-title {
    font-size: 12px;
    font-weight: 600;
}

.dr-sub {
    font-size: 10px;
    color: var(--tmu);
}

/* ═══ TRUST BAR ═════════════════════════════ */
.trust-bar {
    background: #E86927;
    border-top: 1px solid var(--bd);
    border-bottom: 1px solid var(--bd);
    overflow-x: auto;
    scrollbar-width: none;
}

.trust-bar::-webkit-scrollbar {
    display: none;
}

.trust-inner {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 24px;
    white-space: nowrap;
    min-width: max-content;
}

.titem {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 11.5px;
    color: #fff;
    font-weight: 400;
}

.titem i {
    color: #fff;
    font-size: 13px;
}

.tdiv {
    color: #ddd;
    padding: 0 2px;
}

/* ═══ SECTION HELPERS ═══════════════════════ */
.sec-label {
    font-size: 10.5px;
    font-weight: 700;
    color: var(--or);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 4px;
}

.sec-title {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: clamp(18px, 3vw, 24px);
    font-weight: 700;
    color: var(--tx);
    margin-bottom: 4px;
}

.sec-sub {
    font-size: 12px;
    color: var(--tmu);
    margin-bottom: 0;
}

.view-all {
    font-size: 12px;
    color: var(--or);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}

.view-all:hover {
    text-decoration: underline;
}

/* ═══ CATEGORY GRID ═════════════════════════ */
.cat-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 190px;
    cursor: pointer;
}

.cat-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s;
}

.cat-card:hover img {
    transform: scale(1.06);
}

.cat-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .65) 0%, transparent 60%);
}

.cat-content {
    position: absolute;
    bottom: 14px;
    left: 16px;
    right: 16px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.cat-name {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
}

.cat-arrow {
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, .2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 12px;
    border: 1.5px solid rgba(255, 255, 255, .5);
}

/* ═══ PRODUCT SCROLL ════════════════════════ */
.scroll-row {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 14px;
    scrollbar-width: none;
}

.scroll-row::-webkit-scrollbar {
    display: none;
}

.pcard {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--bd);
    flex-shrink: 0;
    transition: box-shadow .2s;
}

.pcard:hover {
    box-shadow: 0 4px 18px rgba(232, 99, 10, .14);
}

.pimg {
    position: relative;
    height: 180px;
    overflow: hidden;
    padding: 10px;
}

.pimg img {
    border-radius: 20px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pbadge {
    position: absolute;
    top: 8px;
    left: 8px;
    font-size: 9px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 12px;
    text-transform: uppercase;
}

.b-new {
    background: var(--or);
    color: #fff;
}

.b-trend {
    background: #FFD700;
    color: #333;
}

.b-fav {
    background: #E8F5E9;
    color: #2E7D32;
}

.b-narr {
    background: var(--or);
    color: #fff;
}

.pbody {
    padding: 10px;
}

.pstars {
    color: var(--gd);
    font-size: 10px;
    margin-bottom: 2px;
}

.pstars span {
    color: var(--tlt);
    font-size: 10px;
    margin-left: 2px;
}

.pname {
    font-size: 12px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 6px;
}

.pprow {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 4px;
}

.pcurr {
    font-size: 14px;
    font-weight: 700;
}

.porig {
    font-size: 11px;
    color: var(--tlt);
    text-decoration: line-through;
}

.poff {
    font-size: 10px;
    color: var(--gn);
    font-weight: 600;
}

.btn-add {
    width: max-content;
    background: var(--or);
    color: #fff;
    border: none;
    border-radius: 100px;
    padding: 7px 10px;
    font-size: 11.5px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 8px;
    transition: background .2s;
}

.btn-add:hover {
    background: var(--ord);
}

/* Filter tabs */
.filter-tabs {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
}

.ftab {
    padding: 5px 14px;
    border-radius: 20px;
    border: 1.5px solid #e8d0c0;
    font-size: 11.5px;
    font-weight: 500;
    color: var(--tm);
    cursor: pointer;
    background: #fff;
    white-space: nowrap;
    transition: all .2s;
}

.ftab:hover,
.ftab.active {
    background: var(--or);
    color: #fff;
    border-color: var(--or);
}

/* ═══ EXPLORE GRID ══════════════════════════ */
.explore-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 240px;
    cursor: pointer;
}

.explore-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s;
}

.explore-card:hover img {
    transform: scale(1.06);
}

.ec-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .6) 0%, transparent 55%);
}

.ec-content {
    position: absolute;
    bottom: 14px;
    left: 14px;
    right: 14px;
}

.ec-name {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 2px;
}

.ec-sub {
    color: rgba(255, 255, 255, .75);
    font-size: 10.5px;
}

.ec-btn {
    width: 100%;
    margin-top: 8px;
    background: rgba(255, 255, 255, .2);
    border: 1px solid rgba(255, 255, 255, .5);
    color: #E8630A;
    background-color: #fff;
    text-align: center;
    font-weight: 600;
    padding: 7px 12px;
    border-radius: 6px;
    cursor: pointer;
}

/* ═══ ABOUT ═════════════════════════════════ */
.about-img {
    width: 100%;
    border-radius: 14px;
    height: 320px;
    object-fit: cover;
}

.about-title {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: clamp(20px, 3.5vw, 30px);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 14px;
}

.about-desc {
    font-size: 12.5px;
    color: var(--tm);
    line-height: 1.8;
    margin-bottom: 24px;
}

.feat-icon {
    font-size: 26px;
    color: var(--or);
    margin-bottom: 8px;
    display: block;
}

.feat-name {
    font-size: 12.5px;
    font-weight: 700;
}

.feat-sub {
    font-size: 10.5px;
    color: var(--tlt);
}

.btn-learn {
    background: var(--or);
    color: #fff;
    border: none;
    border-radius: 25px;
    padding: 11px 26px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
}

.btn-learn:hover {
    background: var(--ord);
}

/* ═══ REVIEWS ═══════════════════════════════ */
.rating-big {
    font-size: 54px;
    font-weight: 800;
    line-height: 1;
}

.rstars {
    color: var(--gd);
    font-size: 16px;
    margin: 4px 0;
}

.rcount {
    font-size: 11px;
    color: var(--tlt);
    margin-bottom: 14px;
}

.rbar-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 5px;
}

.rbar-lbl {
    font-size: 11px;
    color: var(--tm);
    width: 12px;
    text-align: right;
}

.rbar-track {
    flex: 1;
    height: 6px;
    background: #f0e0d0;
    border-radius: 3px;
    overflow: hidden;
}

.rbar-fill {
    height: 100%;
    background: var(--gd);
    border-radius: 3px;
}

.btn-write-rev {
    width: 100%;
    margin-top: 14px;
    background: transparent;
    color: var(--or);
    border: 1.5px solid var(--or);
    border-radius: 8px;
    padding: 9px;
    font-size: 12.5px;
    font-weight: 600;
    cursor: pointer;
}

.rev-card {
    background: #fff;
    border-radius: 12px;
    padding: 16px;
    border: 1px solid var(--bd);
    height: 100%;
}

.rev-stars {
    color: var(--gd);
    font-size: 12px;
    margin-bottom: 8px;
}

.rev-text {
    font-size: 11.5px;
    color: var(--tm);
    line-height: 1.7;
    margin-bottom: 12px;
}

.rev-user {
    display: flex;
    align-items: center;
    gap: 8px;
}

.rev-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #FDE8D0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: var(--or);
    flex-shrink: 0;
}

.rev-name {
    font-size: 12px;
    font-weight: 700;
}

.rev-loc {
    font-size: 10px;
    color: var(--tlt);
}

.rev-verified {
    font-size: 10px;
    color: var(--gn);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 3px;
    margin-left: auto;
    white-space: nowrap;
}

/* ═══ CALENDAR ══════════════════════════════ */
.cal-scroll {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scrollbar-width: none;
}

.cal-scroll::-webkit-scrollbar {
    display: none;
}

.calcard {
    min-width: 170px;
    background: #000;
    border-radius: 12px;
    padding: 14px;
    border: 1.5px solid var(--bd);
    flex-shrink: 0;
    cursor: pointer;
    transition: all .2s;
}

.calcard:hover {
    border-color: var(--or);
    background: var(--orp);
    color: #000 !important;
}
.calcard:hover .cal-name {
    color: #000 !important;
}

.calcard.hl {
    background: var(--or);
    border-color: var(--or);
}

.cal-date {
    font-size: 10px;
    color: var(--tlt);
    margin-bottom: 4px;
}

.cal-name {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #fff;
}

.calcard.hl .cal-date {
    color: rgba(255, 255, 255, .75);
}

.calcard.hl .cal-name {
    color: #fff;
}

.cal-tag {
    font-size: 9px;
    padding: 2px 8px;
    border-radius: 10px;
    font-weight: 600;
    background: var(--orp);
    color: var(--or);
    display: inline-block;
    margin-bottom: 8px;
}

.calcard.hl .cal-tag {
    background: rgba(255, 255, 255, .2);
    color: #fff;
}

.cal-btn {
    width: 100%;
    background: #662905;
    color: var(--or);
    border: none;
    border-radius: 100px;
    padding: 7px;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
}

.calcard.hl .cal-btn {
    background: #fff;
    color: var(--or);
}

/* ═══ NEWSLETTER ════════════════════════════ */
.newsletter {
    background: linear-gradient(135deg, #8B1A1A 0%, #C84B1A 55%, #7B1E0E 100%);
    position: relative;
    overflow: hidden;
}

.nl-bg {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 35%;
    opacity: .15;
    background: url('https://images.unsplash.com/photo-1604820266783-1a08c5dfb437?w=600&q=80') center/cover;
    pointer-events: none;
}

.nl-title {
    font-size: clamp(18px, 3vw, 26px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.nl-sub {
    font-size: 12.5px;
    color: rgba(255, 255, 255, .8);
    line-height: 1.7;
}

.nl-input {
    padding: 11px 18px;
    border-radius: 8px;
    border: none;
    outline: none;
    font-size: 13px;
    background: rgba(255, 255, 255, .95);
    width: 100%;
}

.btn-sub {
    background: var(--or);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 11px 22px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    width: 100%;
}

/* ═══ CERTIFICATES ══════════════════════════ */
.cert-scroll {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scrollbar-width: none;
}

.cert-scroll::-webkit-scrollbar {
    display: none;
}

.certcard {
    min-width: 155px;
    background: #fff;
    border-radius: 10px;
    border: 1.5px solid #e8d0c0;
    padding: 16px;
    text-align: center;
    flex-shrink: 0;
}

.cert-icon {
    font-size: 28px;
    color: var(--or);
    margin-bottom: 8px;
}

.cert-name {
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 4px;
}

.cert-sub {
    font-size: 9.5px;
    color: var(--tlt);
}

/* ═══ FOOTER ════════════════════════════════ */
.footer {
    background: #1A1A1A;
    color: rgba(255, 255, 255, .8);
    padding: 40px 24px 20px;
}

.ft-brand-text {
    font-size: 12px;
    color: rgba(255, 255, 255, .6);
    line-height: 1.8;
    margin: 10px 0 16px;
}

.ft-head {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
}

.ft-links {
    list-style: none;
    padding: 0px;
}

.ft-links li {
    margin-bottom: 8px;
}

.ft-links a {
    color: rgba(255, 255, 255, .6);
    font-size: 12px;
    transition: color .2s;
}

.ft-links a:hover {
    color: var(--orl);
}

.ft-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding-top: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.ft-copy {
    font-size: 11.5px;
    color: rgba(255, 255, 255, .4);
}

.si {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .7);
    font-size: 13px;
    cursor: pointer;
    transition: all .2s;
}

.si:hover {
    background: var(--or);
    color: #fff;
}

.pay-badge {
    background: rgba(255, 255, 255, .12);
    border-radius: 6px;
    padding: 4px 10px;
    font-size: 11px;
    color: rgba(255, 255, 255, .7);
    font-weight: 700;
}

/* ═══ WHATSAPP FLOAT ════════════════════════ */
.wa-float {
    position: fixed;
    bottom: 22px;
    right: 22px;
    background: #25D366;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .22);
    z-index: 999;
}

/* ═══ RESPONSIVE ════════════════════════════ */

/* ≤ 991px */
@media(max-width:991px) {
    .nav-pills-bar {
        display: none;
    }

    .hbg {
        display: flex;
    }

    .offer-btn {
        display: none;
    }

    .fcard {
        display: none;
    }

    .hero-floral {
        width: 38%;
        opacity: .3;
    }

    .hero-content {
        max-width: 100%;
    }

    .about-img {
        height: 240px;
    }
}

/* ≤ 767px */
@media(max-width:767px) {
    .nbi {
        padding: 8px 12px;
        gap: 8px;
    }

    .logo-t {
        font-size: 13px;
    }

    .logo-s {
        display: none;
    }

    .logo-ring {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .nsearch {
        display: none;
    }

    .hero-content {
        padding: 28px 16px;
    }

    .hero-floral {
        display: none;
    }

    .hero-stats {
        gap: 16px;
        margin-top: 18px;
    }

    .hstat .snum {
        font-size: 17px;
    }

    .cat-card {
        height: 150px;
    }

    .cat-name {
        font-size: 13px;
    }

    .pcard {
        min-width: 142px;
        max-width: 142px;
    }

    .pimg {
        height: 115px;
    }

    .explore-card {
        height: 170px;
    }

    .ec-name {
        font-size: 13px;
    }

    .about-img {
        height: 190px;
    }

    .explore-card.big {
        height: 200px;
    }

    .calcard {
        min-width: 148px;
    }

    .certcard {
        min-width: 130px;
    }
}

/* ≤ 480px */
@media(max-width:480px) {
    .hero-title {
        font-size: 22px;
    }

    .pcard {
        min-width: 130px;
        max-width: 130px;
    }

    .explore-card {
        height: 160px;
    }
}

/* ≥ 1200px */
@media(min-width:1200px) {
    .nbi {
        padding: 8px 40px;
    }
}




/* Home Page About Section*/

.commit-section {
    background: #eeeeee;
    padding: 72px 0;
    overflow: hidden;
}
.commit-label {
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--color-primary);
    font-weight: 700;
    margin-bottom: 14px;
}
.commit-title {
    font-size: clamp(22px, 3vw, 36px);
    font-weight: 800;
    color: #1A1A1A;
    line-height: 1.25;
    font-style: italic;
    margin-bottom: 16px;
    max-width: 480px;
}
.commit-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.75;
    max-width: 440px;
    margin-bottom: 28px;
}

/* Feature boxes */
.commit-feats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 32px;
}
@media (max-width: 575px) {
    .commit-feats { grid-template-columns: repeat(3,1fr); gap: 8px; }
}
.commit-feat {
    background: #fff;
    border-radius: 14px;
    padding: 18px 12px;
    text-align: center;
    border: 1px solid #f0e4d6;
    transition: box-shadow 0.22s, transform 0.22s;
}
.commit-feat:hover {
    box-shadow: 0 6px 20px rgba(200,65,10,0.10);
    transform: translateY(-2px);
}
.commit-feat-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #eeeeee;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-size: 18px;
    color: var(--color-primary);
}
.commit-feat-name {
    font-size: 13px;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 3px;
}
.commit-feat-sub {
    font-size: 11px;
    color: #999;
    line-height: 1.4;
}

/* Button */
.commit-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--color-primary);
    color: #fff;
    border: none;
    padding: 13px 28px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
}
.commit-btn:hover {
    background: var(--color-primary);
    color: #fff;
    text-decoration: none;
    transform: translateY(-1px);
}

/* Image side */
.commit-img-wrap {
    position: relative;
    height: 100%;
    min-height: 440px;
}
@media (max-width: 767px) {
    .commit-img-wrap { min-height: 280px; }
}
.commit-img-main {
    width: 100%;
    height: 100%;
    min-height: 440px;
    object-fit: cover;
    border-radius: 22px;
    display: block;
}
@media (max-width: 767px) {
    .commit-img-main { min-height: 280px; }
}

/* Floating stat badge on image */
.commit-img-badge {
    position: absolute;
    bottom: 28px;
    left: -18px;
    background: #fff;
    border-radius: 16px;
    padding: 14px 18px;
    box-shadow: 0 10px 36px rgba(0,0,0,0.13);
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 190px;
    z-index: 2;
}
@media (max-width: 991px) {
    .commit-img-badge { left: 16px; }
}
.commit-badge-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #eeeeee;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--color-primary);
    flex-shrink: 0;
}
.commit-badge-num {
    font-size: 22px;
    font-weight: 900;
    color: #1A1A1A;
    line-height: 1;
}
.commit-badge-lbl {
    font-size: 11px;
    color: #999;
    margin-top: 2px;
}

/* second badge top-right */
.commit-img-badge2 {
    position: absolute;
    top: 24px;
    right: -14px;
    background: var(--color-primary);
    border-radius: 16px;
    padding: 12px 16px;
    box-shadow: 0 8px 28px rgba(200,65,10,0.25);
    text-align: center;
    z-index: 2;
    min-width: 110px;
}
@media (max-width: 991px) {
    .commit-img-badge2 { right: 12px; }
}
.commit-badge2-num {
    font-size: 20px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}
.commit-badge2-lbl {
    font-size: 10px;
    color: rgba(255,255,255,0.80);
    margin-top: 3px;
}




/* Home Review Section*/
.rev-section { background: #fff; padding: 72px 0; }

.rev-row { display: flex; align-items: stretch; gap: 40px; }
@media (max-width: 767px) { .rev-row { flex-direction: column; gap: 32px; } }

.rev-left { flex: 0 0 260px; width: 260px; display: flex; flex-direction: column; }
@media (max-width: 767px) { .rev-left { flex: none; width: 100%; } }

.rev-right { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 16px; }

.rev-score-big { font-size: 40px; font-weight: 900; color: #1A1A1A; line-height: 1; margin-bottom: 2px; }
.rev-score-denom { font-size: 24px; font-weight: 400; color: #bbb; }
.rev-stars-row { color: #F5A623; font-size: 20px; letter-spacing: 3px; margin-bottom: 6px; }
.rev-based { font-size: 12px; color: #999; margin-bottom: 20px; }

.rev-bar-row { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.rev-bar-lbl { font-size: 12px; color: #888; width: 16px; text-align: right; flex-shrink: 0; }
.rev-bar-track { flex: 1; height: 6px; background: #f0e8df; border-radius: 4px; overflow: hidden; }
.rev-bar-fill  { height: 100%; border-radius: 4px; background: var(--color-primary); }
.rev-bar-pct   { font-size: 11px; color: #aaa; width: 30px; flex-shrink: 0; }

.rev-write-btn {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--color-primary); color: #fff; border: none;
    padding: 12px 24px; border-radius: 30px;
    font-size: 13px; font-weight: 700; cursor: pointer;
    margin-top: auto; align-self: flex-start;
    transition: background 0.2s, transform 0.15s; text-decoration: none;
}
.rev-write-btn:hover { background: var(--color-primary-dark); color: #fff; text-decoration: none; transform: translateY(-1px); }

.rev-cards-scroll {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    align-items: stretch;
    cursor: grab;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.rev-cards-scroll:active { cursor: grabbing; }
.rev-cards-scroll::-webkit-scrollbar { display: none; }

/* Dots */
.rev-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding-top: 4px;
}
.rev-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #e8e0d6;
    cursor: pointer;
    border: none; padding: 0;
    transition: width 0.3s, background 0.3s, border-radius 0.3s;
    flex-shrink: 0;
}
.rev-dot.active {
    width: 24px;
    border-radius: 4px;
    background: var(--color-primary);
}

/* Card */
.rev-card {
    min-width: 280px; max-width: 280px;
    background: #fff;
    border: 1px solid #f0e8de;
    border-radius: 18px;
    padding: 22px;
    display: flex; flex-direction: column;
    flex-shrink: 0;
    transition: box-shadow 0.22s, transform 0.22s;
}
.rev-card:hover { box-shadow: 0 8px 28px rgba(200,65,10,0.09); transform: translateY(-3px); }
.rev-quote { font-size: 44px; line-height: 1; color: var(--color-primary); font-family: Georgia,serif; opacity: 0.45; margin-bottom: -4px; }
.rev-card-stars { font-size: 13px; margin-bottom: 10px; letter-spacing: 2px; }
.rev-card-text { font-size: 13px; color: #444; line-height: 1.75; flex: 1; margin-bottom: 0; }
.rev-card-user {
    display: flex; align-items: center; gap: 10px;
    padding-top: 14px; margin-top: 16px;
    border-top: 1px solid #f5ede5;
}
.rev-avatar {
    width: 38px; height: 38px; border-radius: 50%;
    background: var(--color-primary-muted); color: var(--color-primary);
    font-size: 14px; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.rev-user-name { font-size: 13px; font-weight: 700; color: #1A1A1A; }
.rev-user-loc  { font-size: 11px; color: #aaa; }
.rev-verified  {
    margin-left: auto; font-size: 10px; font-weight: 600;
    color: #2A9D8F; background: #E8F8F5;
    padding: 3px 10px; border-radius: 20px;
    white-space: nowrap; flex-shrink: 0;
}

/* Certifications */
.cert-section {
    background: var(--color-primary);
    padding: 52px 0 56px;
}
.cert-heading {
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
    font-weight: 600;
    margin-bottom: 4px;
}
.cert-title {
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 800;
    color: #fff;
    font-style: italic;
    margin: 0;
}
.cert-section .carousel-box { padding: 0 8px; }
.cert-section .cert-img-wrap {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.18);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
    background: #fff;
    cursor: zoom-in;
}
.cert-section .cert-img-wrap:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 16px 40px rgba(0,0,0,0.28);
}
.cert-section .cert-img-wrap img { width: 100%; display: block; object-fit: cover; }
.cert-section .cert-img-wrap.portrait  img { height: 200px; }
.cert-section .cert-img-wrap.landscape img { height: 140px; }
.cert-section .cert-ribbon {
    height: 5px;
    background: var(--color-primary);
}
.cert-section .slick-prev,
.cert-section .slick-next { display: none !important; }
.cert-section .slick-dots li button:before {
    color: var(--color-primary) !important;
    font-size: 8px !important;
}
.cert-section .slick-dots li.slick-active button:before { color: #fff !important; }

.cert-arrow {
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 1.5px solid var(--color-primary);
    background: rgba(255,255,255,0.12);
    color: #fff;
    font-size: 16px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    flex-shrink: 0;
}
.cert-arrow:hover { background: var(--color-primary-dark); border-color: #fff; }

/* ── Lightbox ── */
.cert-lb {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.88);
    z-index: 99999;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: certLbIn 0.22s ease;
}
.cert-lb.open { display: flex; }
@keyframes certLbIn {
    from { opacity: 0; transform: scale(0.96); }
    to   { opacity: 1; transform: scale(1); }
}
.cert-lb-inner {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cert-lb img {
    max-width: 88vw;
    max-height: 86vh;
    border-radius: 14px;
    box-shadow: 0 24px 64px rgba(0,0,0,0.55);
    object-fit: contain;
    display: block;
}
.cert-lb-close {
    position: fixed;
    top: 18px; right: 22px;
    width: 42px; height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    border: 1.5px solid rgba(255,255,255,0.3);
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s;
    z-index: 100000;
}
.cert-lb-close:hover { background: rgba(255,255,255,0.28); }

/* prev/next inside lightbox */
.cert-lb-prev,
.cert-lb-next {
    position: fixed;
    top: 50%; transform: translateY(-50%);
    width: 44px; height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    border: 1.5px solid rgba(255,255,255,0.3);
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s;
    z-index: 100000;
}
.cert-lb-prev { left: 18px; }
.cert-lb-next { right: 18px; }
.cert-lb-prev:hover,
.cert-lb-next:hover { background: rgba(255,255,255,0.28); }

/* ─── WHY CHOOSE US ───────────────────────────── */
.why-section {
    padding: 56px 24px;
    background:var(--color-primary-light);
}

.why-header {
    margin-bottom: 36px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.wc {
    background: #fff;
    border: 1px solid var(--peach-border);
    border-radius: 13px;
    padding: 24px 20px;
    text-align: center;
    transition: all .2s;
}

.wc:hover {
    box-shadow: 0 4px 20px rgba(232, 99, 10, .12);
    transform: translateY(-3px);
}

.wc-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: var(--peach);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 20px;
    margin: 0 auto 16px;
}

.wc-title {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.wc-text {
    font-size: 11.5px;
    color: var(--text-muted);
    line-height: 1.75;
}
/* Tablet ≤ 991px */
@media(max-width:991px) {
    .why-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }
}

/* Mobile ≤ 767px */
@media(max-width:767px) {
    .why-section {
        padding: 36px 15px;
    }

    .why-grid {
        grid-template-columns: 1fr 1fr;
        gap: 11px;
    }
}

/* Small ≤ 480px */
@media(max-width:480px) {

    .why-grid {
        grid-template-columns: 1fr;
    }
}

/* Large ≥ 1200px */
@media(min-width:1200px) {
    .why-section {
        padding: 64px 52px;
    }
}

/*
 * stepper.css  —  Reusable checkout stepper
 * Include in any page that needs the step progress:
 *   <link rel="stylesheet" href="{{ asset('css/stepper.css') }}">
 * Usage: add  data-step="1"  (or 2, 3) on .aiz-stepper to highlight the right step.
 */

.aiz-stepper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0 18px;
  background: #fff;
  border-bottom: 1px solid var(--color-primary, #D95F0A);
  margin-bottom: 0;
}

/* Each step item wraps circle + label, fills equal space */
.aiz-stepper .step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  max-width: 140px;
  position: relative;
}

/* The connecting line sits between step-items at midpoint of the circles */
.aiz-stepper .step-line {
  flex: 1;
  height: 2px;
  background: #E0D4C8;
  border-radius: 2px;
  align-self: flex-start;
  margin-top: 17px; /* half of 34px circle to center on circle */
  min-width: 30px;
  max-width: 100px;
  transition: background 0.4s;
}
.aiz-stepper .step-line.done {
  background: var(--color-primary, #D95F0A);
}

/* Circle */
.aiz-stepper .step-circle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  border: 2px solid #E0D4C8;
  background: #F5EDE5;
  color: #B0A090;
  transition: all 0.35s;
  position: relative;
  z-index: 1;
}
.aiz-stepper .step-circle.done {
  background: var(--color-primary, #D95F0A);
  border-color: var(--color-primary, #D95F0A);
  color: #fff;
}
.aiz-stepper .step-circle.active {
  background: var(--color-primary, #D95F0A);
  border-color: var(--color-primary, #D95F0A);
  color: #fff;
  box-shadow: 0 0 0 5px rgba(var(--color-primary-rgb, 217,95,10), 0.14),
              0 3px 10px rgba(var(--color-primary-rgb, 217,95,10), 0.26);
}

/* Label */
.aiz-stepper .step-label {
  font-size: 11.5px;
  font-weight: 500;
  color: #B0A090;
  margin-top: 7px;
  white-space: nowrap;
  text-align: center;
  line-height: 1.3;
}
.aiz-stepper .step-label.active {
  color: var(--color-primary, #D95F0A);
  font-weight: 700;
}
.aiz-stepper .step-label.done {
  color: var(--color-primary, #D95F0A);
  font-weight: 600;
}

/* Responsive */
@media (max-width: 480px) {
  .aiz-stepper .step-label { font-size: 10px; }
  .aiz-stepper .step-circle { width: 28px; height: 28px; font-size: 11px; }
  .aiz-stepper .step-line { margin-top: 14px; }
}

/* ── STEPPER ── */
.ck-stepper-outer{display:flex;justify-content:center;margin-bottom:32px;}
.ck-stepper{display:inline-flex;align-items:center;background:#fff;border:1px solid var(--cpb);border-radius:999px;padding:13px 32px;box-shadow:var(--sh-sm);}
.ck-step{display:flex;flex-direction:column;align-items:center;flex-shrink:0;}
.ck-step-line{width:56px;height:2px;background:var(--cpb);border-radius:2px;align-self:flex-start;margin-top:17px;flex-shrink:0;transition:background .4s;}
.ck-step-line.done{background:var(--cp);}
.ck-step-circle{width:34px;height:34px;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:13px;font-weight:700;border:2px solid var(--cpb);background:#F8F0E8;color:#C0A888;transition:all .35s;}
.ck-step-circle.done{background:var(--gn);border-color:var(--gn);color:#fff;}
.ck-step-circle.active{background:var(--cp);border-color:var(--cp);color:#fff;box-shadow:0 0 0 5px rgba(217,95,10,.13),0 2px 8px rgba(217,95,10,.22);}
.ck-step-label{font-size:11px;font-weight:500;color:var(--tlt);margin-top:7px;white-space:nowrap;}
.ck-step-label.done{color:var(--gn);font-weight:600;}
.ck-step-label.active{color:var(--cp);font-weight:700;}


.dropdown-item:focus, .dropdown-item:hover {
    color: var(--bs-dropdown-link-hover-color);
    background-color: var(--color-primary) !important;
}

.primary-btn {
    border: none;
    background: var(--color-primary) !important;
    color: #fff !important;
    border-radius: 12px;
    padding: 11px 22px;
    font-size: 13px;
    font-weight: 700;
    transition: .2s;
    cursor: pointer;
}
.primary-btn:hover {
    opacity: 0.85;
}

<style>
.typed-search-box {
    border-radius: 16px !important;
    border: 1px solid #f0f0f0 !important;
    box-shadow: 0 16px 48px rgba(0,0,0,.12), 0 2px 8px rgba(0,0,0,.06) !important;
    overflow: hidden !important;
    background: #fff !important;
    padding: 0 !important;
    max-height: 480px;
    overflow-y: auto;
}
.typed-search-box::-webkit-scrollbar { width: 4px; }
.typed-search-box::-webkit-scrollbar-thumb { background: #ececec; border-radius: 4px; }

/* Default star */
.pd-stars .las.la-star{
    color: #d1d5db;
    font-size: 14px !important;
}

/* Active/full star */
.pd-stars .las.la-star.active{
    color: var(--color-primary);
}

/* Half star */
.pd-stars .las.la-star.half{
    position: relative;
    color: #d1d5db;
}

.pd-stars .las.la-star.half::after{
    content: "\f005";
    font-family: "Line Awesome Free";
    font-weight: 900;
    color: var(--color-primary);
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    overflow: hidden;
}

.wishlist-icon.active{
    background: var(--color-primary);
}

.wishlist-icon.active svg path{
    fill:#fff !important;
}

.pbox-bottom {
    height: 60px;
}