:root {
  --bg:         #0c0705; /* Deep Espresso Coffee */
  --bg2:        #140d0a;
  --card:       #1c120e; /* Dark Chocolate Wood */
  --card2:      #261914;
  --border:     #38241d;
  --border2:    rgba(245, 158, 11, 0.3); /* Glowing Amber */
  --gold:       #f59e0b; /* Amber */
  --gold2:      #fbbf24; /* Warm Gold */
  --gold-dim:   rgba(245, 158, 11, 0.1);
  --white:      #fdfbf7; /* Warm Paper White */
  --muted:      #a8a29e; /* Warm Stone Muted */
  --muted2:     #78716c;
  --green:      #10b981; /* Emerald Green */
  --green2:     #059669;
  --wa:         #25D366;
  --wa2:        #128C7E;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg); color: var(--white);
  line-height: 1.6; -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .nav-name {
  font-family: 'Playfair Display', serif;
}

/* NAV */
.nav {
  position: sticky; top: 0; z-index: 200;
  background: rgba(12, 7, 5, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-in {
  max-width: 1300px; margin: 0 auto; padding: 0 28px;
  display: flex; align-items: center; justify-content: space-between; height: 64px;
}
.nav-brand { display: flex; align-items: center; gap: 12px; text-decoration: none; transition: transform 0.2s; }
.nav-brand:hover { transform: scale(1.02); }
.nav-ico {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--gold), #d97706);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-size: 22px; flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.2);
}
.nav-name { font-size: 17px; font-weight: 800; color: var(--white); line-height: 1.1; letter-spacing: -0.3px; }
.nav-sub  { font-size: 11px; color: var(--muted); font-family: 'Outfit', sans-serif; font-weight: 500; }
.nav-live {
  display: flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700; color: #34d399;
  background: rgba(16, 185, 129, 0.08); border: 1px solid rgba(16, 185, 129, 0.2);
  padding: 6px 14px; border-radius: 99px;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.nav-live::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%;
  background: #34d399; animation: blink 2s infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.2} }

/* HERO */
.hero {
  padding: 80px 28px 64px; position: relative; overflow: hidden;
  background: radial-gradient(ellipse 90% 70% at 50% -10%, rgba(245, 158, 11, 0.08) 0%, transparent 60%);
}
.hero::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(circle at 15% 60%, rgba(16, 185, 129, 0.04) 0%, transparent 35%),
    radial-gradient(circle at 85% 20%, rgba(245, 158, 11, 0.06) 0%, transparent 35%);
}
.hero-in {
  max-width: 1300px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 320px;
  gap: 64px; align-items: center;
}
@media(max-width:820px){
  .hero-in { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-tags { justify-content: center; }
  .hero-p { margin-inline: auto; }
  .hero-img-wrap { margin-inline: auto; }
}
.hero-chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--gold-dim); border: 1px solid rgba(245, 158, 11, 0.25);
  color: var(--gold2); padding: 6px 14px; border-radius: 99px;
  font-size: 11px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 1.5px; margin-bottom: 20px;
}
.hero-h1 {
  font-size: clamp(34px, 5vw, 60px); font-weight: 800;
  line-height: 1.1; letter-spacing: -1px;
  background: linear-gradient(140deg, #fdfbf7 40%, var(--gold2) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; margin-bottom: 20px;
}
.hero-p { font-size: 17px; color: var(--muted); max-width: 520px; line-height: 1.8; margin-bottom: 32px; }
.hero-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.03); border: 1px solid var(--border);
  color: var(--muted); padding: 6px 14px; border-radius: 8px;
  font-size: 12px; font-weight: 600;
}
.hero-img-wrap {
  position: relative; width: 300px; height: 300px;
  border-radius: 24px; display: flex; align-items: center; justify-content: center;
}
.hero-img-glow {
  position: absolute; width: 120%; height: 120%;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.15) 0%, transparent 70%);
  z-index: 1; pointer-events: none;
}
.hero-img {
  max-width: 100%; max-height: 100%; border-radius: 20px;
  object-fit: cover; z-index: 2; position: relative;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  border: 1px solid var(--border);
}
.hero-img:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 30px 60px rgba(245, 158, 11, 0.15), 0 20px 50px rgba(0,0,0,0.6);
}
.img-error-msg { display: none; text-align: center; color: var(--muted); font-size: 13px; padding: 20px; }

/* TRUST BAR */
.trust {
  background: rgba(255,255,255,0.01);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 16px 28px;
}
.trust-in {
  max-width: 1300px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 8px;
}
.trust-item { display: flex; align-items: center; gap: 10px; font-size: 13px; padding: 6px 24px; }
.trust-item + .trust-item { border-left: 1px solid var(--border); }
@media(max-width:768px){
  .trust-item + .trust-item { border-left: none; }
  .trust-in { flex-direction: column; gap: 12px; }
  .trust-item { padding: 4px 12px; }
}
.t-ico { font-size: 22px; }
.t-label { color: var(--muted); font-size: 11px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px; }
.t-val   { color: var(--white); font-weight: 700; font-size: 13px; }

/* MAIN CONTENT */
.main { max-width: 1300px; margin: 0 auto; padding: 48px 28px 80px; }
.sec-label {
  font-size: 11px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 2px; color: var(--gold); margin-bottom: 24px;
}
.layout { display: grid; grid-template-columns: 1fr; gap: 32px; }
@media(min-width:960px){
  .layout { grid-template-columns: minmax(0,1fr) 360px; align-items: start; gap: 40px; }
}

/* PRODUCT GRID */
.pgrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; }
@media(max-width:480px){
  .pgrid { grid-template-columns: 1fr 1fr; gap: 12px; }
}

.pcard {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 20px; overflow: hidden;
  display: flex; flex-direction: column;
  transition: border-color .3s, transform .3s, box-shadow .3s;
}
.pcard:hover {
  transform: translateY(-6px); border-color: var(--border2);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 0 1px rgba(245, 158, 11, 0.1);
}
.pimg { aspect-ratio: 4/3; overflow: hidden; background: var(--bg2); position: relative; }
.pimg img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(0.16, 1, 0.3, 1); }
.pcard:hover .pimg img { transform: scale(1.08); }
.pbody { padding: 18px 20px 20px; display: flex; flex-direction: column; flex: 1; }
.pbody h3 { font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 6px; line-height: 1.3; }
.pbody h3 a { color: inherit; text-decoration: none; transition: color 0.2s; }
.pbody h3 a:hover { color: var(--gold2); }
.pbody p  {
  font-size: 13px; color: var(--muted); flex-grow: 1;
  margin-bottom: 16px; line-height: 1.6;
}
.pfoot {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 12px; border-top: 1px solid var(--border); gap: 8px;
}
.pprice { font-size: 15px; font-weight: 700; color: var(--gold2); letter-spacing: -0.3px; }
.qty-ctrl {
  display: flex; align-items: center;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border); border-radius: 8px; overflow: hidden;
}
.qty-ctrl button {
  background: transparent; border: none; color: var(--white);
  font-weight: 700; font-size: 18px; width: 32px; height: 32px;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background .2s, color .2s;
}
.qty-ctrl button:hover { background: rgba(245, 158, 11, 0.15); color: var(--gold2); }
.qty-n { font-size: 13px; font-weight: 700; min-width: 28px; text-align: center; }

/* SIDEBAR & STICKY CART */
.sidebar { display: flex; flex-direction: column; gap: 20px; }
.cart {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 20px; overflow: hidden; position: sticky; top: 84px;
}
.cart-head {
  padding: 16px 20px; background: var(--card2); border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.cart-head h2 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--muted); }
.cart-ico {
  width: 32px; height: 32px; background: var(--gold-dim);
  border: 1px solid rgba(245, 158, 11, 0.2); border-radius: 8px;
  display: flex; align-items: center; justify-content: center; font-size: 16px;
}
.cart-body { padding: 16px 20px; min-height: 80px; }
.cart-body p { color: var(--muted); font-size: 13px; font-style: italic; text-align: center; padding: 20px 0; }
.ci {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; padding: 10px 0; border-bottom: 1px dashed var(--border);
}
.ci:last-child { border-bottom: none; }
.ci-name { font-weight: 500; color: var(--white); }
.ci-qty {
  font-weight: 700; font-size: 11px; color: var(--gold2);
  background: var(--gold-dim); padding: 3px 8px; border-radius: 6px;
  border: 1px solid rgba(245, 158, 11, 0.15);
}
.cart-foot { padding: 16px 20px; border-top: 1px solid var(--border); background: var(--card2); }
.wa-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; background: linear-gradient(135deg, var(--green), var(--green2));
  color: #fff; padding: 14px; border-radius: 12px;
  font-weight: 700; font-size: 14px; text-decoration: none;
  transition: opacity .2s, transform .1s;
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.25);
}
.wa-btn:hover { opacity: .95; }
.wa-btn:active { transform: scale(.98); }

/* COD BOX */
.cod-box { background: var(--card); border: 1px solid var(--border); border-radius: 20px; overflow: hidden; }
.cod-head {
  padding: 16px 20px; background: var(--card2); border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.cod-title { font-size: 13px; font-weight: 700; }
.cod-badge {
  font-size: 10px; font-weight: 800; letter-spacing: 1px;
  background: rgba(245, 158, 11, 0.1); color: var(--gold2);
  border: 1px solid rgba(245, 158, 11, 0.2); border-radius: 6px; padding: 3px 8px;
}
.cod-body { padding: 18px 20px; }
.cod-body p { font-size: 13px; color: var(--muted); margin-bottom: 16px; line-height: 1.6; }
.cod-info {
  display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px;
  padding: 12px; background: rgba(255,255,255,0.01);
  border: 1px dashed var(--border); border-radius: 10px;
}
.cod-row { display: flex; align-items: center; gap: 8px; font-size: 13px; }
.cod-row .l { color: var(--muted); min-width: 60px; }
.cod-row .v { color: var(--white); font-weight: 700; }
.cod-wa {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; background: linear-gradient(135deg, var(--wa), var(--wa2));
  color: #fff; padding: 12px; border-radius: 12px;
  font-weight: 700; font-size: 13px; text-decoration: none;
  transition: opacity .2s, transform .1s; box-shadow: 0 4px 16px rgba(37, 211, 102, 0.2);
}
.cod-wa:hover { opacity: .95; }
.cod-wa:active { transform: scale(.98); }

/* FOOTER */
footer {
  text-align: center; padding: 48px 24px 32px;
  font-size: 13px; color: var(--muted2);
  border-top: 1px solid var(--border); margin-top: 24px;
}
footer strong { color: var(--muted); }
footer a { transition: color 0.2s; }
footer a:hover { color: var(--gold2) !important; }

/* MODAL */
.modal {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: rgba(12, 7, 5, 0.97);
  justify-content: center; align-items: center; padding: 24px;
  backdrop-filter: blur(20px);
}
.modal.on { display: flex; }
.modal img {
  max-width: min(90vw, 760px); max-height: 85vh;
  border-radius: 20px; border: 1px solid var(--border);
  box-shadow: 0 30px 100px rgba(0,0,0,0.8); object-fit: contain;
}
.modal-x {
  position: fixed; top: 20px; right: 24px;
  font-size: 24px; color: var(--muted); cursor: pointer;
  background: rgba(255,255,255,0.05); border: 1px solid var(--border);
  border-radius: 10px; padding: 8px 14px; transition: color .2s, background-color 0.2s;
}
.modal-x:hover { color: var(--gold2); background: rgba(255,255,255,0.1); }

/* EMPTY STATE */
.empty { grid-column: 1/-1; text-align: center; padding: 80px 20px; color: var(--muted); }
.empty-ico { font-size: 44px; margin-bottom: 12px; }
.empty p { font-size: 15px; }

/* RESPONSIVE PADDING */
@media(max-width:480px) {
  .hero { padding: 56px 16px 48px; }
  .main { padding: 32px 16px 56px; }
  .nav-in { padding: 0 16px; }
  .trust { padding: 12px 16px; }
}

/* ─── CHECKOUT FORM MODAL ─── */
.form-group { margin-bottom: 18px; text-align: left; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--muted); margin-bottom: 6px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 12px; background: var(--bg); border: 1px solid var(--border);
  border-radius: 8px; color: var(--white); font-family: 'Outfit', sans-serif; font-size: 14px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--gold); outline: none; box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.15);
}
.checkout-modal-box {
  background: var(--card); border: 1px solid var(--border); border-radius: 20px;
  width: 100%; max-width: 480px; padding: 28px; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.8);
  position: relative; animation: slideUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes slideUp { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.modal-title { font-size: 20px; font-weight: 800; color: var(--white); margin-bottom: 6px; text-align: center; }
.modal-subtitle { font-size: 13px; color: var(--muted); margin-bottom: 24px; text-align: center; }

/* ─── TESTIMONIALS SECTION ─── */
.testi-sec { margin-top: 80px; text-align: center; }
.testi-title-box { margin-bottom: 32px; }
.testi-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px;
  max-width: 1100px; margin: 0 auto;
}
.testi-card {
  background: var(--card); border: 1px solid var(--border); border-radius: 20px;
  padding: 24px; text-align: left; position: relative; transition: transform 0.3s;
}
.testi-card:hover { transform: translateY(-4px); border-color: var(--border2); }
.stars { color: #f59e0b; font-size: 15px; margin-bottom: 12px; display: flex; gap: 2px; }
.testi-txt { font-size: 14px; color: var(--white); line-height: 1.6; margin-bottom: 18px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 42px; height: 42px; background: var(--card2); border: 1px solid var(--border);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.testi-name { font-size: 14px; font-weight: 700; color: var(--white); }
.testi-loc { font-size: 11px; color: var(--muted); font-weight: 500; }

/* ─── FAQ ACCORDION ─── */
.faq-sec { margin-top: 80px; }
.faq-container { max-width: 800px; margin: 32px auto 0; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--card); border: 1px solid var(--border); border-radius: 14px;
  overflow: hidden; transition: border-color 0.2s;
}
.faq-item:hover { border-color: var(--border2); }
.faq-btn {
  width: 100%; padding: 18px 24px; background: transparent; border: none;
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; text-align: left; color: var(--white);
  font-family: 'Outfit', sans-serif; font-size: 15px; font-weight: 700; gap: 16px;
}
.faq-btn span { transition: transform 0.3s; font-size: 14px; color: var(--gold); }
.faq-btn.active span { transform: rotate(180deg); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s;
  padding: 0 24px; color: var(--muted); font-size: 14px; line-height: 1.6;
}
.faq-answer.show { padding-bottom: 20px; }

/* ─── FLOATING LIVE NOTIFICATIONS ─── */
.floating-notifs {
  position: fixed; bottom: 24px; left: 24px; z-index: 9999;
  display: flex; flex-direction: column; gap: 12px; pointer-events: none;
  max-width: 320px; width: calc(100vw - 48px);
}
.notif-card {
  background: rgba(28, 18, 14, 0.85); border: 1px solid var(--border);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  padding: 14px 18px; border-radius: 14px; box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  display: flex; gap: 12px; align-items: center; pointer-events: auto;
  animation: slideInLeft 0.5s cubic-bezier(0.16, 1, 0.3, 1), fadeOut 0.8s 4.2s forwards;
}
@keyframes slideInLeft {
  from { transform: translateX(-40px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}
@keyframes fadeOut {
  from { opacity: 1; transform: translateY(0); }
  to { opacity: 0; transform: translateY(10px); }
}
.notif-icon { font-size: 22px; flex-shrink: 0; }
.notif-body { font-size: 12px; line-height: 1.5; color: var(--white); }
.notif-body strong { color: var(--gold2); }
.notif-body em { font-style: normal; color: var(--white); font-weight: 600; }

