/* ============================================================
   SlimVita – Main Stylesheet
   Mirrors besaferxpills.com layout structure
   ============================================================ */

:root {
  --primary:       #1a9d8f;
  --primary-dark:  #117a6e;
  --primary-light: #22b5a5;
  --accent:        #e8a020;
  --accent-light:  #f5c050;
  --pale:          #e6f7f5;
  --dark:          #1a1a2e;
  --gray:          #6b7280;
  --light-gray:    #dde6eb;
  --border:        #ccd8de;
  --white:         #ffffff;
  --shadow-sm:     0 2px 8px rgba(0,0,0,.07);
  --shadow-md:     0 4px 20px rgba(26,157,143,.12);
  --radius:        10px;
  --radius-lg:     16px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: #dde6eb;
  color: var(--dark);
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; }

/* ── TOPBAR ── */
.topbar {
  background: var(--primary-dark);
  color: rgba(255,255,255,.85);
  text-align: center;
  padding: 8px 20px;
  font-size: 13px;
  letter-spacing: .3px;
}
.topbar strong { color: var(--accent-light); }

/* ── HEADER ── */
.site-header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
}
.header-middle {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 14px 24px;
}
.site-logo {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 900;
  color: var(--primary);
  white-space: nowrap;
  flex-shrink: 0;
}
.site-logo span { color: var(--accent); }

.header-search {
  flex: 1;
  max-width: 500px;
  display: flex;
  border: 2px solid var(--border);
  border-radius: 50px;
  overflow: hidden;
  transition: border-color .2s;
}
.header-search:focus-within { border-color: var(--primary); }
.header-search input {
  flex: 1;
  padding: 10px 18px;
  border: none;
  outline: none;
  font-size: 14px;
  font-family: inherit;
  background: transparent;
}
.header-search button {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 0 22px;
  font-size: 15px;
  transition: background .2s;
}
.header-search button:hover { background: var(--primary-light); }

.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
  flex-shrink: 0;
}
.header-support {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--dark);
}
.header-support i { color: var(--primary); font-size: 20px; }
.header-support strong { font-size: 15px; color: var(--primary); }

.cart-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  position: relative;
  transition: background .2s;
}
.cart-btn:hover { background: var(--primary-light); }
.cart-btn sup {
  position: absolute;
  top: -5px; right: -5px;
  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;
}

/* ── NAV BAR ── */
.nav-bar {
  background: var(--primary);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 0 24px;
}
.nav-bar a {
  display: block;
  color: rgba(255,255,255,.85);
  padding: 14px 18px;
  font-size: 14px;
  font-weight: 500;
  border-bottom: 3px solid transparent;
  transition: all .2s;
  white-space: nowrap;
}
.nav-bar a:hover, .nav-bar a.active {
  color: #fff;
  border-bottom-color: var(--accent);
  background: rgba(255,255,255,.08);
}
.nav-phone {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}
.nav-phone i { color: var(--accent); }

/* ── MAIN LAYOUT ── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

.hero-wrap {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 16px;
  margin: 20px auto;
  max-width: 1280px;
  padding: 0 24px;
  align-items: start;
}

/* ── CATEGORY SIDEBAR ── */
.category-sidebar {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  height: fit-content;
}
.cat-header {
  background: var(--primary);
  color: #fff;
  padding: 14px 18px;
  font-size: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cat-list li {
  border-bottom: 1px solid var(--border);
}
.cat-list li:last-child { border-bottom: none; }
.cat-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 18px;
  font-size: 13.5px;
  color: var(--dark);
  font-weight: 500;
  transition: all .15s;
}
.cat-list a:hover { background: var(--pale); color: var(--primary); padding-left: 22px; }
.cat-list .cat-left { display: flex; align-items: center; gap: 10px; }
.cat-list i { color: var(--primary); width: 16px; font-size: 13px; }
.cat-count {
  background: var(--pale);
  color: var(--primary);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
}
.cat-showall {
  display: block;
  text-align: center;
  padding: 12px;
  color: var(--primary);
  font-weight: 700;
  font-size: 13px;
  background: var(--pale);
  transition: background .15s;
}
.cat-showall:hover { background: #d4eddf; }

/* ── HERO SLIDER ── */
.hero-slider {
  overflow: hidden;
  position: relative;
  border-radius: 0;
  background: transparent;
  line-height: 0;
  font-size: 0;
}
.slide {
  display: none;
}
.slide.active { display: block; }
.slide a { display: block; font-size: 0; line-height: 0; margin: 0; padding: 0; }
.slide img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0;
  padding: 0;
  vertical-align: top;
}

/* slide left = text */
.slide-left {
  padding: 48px 40px 48px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}
/* decorative circles */
.slide-bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 10% 90%, rgba(232,160,32,.2) 0%, transparent 55%),
    radial-gradient(ellipse at 90% 10%, rgba(255,255,255,.07) 0%, transparent 50%);
  pointer-events: none;
}
.slide-deco {
  position: absolute;
  right: -80px; top: -80px;
  width: 440px; height: 440px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.06);
  pointer-events: none;
}
.slide-deco::before {
  content: '';
  position: absolute;
  inset: 60px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.04);
}

.slide-content { position: relative; z-index: 2; color: #fff; }
.slide-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
  border: 1px solid rgba(255,255,255,.2);
}
.slide-badge i { font-size: 12px; }
.slide-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 14px;
}
.slide-content h1 em { font-style: normal; color: var(--accent-light); }
.slide-content p {
  font-size: 14.5px;
  color: rgba(255,255,255,.82);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 380px;
}
.slide-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-slide-primary {
  background: var(--accent);
  color: #fff;
  padding: 12px 26px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  border: none;
  box-shadow: 0 4px 16px rgba(232,160,32,.45);
  transition: transform .2s, box-shadow .2s;
  display: flex; align-items: center; gap: 7px;
}
.btn-slide-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,160,32,.55); }
.btn-slide-outline {
  background: rgba(255,255,255,.1);
  color: #fff;
  padding: 12px 26px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  border: 1.5px solid rgba(255,255,255,.28);
  backdrop-filter: blur(4px);
  transition: background .2s;
}
.btn-slide-outline:hover { background: rgba(255,255,255,.2); }

/* slide right = product cards */
.slide-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 28px 48px;
  z-index: 2;
}
.slide-products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  width: 100%;
}
.slide-product-card {
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 12px;
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: background .2s, transform .2s;
  text-decoration: none;
}
.slide-product-card:hover {
  background: rgba(255,255,255,.22);
  transform: translateY(-2px);
}
.slide-product-card .spc-emoji {
  width: 52px; height: 52px;
  background: rgba(255,255,255,.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
}
.slide-product-card .spc-info { flex: 1; min-width: 0; }
.slide-product-card .spc-name {
  font-size: 12.5px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 3px;
}
.slide-product-card .spc-price {
  font-size: 13px;
  color: var(--accent-light);
  font-weight: 800;
}
.slide-product-card .spc-old {
  font-size: 11px;
  color: rgba(255,255,255,.5);
  text-decoration: line-through;
  margin-left: 4px;
}
.slide-product-card .spc-badge {
  font-size: 9px;
  font-weight: 800;
  background: var(--accent);
  color: #fff;
  padding: 2px 6px;
  border-radius: 6px;
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-top: 3px;
  display: inline-block;
}

/* slider nav arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px; height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background .2s;
}
.slider-arrow:hover { background: rgba(255,255,255,.32); }
.slider-arrow.prev { left: 12px; }
.slider-arrow.next { right: 12px; }

/* slider dots */
.slider-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
  z-index: 10;
}
.dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,.35);
  border: none;
  cursor: pointer;
  transition: all .25s;
}
.dot.active { background: #fff; width: 20px; border-radius: 4px; }

@media (max-width: 900px) {
  .slide.active { grid-template-columns: 1fr; }
  .slide-right { display: none; }
  .slide-left { padding: 40px 28px; }
}
@media (max-width: 600px) {
  .slide-content h1 { font-size: 26px; }
}

/* ── STATS BAR ── */
.stats-bar { padding: 0 24px; margin: 0 auto 0; max-width: 1280px; }
.stats-inner {
  background: #fff;
  border-radius: var(--radius);
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 16px;
  box-shadow: var(--shadow-sm);
}
.stat-item { display: flex; align-items: center; gap: 14px; }
.stat-icon {
  width: 46px; height: 46px;
  background: var(--pale);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  font-size: 18px;
  flex-shrink: 0;
}
.stat-info h5 { font-size: 14px; font-weight: 700; }
.stat-info p { font-size: 12px; color: var(--gray); }
.stat-divider { width: 1px; height: 40px; background: var(--border); }

/* ── PRODUCTS WHITE BAND ── */
.products-band {
  background: #fff;
  margin-top: 28px;
  padding: 36px 0 48px;
  box-shadow: 0 -1px 0 rgba(0,0,0,.05), 0 1px 0 rgba(0,0,0,.05);
}

/* ── SECTION HEADER ── */
.section-hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.section-hd h2 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
}
.section-hd h2 span { color: var(--primary); }
.btn-view-all {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-size: 13.5px;
  font-weight: 600;
  border: 1.5px solid var(--pale);
  padding: 8px 16px;
  border-radius: 50px;
  transition: all .2s;
}
.btn-view-all:hover { background: var(--pale); }

/* ── PRODUCT GRID ── */
.product-section { margin: 0 auto 40px; max-width: 1280px; padding: 0 24px; }
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.product-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s;
  position: relative;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(42,125,79,.15);
}
.p-badge {
  position: absolute;
  top: 10px; left: 10px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .6px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  color: #fff;
  z-index: 2;
}
.badge-hot { background: #e53e3e; }
.badge-new { background: var(--primary); }
.badge-sale { background: var(--accent); }
.badge-bundle { background: #7c3aed; }

.product-img {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f0fdf4, var(--pale));
  overflow: hidden;
  position: relative;
}
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s;
}
.product-card:hover .product-img img { transform: scale(1.06); }
.product-img .emoji-placeholder {
  font-size: 80px;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,.1));
  transition: transform .3s;
}
.product-card:hover .emoji-placeholder { transform: scale(1.08) rotate(-4deg); }

.hover-actions {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  display: flex;
  gap: 8px;
  opacity: 0;
  transition: all .25s;
}
.product-card:hover .hover-actions { opacity: 1; transform: translateX(-50%) translateY(0); }
.hover-btn {
  background: #fff;
  color: var(--primary);
  border: none;
  width: 36px; height: 36px;
  border-radius: 50%;
  font-size: 14px;
  box-shadow: 0 2px 8px rgba(0,0,0,.12);
  transition: all .2s;
}
.hover-btn:hover { background: var(--primary); color: #fff; }

.product-body { padding: 16px; display: flex; flex-direction: column; flex: 1; }
.p-stars { color: #f59e0b; font-size: 12px; margin-bottom: 5px; }
.p-stars span { color: var(--gray); font-size: 11px; margin-left: 4px; }
.p-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 5px;
  line-height: 1.4;
}
.p-desc {
  font-size: 12px;
  color: var(--gray);
  line-height: 1.5;
  margin-bottom: 14px;
  flex: 1;
}
.p-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  padding-top: 12px;
  margin-top: auto;
}
.p-price { font-size: 20px; font-weight: 800; color: var(--primary); }
.p-old { font-size: 11px; color: var(--gray); text-decoration: line-through; margin-top: 1px; }
.btn-cart-add {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 9px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background .2s, transform .15s;
}
.btn-cart-add:hover { background: var(--primary-light); transform: scale(1.04); }

/* ── WHY US ── */
.why-section {
  background: linear-gradient(135deg, #0d7a6e, #1a9d8f);
  padding: 64px 24px;
  margin-bottom: 0;
}
.why-inner { max-width: 1280px; margin: 0 auto; }
.why-hd { text-align: center; margin-bottom: 44px; }
.why-hd h2 { font-family:'Playfair Display',serif; font-size:30px; color:#fff; margin-bottom:8px; }
.why-hd p { color: rgba(255,255,255,.6); font-size:15px; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.why-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: background .2s;
}
.why-card:hover { background: rgba(255,255,255,.12); }
.why-icon {
  width: 50px; height: 50px;
  background: var(--accent);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 20px;
  margin-bottom: 16px;
}
.why-card h4 { color: #fff; font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.why-card p { color: rgba(255,255,255,.6); font-size: 13px; line-height: 1.6; }

/* ── TESTIMONIALS ── */
.testi-section { max-width:1280px; margin:0 auto 0; padding:0 24px; }
.testi-band { background:#fff; padding:48px 0 56px; }
.testi-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; margin-top:20px; }
.testi-card {
  background:#fff;
  border-radius:var(--radius);
  padding:24px;
  box-shadow:var(--shadow-sm);
  border-left:4px solid var(--primary);
  transition:transform .2s;
}
.testi-card:hover { transform:translateY(-4px); }
.testi-quote { font-size:42px; color:var(--pale); line-height:1; margin-bottom:6px; font-family:'Playfair Display',serif; }
.testi-card p { font-size:13.5px; color:var(--gray); line-height:1.7; margin-bottom:16px; }
.testi-author { display:flex; align-items:center; gap:10px; }
.testi-av {
  width:40px; height:40px;
  border-radius:50%;
  background:var(--pale);
  display:flex; align-items:center; justify-content:center;
  font-size:18px;
}
.testi-name { font-size:13px; font-weight:700; }
.testi-meta { font-size:11px; color:var(--gray); }
.testi-stars { color:#f59e0b; font-size:11px; margin-top:2px; }

/* ── FOOTER ── */
.site-footer { background: var(--dark); color:rgba(255,255,255,.65); }
.footer-top {
  max-width:1280px;
  margin:0 auto;
  padding:50px 24px 36px;
  display:grid;
  grid-template-columns:1.8fr 1fr 1fr 1fr;
  gap:32px;
}
.footer-logo-text {
  font-family:'Playfair Display',serif;
  font-size:24px;
  color:#fff;
  margin-bottom:12px;
}
.footer-logo-text span { color:var(--accent); }
.footer-about p { font-size:13px; line-height:1.7; margin-bottom:16px; }
.footer-col h5 {
  color:#fff;
  font-size:12px;
  font-weight:700;
  letter-spacing:1px;
  text-transform:uppercase;
  margin-bottom:16px;
  padding-bottom:8px;
  border-bottom:2px solid var(--primary);
  display:inline-block;
}
.footer-col ul li { margin-bottom:9px; }
.footer-col a { color:rgba(255,255,255,.55); font-size:13px; transition:color .15s; }
.footer-col a:hover { color:var(--accent); }
.footer-contact-item {
  display:flex; align-items:flex-start; gap:10px;
  font-size:13px; color:rgba(255,255,255,.55); margin-bottom:10px;
}
.footer-contact-item i { color:var(--accent); margin-top:2px; flex-shrink:0; }
.payment-logos { display:flex; flex-wrap:wrap; gap:8px; margin-top:16px; }
.pay-logo {
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  padding:5px 12px;
  border-radius:6px;
  font-size:11px;
  font-weight:700;
  color:rgba(255,255,255,.6);
  letter-spacing:.5px;
}
.footer-bottom {
  border-top:1px solid rgba(255,255,255,.08);
  padding:18px 24px;
  max-width:1280px;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  font-size:12px;
  color:rgba(255,255,255,.35);
}

/* ── MOBILE MENU ── */
.mobile-menu-btn {
  display:none;
  background:none;
  border:none;
  color:var(--dark);
  font-size:24px;
}
.mobile-menu-overlay {
  display:none;
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.5);
  z-index:300;
}
.mobile-menu {
  position:fixed;
  top:0; left:-100%;
  width:280px; height:100%;
  background:#fff;
  z-index:400;
  overflow-y:auto;
  transition:left .3s ease;
  box-shadow:4px 0 20px rgba(0,0,0,.15);
}
.mobile-menu.open { left:0; }
.mobile-menu-overlay.open { display:block; }
.mobile-menu-head {
  background:var(--primary);
  padding:20px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  color:#fff;
}
.mobile-menu-head .logo { color:#fff; font-size:22px; }
.mobile-close { background:none; border:none; color:#fff; font-size:22px; }
.mobile-search { padding:16px; border-bottom:1px solid var(--border); }
.mobile-search input {
  width:100%;
  padding:10px 14px;
  border:1.5px solid var(--border);
  border-radius:50px;
  outline:none;
  font-size:14px;
  font-family:inherit;
}
.mobile-nav a {
  display:flex;
  align-items:center;
  gap:10px;
  padding:14px 20px;
  font-size:14px;
  font-weight:500;
  color:var(--dark);
  border-bottom:1px solid var(--border);
  transition:background .15s;
}
.mobile-nav a:hover { background:var(--pale); color:var(--primary); }
.mobile-cart-btn {
  display:flex;
  align-items:center;
  gap:10px;
  padding:14px 20px;
  font-size:14px;
  font-weight:600;
  color:var(--primary);
  background:var(--pale);
  width:100%;
  border:none;
  text-align:left;
}

/* ── TOAST ── */
.toast-container {
  position:fixed;
  bottom:24px; right:24px;
  z-index:999;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.toast {
  background:#fff;
  border-left:4px solid var(--primary);
  border-radius:8px;
  padding:14px 18px;
  box-shadow:0 4px 20px rgba(0,0,0,.12);
  display:flex;
  align-items:center;
  gap:12px;
  font-size:14px;
  font-weight:500;
  animation:slideInToast .3s ease;
  min-width:260px;
}
.toast i { color:var(--primary); font-size:18px; }
@keyframes slideInToast { from{transform:translateX(110%);opacity:0} to{transform:translateX(0);opacity:1} }

/* ── RESPONSIVE ── */
@media (max-width:1024px) {
  .product-grid { grid-template-columns:repeat(3,1fr); }
  .why-grid { grid-template-columns:repeat(2,1fr); }
  .footer-top { grid-template-columns:1fr 1fr; }
}
@media (max-width:768px) {
  .hero-wrap { grid-template-columns:1fr; }
  .category-sidebar { display:none; }
  .product-grid { grid-template-columns:repeat(2,1fr); }
  .testi-grid { grid-template-columns:1fr; }
  .why-grid { grid-template-columns:1fr; }
  .footer-top { grid-template-columns:1fr; }
  .header-search { display:none; }
  .header-support { display:none; }
  .mobile-menu-btn { display:block; }
  .stats-inner { flex-wrap:wrap; gap:20px; }
  .stat-divider { display:none; }
  .slide-emoji { display:none; }
  .slide { padding:32px 28px; }
  .slide-content h1 { font-size:28px; }
  .footer-bottom { flex-direction:column; gap:10px; text-align:center; }
  .nav-bar { display:none; }
}
@media (max-width:480px) {
  .product-grid { grid-template-columns:repeat(2,1fr); gap:12px; }
  .product-img { height:160px; }
}

/* ============================================================
   ADDITIONAL PAGES – breadcrumb, shop, product detail,
   about, contact, order-tracking, static pages
   ============================================================ */

/* ── BREADCRUMB ── */
.breadcrumb-area {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 40px 24px;
}
.breadcrumb-area .container {
  max-width: 1280px;
  margin: 0 auto;
}
.breadcrumb-title {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  color: #fff;
  margin-bottom: 10px;
}
.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,.75);
}
.breadcrumb-list li::after { content: '›'; margin-left: 10px; }
.breadcrumb-list li:last-child::after { content: ''; }
.breadcrumb-list a { color: rgba(255,255,255,.85); }
.breadcrumb-list a:hover { color: var(--accent-light); }

/* ── PAGE CONTENT WRAPPER ── */
/* Universal white content band for inner pages */
.content-band { background: #fff; }

.page-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 24px 100px;
}
.page-content h1 { font-family:'Playfair Display',serif; font-size:32px; margin-bottom:16px; color:var(--dark); }
.page-content h3 { font-size:20px; margin:28px 0 10px; color:var(--primary-dark); }
.page-content h4 { font-size:17px; margin:20px 0 8px; }
.page-content p  { margin-bottom:14px; color:#374151; line-height:1.75; }
.page-content ul { margin:0 0 14px 20px; list-style:disc; }
.page-content ul li { margin-bottom:6px; color:#374151; line-height:1.7; }
.page-content ol  { margin:0 0 14px 20px; }
.page-content ol li { margin-bottom:6px; color:#374151; }

/* ── SHOP PAGE ── */
.shop-layout {
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 24px 80px;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 32px;
  align-items: start;
}

/* Shop Sidebar */
.shop-sidebar { position: sticky; top: 80px; }
.sidebar-widget {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}
.sidebar-widget h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border);
  color: var(--dark);
}
.sidebar-cat-list li { margin-bottom: 6px; }
.sidebar-cat-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 14px;
  color: #374151;
  transition: all .2s;
}
.sidebar-cat-list a:hover,
.sidebar-cat-list a.active {
  background: var(--pale);
  color: var(--primary);
  font-weight: 600;
}
.sidebar-cat-list .cat-badge {
  background: var(--primary);
  color: #fff;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 20px;
}

/* Shop Main */
.shop-main {}
.shop-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 12px;
}
.shop-toolbar .result-count { font-size: 14px; color: var(--gray); }
.sort-select {
  padding: 9px 14px;
  border: 2px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 14px;
  outline: none;
  cursor: pointer;
}
.sort-select:focus { border-color: var(--primary); }

/* ── PRODUCT DETAIL PAGE ── */
.product-detail-layout {
  max-width: 1280px;
  margin: 0 auto;
  padding: 50px 24px 80px;
}
/* White content band wrapping product detail */
.product-detail-band {
  background: #fff;
  margin-top: 0;
}
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.product-detail-img {
  position: sticky;
  top: 90px;
}
.product-detail-img img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.product-detail-img .img-placeholder {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--pale), #d1fae5);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 100px;
}

.product-detail-info {}
.detail-stars { display:flex; align-items:center; gap:8px; margin-bottom:10px; }
.detail-stars .stars { color: var(--accent); font-size: 18px; }
.detail-stars .review-count { font-size: 14px; color: var(--gray); }
.detail-title {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 16px;
  line-height: 1.2;
}
.detail-meta {
  background: var(--light-gray);
  border-radius: var(--radius);
  padding: 18px;
  margin-bottom: 24px;
}
.detail-meta p { margin-bottom: 6px; font-size: 14px; color: #374151; }
.detail-meta p:last-child { margin-bottom: 0; }
.detail-meta strong { color: var(--dark); }

/* Variant table */
.variant-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.variant-table thead tr {
  background: var(--primary);
  color: #fff;
}
.variant-table th {
  padding: 12px 16px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
}
.variant-table td {
  padding: 12px 16px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  background: #fff;
}
.variant-table tr:last-child td { border-bottom: none; }
.variant-table tr:hover td { background: var(--pale); }
.variant-table .qty-input {
  width: 60px;
  padding: 6px 8px;
  border: 1px solid var(--border);
  border-radius: 6px;
  text-align: center;
  font-size: 14px;
}
.variant-table .btn-add-variant {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s;
}
.variant-table .btn-add-variant:hover { background: var(--primary-dark); }
.variant-table .btn-out-stock {
  color: #ef4444;
  font-size: 13px;
  font-weight: 600;
  border: none;
  background: none;
  cursor: not-allowed;
}
.safe-checkout {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  margin-top: 8px;
}
.safe-checkout h5 { font-size: 14px; color: var(--gray); margin-bottom: 10px; }
.crypto-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.crypto-badge {
  background: var(--light-gray);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 700;
  color: var(--dark);
}

/* Product description tabs */
.product-tabs { margin-top: 20px; }
.tab-nav {
  display: flex;
  border-bottom: 2px solid var(--border);
  margin-bottom: 28px;
  gap: 4px;
}
.tab-btn {
  padding: 10px 20px;
  border: none;
  background: none;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  color: var(--gray);
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  transition: all .2s;
}
.tab-btn.active { color: var(--primary); border-bottom-color: var(--primary); }
.tab-pane { display: none; }
.tab-pane.active { display: block; }
.tab-pane p { margin-bottom: 14px; color: #374151; line-height: 1.75; }
.tab-pane h3 { font-size: 18px; margin: 24px 0 10px; color: var(--primary-dark); }
.tab-pane ul { margin: 0 0 14px 20px; list-style: disc; }
.tab-pane ul li { margin-bottom: 6px; color: #374151; }

/* Reviews */
.review-form-box {
  background: var(--light-gray);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 32px;
}
.review-form-box h5 { font-size: 18px; margin-bottom: 16px; }
.review-star-select { display: flex; gap: 6px; margin-bottom: 16px; }
.review-star-select i {
  font-size: 24px;
  color: #d1d5db;
  cursor: pointer;
  transition: color .15s;
}
.review-star-select i.active,
.review-star-select i:hover { color: var(--accent); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-field { margin-bottom: 14px; }
.form-field input,
.form-field textarea {
  width: 100%;
  padding: 11px 14px;
  border: 2px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 14px;
  outline: none;
  transition: border-color .2s;
}
.form-field input:focus,
.form-field textarea:focus { border-color: var(--primary); }
.form-field textarea { min-height: 90px; resize: vertical; }
.btn-submit-review {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: .5px;
  transition: background .2s;
}
.btn-submit-review:hover { background: var(--primary-dark); }

.reviews-list { }
.review-item {
  background: #fff;
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
}
.review-item-stars { color: var(--accent); margin-bottom: 6px; }
.review-item-header { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.review-item-name { font-weight: 700; font-size: 16px; }
.review-item-date { font-size: 13px; color: var(--gray); }
.review-item-text { color: #374151; font-size: 14px; line-height: 1.6; }
.reviews-section h5 { font-size: 20px; font-weight: 700; margin-bottom: 20px; color: var(--dark); }

/* ── ABOUT PAGE ── */
.about-hero {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #fff;
  padding: 80px 24px;
  text-align: center;
}
.about-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  margin-bottom: 16px;
}
.about-hero p { font-size: 18px; opacity: .9; max-width: 600px; margin: 0 auto; }

.about-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 24px 80px;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 60px;
}
.about-grid img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.about-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  margin-bottom: 16px;
  color: var(--dark);
}
.about-text h2 span { color: var(--primary); }
.about-text p { color: #374151; margin-bottom: 14px; line-height: 1.75; }
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
  padding: 50px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 40px 0;
}
.about-stat h3 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  color: var(--primary);
  margin-bottom: 6px;
}
.about-stat p { font-size: 14px; color: var(--gray); }

/* ── CONTACT PAGE ── */
.contact-layout {
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 24px 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.contact-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  margin-bottom: 14px;
}
.contact-info p { color: #374151; margin-bottom: 28px; line-height: 1.75; }
.contact-items { display: flex; flex-direction: column; gap: 16px; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  padding: 18px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.contact-item-icon {
  width: 46px;
  height: 46px;
  background: var(--pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 18px;
  flex-shrink: 0;
}
.contact-item-text { font-size: 15px; color: var(--dark); }

.contact-form-box {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
}
.contact-form-box h4 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  margin-bottom: 24px;
}
.btn-contact-submit {
  width: 100%;
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: .5px;
  transition: background .2s;
}
.btn-contact-submit:hover { background: var(--primary-dark); }

/* ── ORDER TRACKING ── */
.tracking-wrap {
  max-width: 600px;
  margin: 80px auto;
  padding: 0 24px;
  text-align: center;
}
.tracking-box {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.tracking-box h1 {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  margin-bottom: 10px;
}
.tracking-box p { color: var(--gray); margin-bottom: 28px; }
.tracking-input-row {
  display: flex;
  gap: 12px;
}
.tracking-input-row input {
  flex: 1;
  padding: 13px 18px;
  border: 2px solid var(--border);
  border-radius: 8px;
  font-size: 15px;
  outline: none;
  font-family: inherit;
  transition: border-color .2s;
}
.tracking-input-row input:focus { border-color: var(--primary); }
.btn-track {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 13px 24px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background .2s;
}
.btn-track:hover { background: var(--primary-dark); }

/* Tracking result */
.tracking-result {
  margin-top: 28px;
  text-align: left;
}
.tracking-order-info {
  background: var(--light-gray);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 20px;
}
.tracking-status-bar {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin: 28px 0;
}
.tracking-status-bar::before {
  content: '';
  position: absolute;
  top: 16px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--border);
  z-index: 0;
}
.t-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
  position: relative;
  z-index: 1;
}
.t-step-dot {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--gray);
}
.t-step.done .t-step-dot {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.t-step.active .t-step-dot {
  border-color: var(--primary);
  color: var(--primary);
}
.t-step span { font-size: 11px; color: var(--gray); text-align: center; }
.t-step.done span, .t-step.active span { color: var(--primary); font-weight: 600; }

/* ── RESPONSIVE ADDITIONS ── */
@media (max-width:1024px) {
  .shop-layout { grid-template-columns: 220px 1fr; }
  .product-detail-grid { gap: 36px; }
  .contact-layout { gap: 36px; }
  .about-stats { grid-template-columns: repeat(2,1fr); }
}
@media (max-width:768px) {
  .shop-layout { grid-template-columns: 1fr; }
  .shop-sidebar { position: static; display: none; }
  .product-detail-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: repeat(2,1fr); }
  .tracking-input-row { flex-direction: column; }
  .form-row { grid-template-columns: 1fr; }
  .breadcrumb-title { font-size: 26px; }
}
