/*
  GURPREET FIREWORKS — Premium Minimal Design System
  Philosophy: Breathe. Less is luxury.
*/

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --bg: #ffffff;
  --bg-alt: #f9f9f9;
  --gold: #b59438;
  --gold-dim: rgba(181, 148, 56, 0.1);
  --white: #111111;
  --gray: #666666;
  --gray-light: #333333;
  --gray-dark: #f0f0f0;
  --border: rgba(0, 0, 0, 0.08);
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', -apple-system, sans-serif;
  --ease: cubic-bezier(0.25, 1, 0.5, 1);
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--gold); color: var(--bg); }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold); }

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button, input, textarea, select { font-family: inherit; border: none; outline: none; background: none; color: inherit; }
ul { list-style: none; }

/* === LAYOUT === */
.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.section {
  padding: 120px 0;
}

/* === TYPOGRAPHY === */
.label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--gold);
  display: block;
  margin-bottom: 20px;
}

.heading {
  font-family: var(--font-serif);
  font-weight: 300;
  line-height: 1.15;
}

.heading-xl { font-size: clamp(2.8rem, 6vw, 5.5rem); }
.heading-lg { font-size: clamp(2rem, 4vw, 3.2rem); }
.heading-md { font-size: clamp(1.5rem, 3vw, 2rem); }

.heading em {
  font-style: italic;
  font-weight: 300;
}

.subtext {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 520px;
  line-height: 1.8;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 35px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.4s var(--ease);
  cursor: pointer;
}

.btn-gold {
  background: var(--gold);
  color: #ffffff;
}

.btn-gold:hover {
  background: #b8963f;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201,168,76,0.25);
}

.btn-outline {
  border: 1px solid var(--white);
  color: var(--white);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* Gold line separator */
.gold-line {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 30px 0;
}

/* === HEADER === */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 1000;
  transition: all 0.4s var(--ease);
}

header.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
}

header .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo img {
  height: 42px;
  width: 42px;
  border-radius: 50%;
  object-fit: cover;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-brand {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 2px;
}

.logo-sub {
  font-size: 0.55rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gray);
}

nav {
  display: flex;
  align-items: center;
  gap: 35px;
}

nav a {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gray);
  transition: color 0.3s;
}

nav a:hover { color: var(--white); }

.header-icons {
  display: flex;
  align-items: center;
  gap: 20px;
}

.icon-btn {
  position: relative;
  font-size: 1.05rem;
  color: var(--gray-light);
  cursor: pointer;
  transition: color 0.3s;
}

.icon-btn:hover { color: var(--gold); }

.icon-btn .count {
  position: absolute;
  top: -6px;
  right: -8px;
  background: var(--gold);
  color: #ffffff;
  font-size: 0.55rem;
  font-weight: 600;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-toggle {
  display: none;
  font-size: 1.2rem;
  color: var(--white);
  cursor: pointer;
}

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(to right, rgba(255,255,255,0.94) 35%, rgba(255,255,255,0.4) 100%),
    url('../assets/hero_bg.png')
    center / cover no-repeat;
}

#fireworksCanvas {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  pointer-events: none;
  z-index: 0;
}

.hero .wrap {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-inner {
  max-width: 700px;
  padding: 120px 0;
  text-align: left;
}

.hero-title {
  margin-bottom: 30px;
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--gray-light);
  line-height: 1.9;
  margin-bottom: 45px;
  max-width: 550px;
}

.hero-btns {
  display: flex;
  gap: 20px;
  margin-bottom: 80px;
  justify-content: flex-start;
}

.hero-stats {
  display: flex;
  gap: 60px;
  border-top: 1px solid var(--border);
  padding-top: 40px;
}

.hero-stat h3 {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--gold);
}

.hero-stat p {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gray);
  margin-top: 5px;
}

/* === CATEGORIES GRID === */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.cat-item {
  position: relative;
  height: 400px;
  overflow: hidden;
  cursor: pointer;
}

.cat-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease), filter 0.4s;
  filter: brightness(0.5);
}

.cat-item:hover img {
  transform: scale(1.05);
  filter: brightness(0.65);
}

.cat-text {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 30px;
  z-index: 2;
}

.cat-text h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 5px;
  color: #ffffff;
}

.cat-text span {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
}

/* Wide span variant */
.cat-item.wide {
  grid-column: span 2;
}

/* === PRODUCTS === */
.product-filters {
  display: flex;
  gap: 30px;
  margin-bottom: 50px;
}

.product-filters button {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gray);
  cursor: pointer;
  padding-bottom: 8px;
  border-bottom: 1px solid transparent;
  transition: all 0.3s;
}

.product-filters button.active,
.product-filters button:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.p-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: all 0.4s var(--ease);
}

.p-card:hover {
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-4px);
}

.p-card-img {
  height: 260px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
  padding: 25px;
}

.p-card-img img {
  max-width: 85%;
  max-height: 85%;
  object-fit: contain;
  transition: transform 0.5s var(--ease);
}

.p-card:hover .p-card-img img {
  transform: scale(1.06);
}

.p-card-img .wish-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 0.9rem;
  color: var(--gray);
  cursor: pointer;
  z-index: 3;
  transition: color 0.3s;
}

.p-card-img .wish-btn:hover,
.p-card-img .wish-btn.active {
  color: #e74c3c;
}

.p-card-img .p-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.88);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  opacity: 0;
  transition: opacity 0.3s;
}

.p-overlay .btn-outline {
  color: #ffffff !important;
  border-color: rgba(255,255,255,0.3) !important;
}

.p-overlay .btn-outline:hover {
  color: var(--gold) !important;
  border-color: var(--gold) !important;
}

.p-card:hover .p-overlay {
  opacity: 1;
}

.p-card-body {
  padding: 22px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.p-card-cat {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
}

.p-card-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 400;
  min-height: 44px;
}

.p-card-stars {
  color: var(--gold);
  font-size: 0.7rem;
  display: flex;
  gap: 2px;
  align-items: center;
}

.p-card-stars .rev {
  color: var(--gray);
  margin-left: 6px;
  font-family: var(--font-sans);
}

.p-card-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.p-card-price strong {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 500;
}

.p-card-price del {
  font-size: 0.85rem;
  color: var(--gray);
}

/* Badge */
.badge {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 10px;
}

.badge-gold { background: var(--gold-dim); color: var(--gold); }
.badge-sale { background: rgba(231,76,60,0.15); color: #e74c3c; }
.badge-eco { background: rgba(46,204,113,0.15); color: #2ecc71; }

.p-card-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  z-index: 3;
}

/* === DIWALI PROMO === */
.promo-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.95) 50%, rgba(181,148,56,0.08) 100%),
    url('../assets/cat_diwali.png')
    center / cover no-repeat;
  border: 1px solid rgba(201,168,76,0.15);
  padding: 70px;
}

.timer-row {
  display: flex;
  gap: 20px;
  margin-top: 35px;
}

.timer-box {
  text-align: center;
}

.timer-box .num {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

.timer-box .lbl {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gray);
  margin-top: 6px;
}

/* === TESTIMONIALS === */
.testimonials-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.t-card {
  padding: 40px;
  border: 1px solid var(--border);
  background: var(--bg-alt);
}

.t-stars {
  color: var(--gold);
  font-size: 0.8rem;
  margin-bottom: 20px;
}

.t-quote {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 25px;
  color: var(--gray-light);
}

.t-user {
  display: flex;
  align-items: center;
  gap: 14px;
}

.t-user img, .t-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.t-avatar {
  border: 1px solid var(--gold);
  background: var(--bg-alt);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 0.9rem;
}

.t-user-info h4 {
  font-size: 0.85rem;
  font-weight: 500;
}

.t-user-info span {
  font-size: 0.7rem;
  color: var(--gray);
}

/* === FEATURES (Why Choose) === */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.f-item {
  text-align: center;
  padding: 30px 15px;
}

.f-item i {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}

.f-item h4 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 10px;
}

.f-item p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.6;
}

/* === STORES === */
.stores-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.store-box {
  padding: 30px;
  border: 1px solid var(--border);
  background: var(--bg-alt);
  cursor: pointer;
  transition: all 0.3s var(--ease);
}

.store-box:hover, .store-box.active {
  border-color: var(--gold);
}

.store-box h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 15px;
}

.store-box p {
  font-size: 0.8rem;
  color: var(--gray);
  margin-bottom: 6px;
}

.store-box p i {
  color: var(--gold);
  width: 16px;
  margin-right: 8px;
  font-size: 0.75rem;
}

/* === SAFETY (Accordion) === */
.accord-list {
  max-width: 800px;
}

.accord-item {
  border-bottom: 1px solid var(--border);
}

.accord-head {
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.accord-head h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  transition: color 0.3s;
}

.accord-head i {
  color: var(--gray);
  font-size: 0.85rem;
  transition: all 0.3s;
}

.accord-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}

.accord-body p {
  padding-bottom: 22px;
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.7;
}

.accord-item.open .accord-head h3 { color: var(--gold); }
.accord-item.open .accord-head i { transform: rotate(180deg); color: var(--gold); }
.accord-item.open .accord-body { max-height: 200px; }

/* === CONTACT === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
}

.contact-info-item {
  margin-bottom: 35px;
}

.contact-info-item h4 {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 10px;
}

.contact-info-item p {
  font-size: 0.95rem;
  color: var(--gray-light);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.field {
  margin-bottom: 22px;
}

.field label {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gray);
  margin-bottom: 8px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 0;
  font-size: 0.9rem;
  color: var(--white);
  background: transparent;
  border-bottom: 1px solid var(--gray-dark);
  transition: border-color 0.3s;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-bottom-color: var(--gold);
}

.field textarea {
  resize: vertical;
  min-height: 80px;
}

.field select {
  -webkit-appearance: none;
}

/* === FOOTER === */
footer {
  background: #050505;
  border-top: 1px solid var(--border);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 50px;
  margin-bottom: 60px;
}

.footer-col h4 {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-col p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.7;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 0.85rem; color: var(--gray); transition: color 0.3s; }
.footer-col a:hover { color: var(--white); }

.nl-form {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.nl-form input {
  flex: 1;
  padding: 10px 0;
  font-size: 0.85rem;
  color: var(--white);
  background: transparent;
  border-bottom: 1px solid var(--gray-dark);
}

.nl-form button {
  background: var(--gold);
  color: var(--bg);
  padding: 0 20px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--gray);
}

.footer-bottom-links { display: flex; gap: 25px; }

/* === FLOATING ELEMENTS === */
.wa-float {
  position: fixed;
  bottom: 35px;
  right: 35px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  z-index: 99;
  transition: transform 0.3s;
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
}

.wa-float:hover { transform: scale(1.1); }

/* === DRAWERS === */
.drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 420px;
  height: 100vh;
  background: var(--bg-alt);
  border-left: 1px solid var(--border);
  z-index: 1100;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
  display: flex;
  flex-direction: column;
}

.drawer.open { transform: translateX(0); }

.drawer-head {
  padding: 25px 30px;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.drawer-head h2 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 400;
}

.drawer-close {
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--gray);
  transition: color 0.3s;
}

.drawer-close:hover { color: #e74c3c; }

.drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 25px 30px;
}

.drawer-foot {
  padding: 25px 30px;
  border-top: 1px solid var(--border);
  background: var(--bg-alt);
}

.drawer-total {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  font-size: 1rem;
}

.drawer-total span:last-child {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--gold);
}

.empty-drawer {
  text-align: center;
  margin: auto;
  color: var(--gray);
}

.empty-drawer i {
  font-size: 2rem;
  margin-bottom: 15px;
  opacity: 0.3;
  display: block;
}

/* Drawer items */
.d-item {
  display: flex;
  gap: 15px;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--border);
  align-items: center;
}

.d-item-thumb {
  width: 55px; height: 55px;
  background: #ffffff;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.d-item-thumb img { max-width: 80%; max-height: 80%; object-fit: contain; }

.d-item-info { flex: 1; }

.d-item-info h4 {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 400;
}

.d-item-info span {
  font-size: 0.85rem;
  color: var(--gold);
  display: block;
  margin-top: 3px;
}

.d-item-qty {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
}

.d-item-qty button {
  width: 20px; height: 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  color: var(--white);
  font-size: 0.75rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.d-item-remove {
  color: var(--gray);
  cursor: pointer;
  transition: color 0.3s;
}

.d-item-remove:hover { color: #e74c3c; }

/* === MODALS === */
.modal-bg {
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,0.9);
  backdrop-filter: blur(10px);
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.modal-bg.show { opacity: 1; visibility: visible; }

.modal-box {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  width: 90%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 50px;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.4s var(--ease);
}

.modal-bg.show .modal-box { transform: translateY(0); }

.modal-box.qv {
  max-width: 850px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.qv-image {
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 360px;
}

.qv-image img { max-width: 80%; max-height: 80%; object-fit: contain; }

.qv-details { display: flex; flex-direction: column; gap: 15px; }

.qv-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 12px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  font-size: 0.75rem;
}

.qv-specs span i { color: var(--gold); margin-right: 4px; }

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 1.3rem;
  cursor: pointer;
  color: var(--gray);
  transition: color 0.3s;
}

.modal-close:hover { color: var(--white); }

.modal-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--border);
}

/* === TOAST === */
.toast-wrap {
  position: fixed;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.toast {
  background: rgba(10,10,10,0.95);
  border: 1px solid var(--gold);
  padding: 14px 30px;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  animation: toastIn 0.3s var(--ease), toastOut 0.3s 3.5s forwards;
}

.toast i { color: var(--gold); }

@keyframes toastIn {
  from { transform: translateY(-30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes toastOut {
  to { opacity: 0; }
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  nav { display: none; }
  .menu-toggle { display: block; }
  nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 80px; left: 0;
    width: 100%; height: calc(100vh - 80px);
    background: var(--bg);
    padding: 40px;
    gap: 25px;
    z-index: 999;
  }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-item.wide { grid-column: span 2; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-row { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .stores-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .promo-banner { grid-template-columns: 1fr; padding: 40px; }
  .modal-box.qv { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .wrap { padding: 0 24px; }
  .section { padding: 80px 0; }
  .cat-grid { grid-template-columns: 1fr; }
  .cat-item.wide { grid-column: span 1; }
  .cat-item { height: 280px; }
  .product-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .stores-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 20px; }
  .hero-btns { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 15px; text-align: center; }
  .drawer { width: 100%; }
  .form-row { grid-template-columns: 1fr; }
  .product-filters { flex-wrap: wrap; gap: 15px; }
  .timer-row { flex-wrap: wrap; }
}

/* === BREADCRUMBS === */
.breadcrumbs {
  font-size: 0.8rem;
  color: var(--gray);
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.breadcrumbs a {
  transition: color 0.3s;
}
.breadcrumbs a:hover {
  color: var(--gold);
}

/* === PRODUCT DETAILS GRID === */
.p-details-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: start;
}
.p-details-gallery {
  position: sticky;
  top: 120px;
}
.p-gallery-img {
  background: #0e0e0e;
  border: 1px solid var(--border);
  padding: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 500px;
  position: relative;
}
.p-gallery-img img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}
.p-details-info {
  display: flex;
  flex-direction: column;
}
.pd-price-row {
  display: flex;
  align-items: baseline;
  gap: 15px;
  margin: 15px 0 30px;
}
.pd-price {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--gold);
  font-weight: 400;
}
.pd-price-del {
  font-size: 1.2rem;
  color: var(--gray);
  text-decoration: line-through;
}
.pd-desc {
  color: var(--gray-light);
  line-height: 1.8;
  margin-bottom: 40px;
  font-size: 1.05rem;
}
.pd-actions {
  display: flex;
  gap: 20px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}
.qty-select {
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  background: var(--bg-alt);
  height: 50px;
}
.qty-select button {
  width: 45px;
  height: 100%;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}
.qty-select button:hover {
  background: var(--border);
  color: var(--gold);
}
.qty-select span {
  width: 45px;
  text-align: center;
  font-weight: 500;
}
.pd-actions .btn {
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pd-actions .btn-gold {
  flex-grow: 1.5;
}
.pd-actions .btn-outline {
  flex-grow: 1;
}
.pd-trust-badges {
  display: flex;
  gap: 30px;
  border-top: 1px solid var(--border);
  padding-top: 30px;
}
.pd-badge-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray);
}
.pd-badge-item i {
  color: var(--gold);
  font-size: 0.95rem;
}

/* === PRODUCT TABS === */
.pd-tabs {
  border-top: 1px solid var(--border);
  padding-top: 60px;
}
.pd-tab-headers {
  display: flex;
  gap: 40px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 40px;
}
.tab-btn {
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gray);
  cursor: pointer;
  padding-bottom: 15px;
  border-bottom: 2px solid transparent;
  transition: all 0.3s;
}
.tab-btn.active, .tab-btn:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.tab-pane {
  display: none;
}
.tab-pane.active {
  display: block;
  animation: fadeIn 0.5s ease forwards;
}
.tab-pane p {
  color: var(--gray-light);
  line-height: 1.8;
  max-width: 900px;
}
.specs-table {
  width: 100%;
  max-width: 600px;
  border-collapse: collapse;
}
.specs-table td {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}
.specs-table td:first-child {
  color: var(--gray);
  font-weight: 500;
  width: 40%;
}
.specs-table td:last-child {
  color: var(--white);
}
.safety-list {
  padding-left: 20px;
}
.safety-list li {
  margin-bottom: 12px;
  color: var(--gray-light);
  line-height: 1.7;
  list-style-type: decimal;
}

/* === CART PAGE LAYOUT === */
.cart-layout-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 50px;
  align-items: start;
}
.cart-items-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cart-item-row {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 25px;
  align-items: center;
  border: 1px solid var(--border);
  background: var(--bg-alt);
  padding: 20px;
  transition: border-color 0.3s;
}
.cart-item-row:hover {
  border-color: rgba(201, 168, 76, 0.25);
}
.cart-item-row img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  background: #0e0e0e;
  padding: 5px;
  border: 1px solid var(--border);
}
.cart-item-info h4 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 5px;
}
.cart-item-info h4 a {
  transition: color 0.3s;
}
.cart-item-info h4 a:hover {
  color: var(--gold);
}
.cart-item-info span {
  font-size: 0.75rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.cart-item-qty {
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  height: 38px;
}
.cart-item-qty button {
  width: 32px;
  height: 100%;
  cursor: pointer;
  font-size: 0.9rem;
  transition: background 0.3s, color 0.3s;
}
.cart-item-qty button:hover {
  background: var(--border);
  color: var(--gold);
}
.cart-item-qty span {
  width: 35px;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 500;
}
.cart-item-subtotal {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 500;
  width: 100px;
  text-align: right;
}
.cart-item-remove-btn {
  color: var(--gray);
  cursor: pointer;
  font-size: 0.95rem;
  transition: color 0.3s;
  padding: 5px;
  margin-left: 10px;
}
.cart-item-remove-btn:hover {
  color: #e74c3c;
}

/* Summary Card */
.cart-summary-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  padding: 40px;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  font-size: 0.95rem;
  color: var(--gray-light);
}
.summary-row strong {
  font-weight: 600;
}
.fulfillment-box {
  margin-top: 30px;
  border-top: 1px solid var(--border);
  padding-top: 25px;
}
.fulfillment-box h3, .store-select-box h3 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  margin-bottom: 15px;
  font-weight: 600;
}
.full-option {
  margin-bottom: 12px;
}
.radio-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 0.9rem;
}
.radio-label input[type="radio"] {
  display: none;
}
.radio-custom {
  width: 18px;
  height: 18px;
  border: 1px solid var(--gray);
  border-radius: 50%;
  display: inline-block;
  position: relative;
  transition: border-color 0.3s;
}
.radio-label input[type="radio"]:checked + .radio-custom {
  border-color: var(--gold);
}
.radio-label input[type="radio"]:checked + .radio-custom::after {
  content: '';
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.radio-text {
  color: var(--gray-light);
}

.store-select-box {
  margin-top: 25px;
  border-top: 1px solid var(--border);
  padding-top: 25px;
}
.store-select {
  width: 100%;
  height: 45px;
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 0 15px;
  color: var(--white);
  font-size: 0.85rem;
  cursor: pointer;
  transition: border-color 0.3s;
}
.store-select:focus {
  border-color: var(--gold);
}
.selected-store-info {
  margin-top: 15px;
  background: rgba(255,255,255,0.02);
  border: 1px dashed var(--border);
  padding: 15px;
  font-size: 0.8rem;
  line-height: 1.6;
  color: var(--gray);
}
.selected-store-info p i {
  color: var(--gold);
  margin-right: 8px;
  width: 12px;
}

.promo-box {
  display: flex;
  margin-top: 30px;
  gap: 10px;
}
.promo-box input {
  flex-grow: 1;
  height: 45px;
  border: 1px solid var(--border);
  background: var(--bg);
  padding: 0 15px;
  font-size: 0.85rem;
}
.promo-box input:focus {
  border-color: var(--gold);
}
.promo-box button {
  padding: 0 25px;
  height: 45px;
  background: var(--border);
  color: var(--white);
  border: 1px solid var(--border);
  cursor: pointer;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s;
}
.promo-box button:hover {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}

/* === CHECKOUT PAGE LAYOUT === */
.checkout-layout-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 60px;
  align-items: start;
}
.checkout-forms-wrap {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.checkout-section-box {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  padding: 35px;
}
.checkout-section-box h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 25px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 12px;
  font-weight: 400;
}
.checkout-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.checkout-forms-wrap input[type="text"],
.checkout-forms-wrap input[type="tel"],
.checkout-forms-wrap input[type="email"],
.checkout-forms-wrap textarea {
  width: 100%;
  height: 48px;
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 0 15px;
  color: var(--white);
  font-size: 0.9rem;
  transition: border-color 0.3s;
}
.checkout-forms-wrap textarea {
  height: auto;
  padding: 12px 15px;
}
.checkout-forms-wrap input:focus,
.checkout-forms-wrap textarea:focus {
  border-color: var(--gold);
}
.checkout-payment-options {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.payment-option-card {
  border: 1px solid var(--border);
  background: var(--bg);
  padding: 20px;
  cursor: pointer;
  transition: all 0.3s;
}
.payment-option-card.active, .payment-option-card:hover {
  border-color: var(--gold);
}
.payment-option-card .radio-label {
  font-weight: 500;
}
.payment-details-form {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px dashed var(--border);
  display: none;
  animation: fadeIn 0.4s var(--ease);
}
.payment-option-card.active .payment-details-form {
  display: block;
}

/* Summary Items */
.checkout-summary-box {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  padding: 35px;
  position: sticky;
  top: 120px;
}
.summary-items-list {
  max-height: 250px;
  overflow-y: auto;
  margin-bottom: 25px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 15px;
}
.summary-item-mini {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  font-size: 0.85rem;
}
.summary-item-mini-info {
  display: flex;
  align-items: center;
  gap: 12px;
}
.summary-item-mini-info img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  background: #0e0e0e;
  border: 1px solid var(--border);
  padding: 2px;
}
.summary-item-mini-text span {
  display: block;
}
.summary-item-mini-text span:first-child {
  color: var(--white);
  font-weight: 400;
}
.summary-item-mini-text span:last-child {
  color: var(--gray);
  font-size: 0.75rem;
}
.summary-item-mini-price {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--white);
}

@media (max-width: 991px) {
  .p-details-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .p-details-gallery {
    position: relative;
    top: 0;
  }
  .p-gallery-img {
    height: 380px;
  }
  .cart-layout-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .checkout-layout-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .checkout-summary-box {
    position: relative;
    top: 0;
  }
}
@media (max-width: 768px) {
  .p-gallery-img {
    height: 280px;
  }
}
@media (max-width: 575px) {
  .cart-item-row {
    grid-template-columns: auto 1fr;
    gap: 15px;
  }
  .cart-item-qty {
    grid-column: span 2;
    margin-top: 10px;
  }
  .cart-item-subtotal {
    grid-column: span 2;
    text-align: left;
    width: auto;
    margin-top: 10px;
  }
  .checkout-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

