/* ============================================================
   style.css — Abia Solo Business
   Main Styles — Luxury Fashion E-commerce
   ============================================================ */

/* ── VARIABLES ─────────────────────────────────────────────── */
:root {
  --black:      #0a0a0a;
  --charcoal:   #1a1a1a;
  --charcoal2:  #222222;
  --gold:       #c9a84c;
  --gold-light: #e8c96b;
  --gold-dark:  #a07830;
  --offwhite:   #f5f0e8;
  --white:      #ffffff;
  --grey:       #888888;
  --grey-light: #cccccc;
  --danger:     #e74c3c;
  --success:    #2ecc71;

  --font-heading: 'Cormorant Garamond', serif;
  --font-body:    'Montserrat', sans-serif;

  --nav-height: 80px;
  --transition: all 0.3s ease;
  --shadow:     0 4px 20px rgba(0,0,0,0.4);
  --shadow-gold:0 0 20px rgba(201,168,76,0.3);
  --radius:     4px;
  --radius-lg:  8px;
}

/* ── RESET ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--offwhite);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }
input, textarea, select { font-family: var(--font-body); }

/* ── TYPOGRAPHY ────────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--offwhite);
  text-align: center;
  margin-bottom: 0.5rem;
}
.section-title span { color: var(--gold); }
.section-divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 0.75rem auto 3rem;
}

/* ── GOLD BUTTON ───────────────────────────────────────────── */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  transition: var(--transition);
  border: 2px solid var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--black);
}

/* ── NAVBAR ────────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: transparent;
  transition: var(--transition);
  border-bottom: 1px solid transparent;
}
#navbar.scrolled {
  background: rgba(10,10,10,0.97);
  border-bottom-color: rgba(201,168,76,0.2);
  box-shadow: 0 2px 20px rgba(0,0,0,0.6);
}
.nav-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
}
.nav-logo-img-wrap {
  display: block;
  flex-shrink: 0;
}
.nav-logo-img {
  display: block;
  height: 86px;
  width: auto;
  object-fit: contain;
}
.nav-logo .logo-slogan {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 1px;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-link {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--offwhite);
  position: relative;
  transition: color 0.25s;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav-link:hover,
.nav-link.active { color: var(--gold); }
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.lang-toggle {
  display: flex;
  align-items: center;
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 20px;
  overflow: hidden;
}
.lang-btn {
  padding: 0.25rem 0.65rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--grey);
  transition: var(--transition);
  cursor: pointer;
}
.lang-btn.active {
  background: var(--gold);
  color: var(--black);
}
.cart-toggle {
  position: relative;
  font-size: 1.2rem;
  color: var(--offwhite);
  transition: color 0.25s;
}
.cart-toggle:hover { color: var(--gold); }
.cart-badge {
  position: absolute;
  top: -8px; right: -8px;
  background: var(--gold);
  color: var(--black);
  font-size: 0.65rem;
  font-weight: 700;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--offwhite);
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ── HERO ──────────────────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--black);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(201,168,76,0.08) 0%, transparent 60%),
    linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 60px,
      rgba(201,168,76,0.03) 60px,
      rgba(201,168,76,0.03) 61px
    );
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  padding: 0 1.5rem;
  animation: fadeUp 1s ease both;
}
.hero-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.4);
  padding: 0.35rem 1rem;
  border-radius: 20px;
  margin-bottom: 1.5rem;
}
.hero-heading {
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 700;
  color: var(--offwhite);
  margin-bottom: 1rem;
  line-height: 1.05;
}
.hero-heading span { color: var(--gold); }
.hero-sub {
  font-size: 1rem;
  color: var(--grey-light);
  margin-bottom: 2.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--grey);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.hero-scroll i { font-size: 1rem; color: var(--gold); }

/* ── CATEGORIES ────────────────────────────────────────────── */
#categories {
  padding: 6rem 0;
  background: var(--charcoal);
}
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.category-card {
  background: var(--black);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius-lg);
  padding: 2.5rem 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  display: block;
}
.category-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
  transform: translateY(-4px);
}
.category-card i {
  font-size: 2.2rem;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}
.category-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--offwhite);
}
.category-card p {
  font-size: 0.8rem;
  color: var(--grey);
  margin-top: 0.25rem;
}

/* ── FEATURED PRODUCTS ─────────────────────────────────────── */
#featured { padding: 6rem 0; background: var(--black); }
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.product-card {
  background: var(--charcoal);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.product-card:hover {
  border-color: rgba(201,168,76,0.4);
  box-shadow: var(--shadow-gold);
  transform: translateY(-4px);
}
.product-img-link { display: block; }
.product-img {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--charcoal2);
}
.product-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-img img { transform: scale(1.05); }
.img-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--gold);
  opacity: 0.5;
}
.new-badge {
  position: absolute;
  top: 0.75rem; left: 0.75rem;
  background: var(--gold);
  color: var(--black);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 2px;
}
.out-of-stock-badge {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--grey-light);
  letter-spacing: 1px;
}
.product-info { padding: 1.25rem; }
.category-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 2px;
  margin-bottom: 0.5rem;
}
.cat-clothing    { background: rgba(201,168,76,0.15); color: var(--gold); }
.cat-shoes       { background: rgba(255,255,255,0.08); color: #aaa; }
.cat-gadgets     { background: rgba(46,204,113,0.1); color: #2ecc71; }
.cat-accessories { background: rgba(231,76,60,0.1); color: #e74c3c; }

.product-name {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--offwhite);
  margin-bottom: 0.75rem;
  transition: color 0.25s;
}
.product-name:hover { color: var(--gold); }
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.product-price {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gold);
}
.product-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-add-cart {
  background: var(--gold);
  color: var(--black);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.btn-add-cart:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}
.btn-add-cart.disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
}
.btn-wishlist {
  font-size: 1rem;
  color: var(--grey);
  transition: color 0.25s;
  padding: 0.3rem;
}
.btn-wishlist:hover,
.btn-wishlist.active { color: #e74c3c; }

/* ── NEW ARRIVALS BANNER ───────────────────────────────────── */
#arrivals-banner {
  padding: 5rem 1.5rem;
  background:
    linear-gradient(135deg, #111 0%, #1a1a1a 50%, #111 100%);
  border-top: 1px solid rgba(201,168,76,0.15);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  text-align: center;
}
.banner-content .tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.banner-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--offwhite);
  margin-bottom: 1rem;
}
.banner-content p {
  color: var(--grey-light);
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ── ABOUT ─────────────────────────────────────────────────── */
#about { padding: 6rem 0; background: var(--charcoal); }
.about-grid {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-visual {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.about-visual-inner {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 5rem;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: var(--radius-lg);
}
.about-text .section-title { text-align: left; }
.about-text .section-divider { margin-left: 0; }
.about-text p {
  color: var(--grey-light);
  line-height: 1.9;
  margin-bottom: 1.5rem;
}
.about-slogan {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--gold);
  border-left: 3px solid var(--gold);
  padding-left: 1rem;
  margin-top: 1.5rem;
}

/* ── TESTIMONIALS ──────────────────────────────────────────── */
#testimonials { padding: 6rem 0; background: var(--black); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.testi-card {
  background: var(--charcoal);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.testi-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.testi-stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 0.75rem; }
.testi-quote {
  color: var(--grey-light);
  font-style: italic;
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}
.testi-name {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--offwhite);
}
.testi-location { font-size: 0.75rem; color: var(--grey); }

/* ── CONTACT ───────────────────────────────────────────────── */
#contact { padding: 6rem 0; background: var(--charcoal); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.contact-info h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--offwhite);
  margin-bottom: 1.5rem;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.contact-detail i {
  color: var(--gold);
  font-size: 1rem;
  margin-top: 0.2rem;
  width: 20px;
}
.contact-detail p {
  color: var(--grey-light);
  font-size: 0.9rem;
}
.contact-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  background: #25D366;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 0.9rem 1.8rem;
  border-radius: var(--radius);
  margin-top: 1.5rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  width: 100%;
  justify-content: center;
}
.contact-wa-btn:hover {
  background: #20b858;
  transform: translateY(-2px);
}
.contact-wa-btn i { font-size: 1.1rem; }

.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.75rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--grey); }
.form-group input,
.form-group textarea {
  background: var(--black);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  color: var(--offwhite);
  font-size: 0.9rem;
  transition: border-color 0.25s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 120px; }

/* ── FOOTER ────────────────────────────────────────────────── */
footer {
  background: #050505;
  border-top: 1px solid rgba(201,168,76,0.2);
  padding: 4rem 0 2rem;
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand .nav-logo { margin-bottom: 1rem; }
.footer-brand p {
  color: var(--grey);
  font-size: 0.85rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.footer-socials {
  display: flex;
  gap: 0.75rem;
}
.social-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey);
  font-size: 0.85rem;
  transition: var(--transition);
}
.social-icon:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--offwhite);
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.75rem;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 30px; height: 1px;
  background: var(--gold);
}
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a {
  color: var(--grey);
  font-size: 0.85rem;
  transition: color 0.25s;
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: 0.8rem; color: var(--grey); }
.footer-bottom a { color: var(--gold); }

/* ── CART DRAWER ───────────────────────────────────────────── */
#cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 1099;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
#cart-overlay.active { opacity: 1; pointer-events: all; }

#cart-drawer {
  position: fixed;
  top: 0; right: -420px;
  width: 400px;
  max-width: 100vw;
  height: 100vh;
  background: var(--charcoal);
  border-left: 1px solid rgba(201,168,76,0.2);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -5px 0 30px rgba(0,0,0,0.5);
}
#cart-drawer.open { right: 0; }

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.cart-header h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--offwhite);
}
.cart-close {
  font-size: 1.1rem;
  color: var(--grey);
  transition: color 0.25s;
}
.cart-close:hover { color: var(--gold); }

#cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.5rem;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) transparent;
}
.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: var(--grey);
  gap: 1rem;
  font-size: 0.9rem;
}
.cart-empty i { font-size: 3rem; color: rgba(201,168,76,0.3); }

.cart-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.cart-item-img {
  width: 70px; height: 70px;
  border-radius: var(--radius);
  overflow: hidden;
  flex-shrink: 0;
  background: var(--black);
}
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-img-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--gold);
}
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name { font-size: 0.85rem; font-weight: 600; color: var(--offwhite); margin-bottom: 0.2rem; }
.cart-item-size { font-size: 0.75rem; color: var(--grey); }
.cart-item-price { font-size: 0.85rem; color: var(--gold); font-weight: 700; margin: 0.3rem 0; }
.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.cart-item-qty button {
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold);
  font-size: 0.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.cart-item-qty button:hover { background: var(--gold); color: var(--black); }
.cart-item-qty span { font-size: 0.85rem; min-width: 20px; text-align: center; }
.cart-item-remove {
  color: var(--grey);
  font-size: 0.85rem;
  padding: 0.25rem;
  flex-shrink: 0;
  transition: color 0.25s;
}
.cart-item-remove:hover { color: var(--danger); }

#cart-drawer-footer {
  padding: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.cart-subtotal-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}
.cart-subtotal-row span:first-child { font-size: 0.85rem; color: var(--grey); letter-spacing: 1px; text-transform: uppercase; }
#cart-subtotal { font-size: 1.1rem; font-weight: 700; color: var(--gold); }
.cart-footer-btns { display: flex; flex-direction: column; gap: 0.75rem; }
#cart-checkout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: #25D366;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.9rem;
  border-radius: var(--radius);
  transition: var(--transition);
}
#cart-checkout:hover { background: #20b858; }
#cart-clear {
  text-align: center;
  color: var(--grey);
  font-size: 0.75rem;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.25s;
}
#cart-clear:hover { color: var(--danger); }

/* ── TOAST ─────────────────────────────────────────────────── */
#toast-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  pointer-events: none;
}
.toast {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--charcoal2);
  border-left: 3px solid var(--gold);
  color: var(--offwhite);
  padding: 0.9rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.85rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  transform: translateX(120%);
  transition: transform 0.35s ease;
  max-width: 320px;
}
.toast.show { transform: translateX(0); }
.toast-success { border-left-color: var(--success); }
.toast-success i { color: var(--success); }
.toast-error { border-left-color: var(--danger); }
.toast-error i { color: var(--danger); }
.toast-info i { color: var(--gold); }

/* ── SCROLL TO TOP ─────────────────────────────────────────── */
#scroll-top {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 900;
  width: 44px; height: 44px;
  background: var(--gold);
  color: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.4);
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
}
#scroll-top.show {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
#scroll-top:hover { background: var(--gold-light); transform: translateY(-2px); }

/* ── SHOP PAGE ─────────────────────────────────────────────── */
.page-hero {
  padding: calc(var(--nav-height) + 3rem) 1.5rem 3rem;
  text-align: center;
  background: var(--charcoal);
  border-bottom: 1px solid rgba(201,168,76,0.15);
}
.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--offwhite);
  margin-bottom: 0.5rem;
}
.page-hero p { color: var(--grey); }

.filter-bar {
  background: var(--charcoal);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 1.25rem 1.5rem;
  position: sticky;
  top: var(--nav-height);
  z-index: 100;
}
.filter-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.filter-cats {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.filter-cat-btn {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 0.4rem 1rem;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 20px;
  color: var(--grey-light);
  background: transparent;
  transition: var(--transition);
  cursor: pointer;
}
.filter-cat-btn:hover,
.filter-cat-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}
.filter-controls {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  margin-left: auto;
  flex-wrap: wrap;
}
.filter-select {
  background: var(--black);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--offwhite);
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius);
  font-size: 0.8rem;
  outline: none;
  cursor: pointer;
}
.filter-search {
  background: var(--black);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--offwhite);
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius);
  font-size: 0.8rem;
  outline: none;
  min-width: 180px;
  transition: border-color 0.25s;
}
.filter-search:focus { border-color: var(--gold); }

.shop-main {
  max-width: 1200px;
  margin: 3rem auto;
  padding: 0 1.5rem;
}
.shop-results-info {
  font-size: 0.8rem;
  color: var(--grey);
  margin-bottom: 1.5rem;
}
.shop-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.no-products {
  grid-column: 1/-1;
  text-align: center;
  padding: 4rem 0;
  color: var(--grey);
}
.no-products i { font-size: 2.5rem; margin-bottom: 1rem; color: rgba(201,168,76,0.3); }
.load-more-wrap { text-align: center; padding: 1rem 0 3rem; }

/* ── PRODUCT DETAIL PAGE ───────────────────────────────────── */
.product-detail-section {
  max-width: 1100px;
  margin: calc(var(--nav-height) + 2rem) auto 4rem;
  padding: 0 1.5rem;
}
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.product-detail-img {
  position: sticky;
  top: calc(var(--nav-height) + 1rem);
}
.product-main-img {
  width: 100%;
  aspect-ratio: 1;
  background: var(--charcoal);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: zoom-in;
  position: relative;
}
.product-main-img img { width: 100%; height: 100%; object-fit: cover; }
.product-main-img .img-placeholder { font-size: 6rem; }

.product-detail-info {}
.product-detail-cat {
  margin-bottom: 0.75rem;
}
.product-detail-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--offwhite);
  margin-bottom: 0.75rem;
}
.product-detail-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.product-detail-desc {
  color: var(--grey-light);
  line-height: 1.8;
  margin-bottom: 2rem;
  font-size: 0.9rem;
}
.product-detail-stock {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.product-detail-stock.instock { color: var(--success); }
.product-detail-stock.outstock { color: var(--danger); }

.size-selector h4,
.qty-selector h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 0.75rem;
}
.size-options { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.size-btn {
  min-width: 44px;
  padding: 0.45rem 0.75rem;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  color: var(--offwhite);
  font-size: 0.8rem;
  font-weight: 600;
  background: transparent;
  transition: var(--transition);
  cursor: pointer;
}
.size-btn:hover { border-color: var(--gold); color: var(--gold); }
.size-btn.selected { background: var(--gold); border-color: var(--gold); color: var(--black); }

.qty-control {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 1.5rem;
  width: fit-content;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  overflow: hidden;
}
.qty-control button {
  width: 40px; height: 40px;
  background: var(--charcoal2);
  color: var(--gold);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s;
}
.qty-control button:hover { background: var(--gold); color: var(--black); }
.qty-control span {
  width: 50px;
  text-align: center;
  font-weight: 700;
  font-size: 0.95rem;
}

.product-cta-btns {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.btn-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: #25D366;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.9rem;
  border-radius: var(--radius);
  transition: var(--transition);
}
.btn-whatsapp:hover { background: #20b858; transform: translateY(-2px); }

.related-section {
  max-width: 1100px;
  margin: 0 auto 4rem;
  padding: 0 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 3rem;
}
.related-section .section-title { text-align: left; }
.related-section .section-divider { margin-left: 0; }
.related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

/* ── ANIMATIONS ────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}
.fade-up {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .products-grid,
  .shop-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: var(--nav-height);
    left: 0; right: 0;
    background: rgba(10,10,10,0.98);
    flex-direction: column;
    align-items: center;
    padding: 2rem 1.5rem;
    gap: 1.5rem;
    transform: translateY(-110%);
    transition: transform 0.35s ease;
    border-bottom: 1px solid rgba(201,168,76,0.2);
  }
  .nav-menu.open { transform: translateY(0); }
  .hamburger { display: flex; }

  .products-grid,
  .shop-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { max-height: 300px; }
  .contact-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .product-detail-grid { grid-template-columns: 1fr; }
  .product-detail-img { position: static; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .products-grid,
  .shop-grid { grid-template-columns: 1fr; }
  .categories-grid { grid-template-columns: 1fr 1fr; }
  .hero-btns { flex-direction: column; align-items: center; }
  #cart-drawer { width: 100vw; }
  .related-grid { grid-template-columns: 1fr; }
}
