/* ===========================
   BossyBliss — Global Styles
   =========================== */

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

/* Crown over the B */
.crown-b {
  position: relative;
  display: inline-block;
  background: linear-gradient(135deg, var(--rose), var(--pink), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.crown-b::before {
  content: '';
  position: absolute;
  top: -0.5em;
  left: 50%;
  transform: translateX(-50%);
  width: 0.8em;
  height: 0.45em;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 36'%3E%3Cdefs%3E%3ClinearGradient id='cg' x1='0' y1='0' x2='1' y2='1'%3E%3Cstop offset='0%25' stop-color='%23ec4899'/%3E%3Cstop offset='100%25' stop-color='%23d97706'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath d='M3 30 L10 10 L20 20 L30 4 L40 20 L50 10 L57 30 Z' fill='none' stroke='url(%23cg)' stroke-width='2.5' stroke-linejoin='round' stroke-linecap='round'/%3E%3Ccircle cx='30' cy='4' r='2' fill='%23ec4899'/%3E%3Ccircle cx='10' cy='10' r='1.5' fill='%23d97706'/%3E%3Ccircle cx='50' cy='10' r='1.5' fill='%23d97706'/%3E%3Cline x1='5' y1='32' x2='55' y2='32' stroke='url(%23cg)' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center / contain;
}

:root {
  --pink: #ec4899;
  --rose: #e11d48;
  --gold: #d97706;
  --purple: #9333ea;
  --dark: #0f0a1a;
  --darker: #0a0612;
  --card: rgba(255,255,255,0.04);
  --border: rgba(255,255,255,0.08);
  --text: #f1f1f3;
  --text-muted: #a0a0b0;
  --text-faint: #6b6b80;
  --radius: 14px;
  --radius-lg: 24px;
  --transition: 0.25s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--dark);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* ===========================
   Background Orbs
   =========================== */
.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.12;
  animation: drift 14s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}
.orb-1 { width: 500px; height: 500px; background: radial-gradient(circle, #9333ea, #6b21a8); top: -150px; left: -150px; }
.orb-2 { width: 400px; height: 400px; background: radial-gradient(circle, #ec4899, #be185d); bottom: -100px; right: -100px; animation-delay: -5s; }
.orb-3 { width: 250px; height: 250px; background: radial-gradient(circle, #7c3aed, #ec4899); top: 40%; right: 10%; animation-delay: -9s; }

@keyframes drift {
  0%, 100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(25px,-20px) scale(1.04); }
  66% { transform: translate(-15px,25px) scale(0.96); }
}

/* ===========================
   Navigation
   =========================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 2rem;
  border-bottom: 1px solid var(--border);
  background: rgba(15, 10, 26, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  background: linear-gradient(135deg, var(--rose), var(--pink), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  flex-shrink: 0;
  padding-top: 0.3em;
}
.logo-dot {
  opacity: 0.35;
  margin: 0 0.02em;
  font-weight: 400;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.03em;
  transition: color var(--transition);
  position: relative;
}
.nav-links a:hover,
.nav-links a.active { color: #ffffff; }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--pink), var(--gold));
  border-radius: 2px;
}

/* Account icon */
.nav-account {
  display: flex;
  align-items: center;
  color: var(--text-muted);
  transition: color var(--transition);
}
.nav-account:hover { color: #ffffff; }

/* Cart icon */
.nav-cart {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.nav-cart:hover { color: #ffffff; }
.nav-cart svg { width: 20px; height: 20px; }
.cart-count {
  position: absolute;
  top: -6px; right: -10px;
  background: var(--rose);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  width: 16px; height: 16px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.cart-count:empty { display: none; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 110;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: all 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
@media (max-width: 768px) {
  .nav-hamburger { display: inline-flex; }
  .nav-links {
    display: flex;
    position: fixed;
    top: 0; right: 0;
    width: 280px;
    height: 100vh;
    background: var(--darker);
    border-left: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    padding: 5rem 2rem 2rem;
    gap: 0;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    z-index: 105;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links li { width: 100%; list-style: none; }
  .nav-links a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
    border-bottom: 1px solid var(--border);
    -webkit-tap-highlight-color: rgba(244,114,182,0.1);
  }
  .nav-links a.active::after { display: none; }
  .nav-cart { padding: 1rem 0 !important; }
  .nav-cart svg { display: inline-block; vertical-align: middle; }
  .mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 99;
  }
  .mobile-overlay.open { display: block; }
}

/* ===========================
   Utility
   =========================== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 5rem 0; position: relative; z-index: 1; }
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(244,114,182,0.1);
  border: 1px solid rgba(244,114,182,0.25);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 1rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.section-title span {
  background: linear-gradient(135deg, var(--pink), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 480px;
  line-height: 1.7;
}

/* ===========================
   Buttons
   =========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 500;
  border: none;
  transition: all var(--transition);
  letter-spacing: 0.02em;
}
.btn-primary {
  background: linear-gradient(135deg, var(--rose), var(--pink));
  color: #fff;
}
.btn-primary:hover { opacity: 0.85; transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-outline:hover { border-color: rgba(244,114,182,0.4); color: var(--pink); }
.btn-sm { padding: 8px 18px; font-size: 0.8rem; }

/* ===========================
   Product Card
   =========================== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}
.product-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
}
.product-card:hover {
  border-color: rgba(244,114,182,0.3);
  transform: translateY(-4px);
}
.product-card-img {
  width: 100%;
  aspect-ratio: 1;
  background: #f9fafb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: relative;
  overflow: hidden;
}
/* SVG placeholder styles */
.product-svg-wrap { width: 100%; height: 100%; position: relative; }
.product-svg-wrap svg { width: 100%; height: 100%; display: block; }
.product-real-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.product-svg-fallback { width: 100%; height: 100%; }
.product-svg-fallback svg { width: 100%; height: 100%; display: block; }
.product-card-img .product-tag {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--rose);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.product-card-body {
  padding: 1.2rem;
}
.product-card-name {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}
.product-card-cat {
  font-size: 0.75rem;
  color: var(--text-faint);
  margin-bottom: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.product-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-card-price {
  font-size: 1.1rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--pink), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.product-card-price .old-price {
  font-size: 0.8rem;
  font-weight: 400;
  -webkit-text-fill-color: var(--text-faint);
  text-decoration: line-through;
  margin-left: 6px;
}
.add-cart-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
  font-size: 1.1rem;
}
.add-cart-btn:hover { border-color: var(--pink); color: var(--pink); background: rgba(244,114,182,0.1); }

/* ===========================
   Stars
   =========================== */
.stars { color: var(--gold); font-size: 0.75rem; letter-spacing: 2px; }

/* ===========================
   Footer
   =========================== */
.footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  padding: 3rem 0;
  margin-top: 2rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}
.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  margin-bottom: 0.8rem;
  padding-top: 0.3em;
  background: linear-gradient(135deg, var(--rose), var(--pink), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer-desc {
  font-size: 0.82rem;
  color: var(--text-faint);
  line-height: 1.7;
  max-width: 280px;
}
.footer-heading {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a {
  font-size: 0.85rem;
  color: var(--text-faint);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--pink); }
.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--text-faint);
}
.footer-socials { display: flex; gap: 1rem; }
.footer-socials a { color: var(--text-faint); transition: color var(--transition); font-size: 0.85rem; }
.footer-socials a:hover { color: var(--pink); }

@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
}
@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
}

/* ===========================
   Hero
   =========================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
  padding-top: 70px;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 1.2rem;
}
.hero h1 span {
  background: linear-gradient(135deg, var(--pink), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 440px;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.hero-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition);
}
.hero-card:hover { transform: translateY(-4px); }
.hero-card:nth-child(2) { transform: translateY(2rem); }
.hero-card:nth-child(2):hover { transform: translateY(calc(2rem - 4px)); }
.hero-card-img {
  aspect-ratio: 3/4;
  background: #f9fafb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  overflow: hidden;
}
.hero-card-img svg { width: 100%; height: 100%; display: block; }
.hero-card-body { padding: 0.8rem 1rem; }
.hero-card-name { font-size: 0.82rem; font-weight: 600; }
.hero-card-price { font-size: 0.78rem; color: var(--pink); }

@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-btns { justify-content: center; }
  .hero-visual { max-width: 340px; margin: 0 auto; }
}

/* ===========================
   Categories
   =========================== */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}
.cat-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all var(--transition);
}
.cat-card:hover {
  border-color: rgba(244,114,182,0.35);
  transform: translateY(-3px);
  background: rgba(244,114,182,0.05);
}
.cat-icon { font-size: 2.5rem; margin-bottom: 0.8rem; }
.cat-name { font-size: 0.9rem; font-weight: 600; margin-bottom: 0.2rem; }
.cat-count { font-size: 0.75rem; color: var(--text-faint); }

/* ===========================
   Banner
   =========================== */
.promo-banner {
  background: linear-gradient(135deg, rgba(225,29,72,0.15), rgba(168,85,247,0.15));
  border: 1px solid rgba(244,114,182,0.2);
  border-radius: var(--radius-lg);
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.promo-banner h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
}
.promo-banner p { color: var(--text-muted); font-size: 0.9rem; }
@media (max-width: 768px) {
  .promo-banner { flex-direction: column; text-align: center; padding: 2rem; }
}

/* ===========================
   Testimonials
   =========================== */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.testimonial-text {
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 1.2rem;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 0.8rem; }
.testimonial-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; font-weight: 700;
}
.testimonial-name { font-size: 0.85rem; font-weight: 600; }
.testimonial-role { font-size: 0.72rem; color: var(--text-faint); }

/* ===========================
   Newsletter
   =========================== */
.newsletter {
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
}
.newsletter-form {
  display: flex;
  gap: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 6px 6px 20px;
  margin-top: 1.5rem;
  transition: border-color var(--transition);
}
.newsletter-form:focus-within { border-color: rgba(244,114,182,0.5); }
.newsletter-form input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: var(--text);
  font-family: inherit;
  font-size: 0.88rem;
  min-width: 0;
}
.newsletter-form input::placeholder { color: var(--text-faint); }

/* ===========================
   Shop Page
   =========================== */
.page-header {
  padding: 8rem 0 3rem;
  text-align: center;
  position: relative;
  z-index: 1;
}
.page-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  margin-bottom: 0.6rem;
}
.page-header p { color: var(--text-muted); font-size: 0.95rem; }

.shop-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
  position: relative;
  z-index: 1;
}
.filter-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.filter-chip {
  padding: 7px 16px;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  font-size: 0.8rem;
  font-family: inherit;
  transition: all var(--transition);
}
.filter-chip:hover { border-color: rgba(244,114,182,0.4); color: var(--pink); }
.filter-chip.active {
  background: rgba(244,114,182,0.15);
  border-color: rgba(244,114,182,0.5);
  color: var(--pink);
}
.sort-select {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 8px 14px;
  color: var(--text-muted);
  font-family: inherit;
  font-size: 0.82rem;
  outline: none;
}
.sort-select { color: var(--text-muted); background: var(--card); }
.sort-select option { background: var(--darker); color: var(--text); }

/* ===========================
   Product Detail
   =========================== */
.product-detail {
  padding: 6rem 0 4rem;
  position: relative;
  z-index: 1;
}
.product-detail-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.product-gallery {
  background: #f9fafb;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8rem;
  overflow: hidden;
}
.product-gallery svg { width: 100%; height: 100%; display: block; }
.product-info {}
.product-breadcrumb {
  font-size: 0.78rem;
  color: var(--text-faint);
  margin-bottom: 1rem;
}
.product-breadcrumb a { transition: color var(--transition); }
.product-breadcrumb a:hover { color: var(--pink); }
.product-info h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
}
.product-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 1rem;
}
.product-rating .count { font-size: 0.8rem; color: var(--text-faint); }
.product-price-block {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 1.5rem;
}
.product-price-main {
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--pink), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.product-price-old {
  font-size: 1.1rem;
  color: var(--text-faint);
  text-decoration: line-through;
}
.product-desc-text {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 2rem;
}
.product-options { margin-bottom: 2rem; }
.option-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}
.option-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.option-chip {
  padding: 8px 18px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  font-size: 0.82rem;
  font-family: inherit;
  transition: all var(--transition);
}
.option-chip:hover { border-color: rgba(244,114,182,0.4); }
.option-chip.active {
  background: rgba(244,114,182,0.15);
  border-color: var(--pink);
  color: var(--pink);
}
.quantity-control {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 2rem;
}
.qty-btn {
  width: 40px; height: 40px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.qty-btn:first-child { border-radius: 10px 0 0 10px; }
.qty-btn:last-child { border-radius: 0 10px 10px 0; }
.qty-btn:hover { border-color: var(--pink); color: var(--pink); }
.qty-value {
  width: 50px; height: 40px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; font-weight: 600;
}
.product-actions { display: flex; gap: 1rem; }
.product-actions .btn { flex: 1; justify-content: center; }

@media (max-width: 768px) {
  .product-detail-inner { grid-template-columns: 1fr; gap: 2rem; }
}

/* ===========================
   Cart
   =========================== */
.cart-layout {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 3rem;
  align-items: start;
  position: relative;
  z-index: 1;
}
.cart-items {}
.cart-item {
  display: flex;
  gap: 1.2rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
  align-items: center;
}
.cart-item-img {
  width: 90px; height: 90px;
  border-radius: var(--radius);
  background: #f9fafb;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.2rem;
  flex-shrink: 0;
  overflow: hidden;
}
.cart-item-img svg { width: 100%; height: 100%; display: block;
}
.cart-item-info { flex: 1; }
.cart-item-name { font-size: 0.95rem; font-weight: 600; margin-bottom: 0.2rem; }
.cart-item-variant { font-size: 0.78rem; color: var(--text-faint); margin-bottom: 0.5rem; }
.cart-item-price { font-size: 1rem; font-weight: 700; color: var(--pink); }
.cart-item-remove {
  background: none;
  border: none;
  color: var(--text-faint);
  font-size: 0.78rem;
  transition: color var(--transition);
}
.cart-item-remove:hover { color: var(--rose); }

.cart-summary {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: sticky;
  top: 90px;
}
.cart-summary h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.8rem;
  font-size: 0.88rem;
}
.summary-row.label { color: var(--text-muted); }
.summary-row.total {
  font-size: 1.1rem;
  font-weight: 700;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  margin-top: 0.5rem;
}
.summary-row.total .val {
  background: linear-gradient(135deg, var(--pink), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cart-summary .btn { width: 100%; justify-content: center; margin-top: 1.5rem; }
.cart-empty {
  text-align: center;
  padding: 4rem 0;
  color: var(--text-muted);
}
.cart-empty-icon { font-size: 4rem; margin-bottom: 1rem; }
.cart-empty h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--text);
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .cart-layout { grid-template-columns: 1fr; }
  .cart-item-img { width: 70px; height: 70px; font-size: 1.8rem; }
}

/* ===========================
   About
   =========================== */
.about-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.about-img {
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(244,114,182,0.1), rgba(168,85,247,0.1));
  display: flex; align-items: center; justify-content: center;
  font-size: 6rem;
  border: 1px solid var(--border);
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
  position: relative;
  z-index: 1;
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--pink), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.3rem;
}
.stat-label { font-size: 0.82rem; color: var(--text-faint); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}
.value-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
}
.value-card:hover { border-color: rgba(244,114,182,0.3); transform: translateY(-3px); }
.value-icon { font-size: 2rem; margin-bottom: 1rem; }
.value-title { font-size: 1rem; font-weight: 600; margin-bottom: 0.4rem; }
.value-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; }

@media (max-width: 768px) {
  .about-hero { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* ===========================
   Toast Notification
   =========================== */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: rgba(26,10,20,0.95);
  color: #fff;
  border: 1px solid rgba(244,114,182,0.3);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 500;
  z-index: 200;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.35s ease;
  pointer-events: none;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast-icon { font-size: 1.2rem; }

/* Product image styles */
.product-emoji { font-size: inherit; }
.product-img { width: 100%; height: 100%; object-fit: cover; }

/* ===========================
   Checkout
   =========================== */
.checkout-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: start;
  position: relative;
  z-index: 1;
}
.checkout-heading {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 900;
  margin-bottom: 1.2rem;
}
.checkout-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group { display: flex; flex-direction: column; gap: 4px; }
.form-group.full-width { grid-column: 1 / -1; }
.form-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.form-input {
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  color: var(--text);
  font-family: inherit;
  font-size: 0.88rem;
  outline: none;
  transition: border-color var(--transition);
}
.form-input:focus { border-color: rgba(244,114,182,0.5); }
.form-input::placeholder { color: var(--text-faint); }

.checkout-summary {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: sticky;
  top: 90px;
}
.checkout-items-list {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1rem;
}
.checkout-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.6rem 0;
}
.checkout-item-img {
  width: 50px; height: 50px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(244,114,182,0.08), rgba(168,85,247,0.08));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.checkout-item-info { flex: 1; }
.checkout-item-name { font-size: 0.85rem; font-weight: 600; }
.checkout-item-meta { font-size: 0.72rem; color: var(--text-faint); }
.checkout-item-price { font-size: 0.88rem; font-weight: 600; color: var(--pink); }

@media (max-width: 768px) {
  .checkout-layout { grid-template-columns: 1fr; }
  .checkout-form-grid { grid-template-columns: 1fr; }
  .form-group.full-width { grid-column: 1; }
  .checkout-summary { position: static; order: -1; }
}