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

:root {
  --bg: #f8f5ff;
  --bg-white: #ffffff;
  --primary: #6B21A8;
  --primary-dark: #4C1D95;
  --primary-mid: #7C3AED;
  --primary-light: #EDE9FE;
  --gold: #D97706;
  --gold-dark: #B45309;
  --text: #1F2937;
  --text-light: #6B7280;
  --text-muted: #9CA3AF;
  --border: #E5E7EB;
  --shadow: 0 2px 12px rgba(107,33,168,0.08);
}

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

html { scroll-behavior: smooth; }

/* Custom scrollbar */
html {
  scrollbar-width: thin;
  scrollbar-color: #640C9E #F1E4FA;
}
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #F1E4FA; }
::-webkit-scrollbar-thumb { background: #640C9E; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: #4C1D95; }

body {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; }

em { font-style: italic; color: var(--primary-mid); }

a { text-decoration: none; }

img { max-width: 100%; display: block; }

/* ===== HEADER ===== */
header {
  background: #fff;
  padding: 14px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 500;
  box-shadow: 0 1px 0 var(--border);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--primary-dark);
}

/* Real logo image */
.logo-img {
  height: 68px;
  width: auto;
  object-fit: contain;
}

.logo-img-sm {
  height: 38px;
  width: auto;
  object-fit: contain;
}

.logo-img-lg {
  height: 70px;
  width: auto;
  object-fit: contain;
}

.logo-badge {
  width: 42px;
  height: 42px;
  background: var(--primary-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  flex-shrink: 0;
}

.logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-dark);
  display: none;
}

nav {
  display: flex;
  gap: 36px;
}

nav a {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text);
  transition: color 0.2s;
  padding-bottom: 2px;
}

nav a:hover, nav a.active {
  color: var(--primary);
  border-bottom: 2px solid var(--primary);
}

.header-right { display: flex; align-items: center; gap: 12px; }

.cart-btn {
  background: var(--primary-dark);
  color: white;
  padding: 10px 18px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s;
  cursor: pointer;
  border: none;
}

.cart-btn:hover { background: var(--primary); }

.cart-count {
  background: white;
  color: var(--primary-dark);
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--text);
}

/* ===== MOBILE NAV ===== */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 600;
}
.mobile-overlay.open { display: block; }

.mobile-panel {
  background: white;
  width: 280px;
  height: 100%;
  padding: 28px 24px;
  position: relative;
}

.mobile-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: var(--text);
}

.mobile-panel a {
  display: block;
  padding: 14px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}

.mobile-panel a:hover { color: var(--primary); }

/* ===== MARQUEE ===== */
.marquee-bar {
  background: var(--primary-light);
  padding: 10px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-bar.marquee-dark {
  background: #4C1D95;
}
.marquee-bar.marquee-dark .marquee-track span {
  color: rgba(255,255,255,0.88);
}
.marquee-bar.marquee-dark .marquee-track span::before {
  color: rgba(255,255,255,0.5);
}

.marquee-track {
  display: inline-flex;
  animation: marqueeScroll 30s linear infinite;
}

.marquee-bar:nth-child(2) .marquee-track {
  animation-direction: reverse;
}

.marquee-track span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary);
  padding: 0 20px;
}

.marquee-track span::before { content: '♦  '; }

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== HERO ===== */
.hero {
  background: radial-gradient(ellipse at 50% 35%, #ece5ff 0%, #d9ccff 45%, #c8b8ff 100%);
  text-align: center;
  padding: 72px 24px 60px;
  min-height: calc(100vh - 68px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-badge {
  display: inline-block;
  border: 1.5px solid #9b7fd4;
  color: #7c5faa;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 9px 24px;
  border-radius: 5px;
  margin-bottom: 32px;
  background: rgba(255,255,255,0.35);
  backdrop-filter: blur(4px);
}

.hero-logo {
  width: 96px;
  height: 96px;
  background: var(--primary-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  font-size: 40px;
  color: white;
  box-shadow: 0 12px 32px rgba(76,29,149,0.3);
}

.hero-logo-wrap {
  margin: 0 auto 28px;
  display: flex;
  justify-content: center;
}

.hero-logo-img {
  height: 150px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 28px rgba(76,29,149,0.3));
}

.hero h1 {
  font-size: 42px;
  font-weight: 400;
  font-style: italic;
  color: var(--primary);
  margin-bottom: 14px;
  line-height: 1.2;
}

.hero-gem-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 16px auto 20px;
  width: 220px;
}
.hero-line {
  flex: 1;
  height: 1px;
  background: #a890d4;
}
.hero-gem { font-size: 16px; line-height: 1; }

.hero-scroll {
  margin-top: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.scroll-mouse {
  width: 22px;
  height: 36px;
  border: 2px solid #9b8abf;
  border-radius: 11px;
  position: relative;
}
.scroll-mouse::after {
  content: '';
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 6px;
  background: #9b8abf;
  border-radius: 2px;
  animation: scrollDot 1.6s ease-in-out infinite;
}
@keyframes scrollDot {
  0%   { top: 5px;  opacity: 1; }
  100% { top: 20px; opacity: 0; }
}
.hero-scroll span {
  font-size: 9px;
  letter-spacing: 3px;
  color: #9b8abf;
  font-weight: 700;
  text-transform: uppercase;
}

.hero p {
  font-size: 15px;
  color: var(--text-light);
  max-width: 500px;
  margin: 0 auto 36px;
  line-height: 1.8;
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== BUTTONS ===== */
.btn-gold {
  background: var(--gold);
  color: white;
  padding: 13px 30px;
  border: none;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  display: inline-block;
}
.btn-gold:hover { background: var(--gold-dark); color: white; }

.btn-outline {
  background: rgba(255,255,255,0.5);
  color: var(--text);
  padding: 13px 30px;
  border: 1.5px solid #9b8abf;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-block;
}
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }

.btn-purple {
  background: var(--primary-dark);
  color: white;
  padding: 13px 30px;
  border: none;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  display: inline-block;
}
.btn-purple:hover { background: var(--primary); color: white; }

/* ===== SECTIONS COMMON ===== */
.section { padding: 72px 48px; }

.sec-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 8px;
}

.sec-title {
  font-size: 38px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 12px;
  color: var(--text);
}

.sec-sub {
  text-align: center;
  font-size: 14px;
  color: var(--text-light);
  max-width: 480px;
  margin: 0 auto 44px;
  line-height: 1.7;
}

/* ===== PRODUCT CARDS ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1160px;
  margin: 0 auto 40px;
}

.products-grid-4 {
  grid-template-columns: repeat(4, 1fr);
  max-width: 1300px;
  gap: 20px;
}

.product-card {
  background: white;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(107,33,168,0.14);
}

.product-img-wrap {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--bg);
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s;
}
.product-card:hover .product-img-wrap img { transform: scale(1.06); }

.product-img-placeholder {
  width: 100%;
  height: 100%;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}

.quick-add-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--primary);
  color: white;
  border: none;
  padding: 11px 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(6px);
  transition: all 0.22s;
  z-index: 2;
  width: 100%;
}
.product-card:hover .quick-add-overlay {
  opacity: 1;
  transform: translateY(0);
}

.badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  z-index: 3;
}
.badge-sale { background: #EF4444; color: white; }
.badge-new { background: var(--primary); color: white; }
.badge-bestseller { background: #D97706; color: white; }

.product-wish {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  background: white;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  font-size: 15px;
  color: #9CA3AF;
  z-index: 3;
  transition: color 0.2s;
}
.product-wish:hover { color: #EF4444; }

.product-info {
  padding: 14px 16px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-info .product-footer {
  margin-top: auto;
}

.product-category {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.product-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.2s;
}
.product-card:hover .product-name {
  color: var(--primary);
}

.product-subtitle {
  font-size: 12px;
  color: var(--primary-mid);
  margin-bottom: 8px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.stars-row {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 12px;
}

.stars {
  color: #F59E0B;
  font-size: 13px;
}

.stars-count {
  font-size: 12px;
  color: var(--text-muted);
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.product-price {
  font-size: 20px;
  font-weight: 700;
  color: var(--gold);
}

.price-old {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-left: 5px;
}

.btn-add-to-cart {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--text);
  padding: 7px 14px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.btn-add-to-cart:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.view-all-center {
  text-align: center;
  margin-top: 8px;
}

.loading-state {
  grid-column: 1/-1;
  text-align: center;
  padding: 60px 20px;
  color: var(--text-light);
}

.spinner {
  width: 36px;
  height: 36px;
  border: 3px solid var(--primary-light);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 12px;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ===== LOVE SECTION ===== */
.love-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.love-img-wrap {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.love-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.love-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(255,255,255,0.93);
  padding: 6px 16px;
  border-radius: 24px;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary-dark);
}

/* ===== WHY SECTION ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 960px;
  margin: 0 auto;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--primary);
}

.feature-item h4 {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.feature-item p {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.6;
}

/* ===== CRAFTED SECTION ===== */
.crafted-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  max-width: 1060px;
  margin: 0 auto;
  align-items: center;
}

.crafted-img {
  border-radius: 14px;
  overflow: hidden;
}

.crafted-img img {
  width: 100%;
  height: 440px;
  object-fit: cover;
}

.crafted-text .sec-label { text-align: left; }

.crafted-title {
  font-size: 38px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 16px;
  font-family: 'Playfair Display', serif;
}

.crafted-body {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 20px;
}

.crafted-quote {
  border-left: 3px solid var(--gold);
  padding: 12px 18px;
  background: #FFFBEB;
  border-radius: 0 8px 8px 0;
  margin-bottom: 28px;
  font-size: 13px;
  font-style: italic;
  color: var(--text);
  line-height: 1.7;
}

.stats-row {
  display: flex;
  gap: 36px;
  margin-bottom: 32px;
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--primary);
}

.stat-lbl {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 2px;
}

/* ===== TESTIMONIALS ===== */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1060px;
  margin: 0 auto;
}

.testi-card {
  background: white;
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 2px 16px rgba(107,33,168,0.08);
}

.testi-text {
  font-size: 14px;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testi-author { display: flex; align-items: center; gap: 12px; }

.testi-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  color: var(--primary);
  flex-shrink: 0;
}

.testi-name { font-size: 13px; font-weight: 600; }
.testi-loc { font-size: 11px; color: var(--text-muted); }

/* ===== NEWSLETTER ===== */
.newsletter {
  display: flex;
  align-items: stretch;
  min-height: 280px;
}

.nl-left {
  flex: 1;
  background: var(--primary-dark);
  padding: 60px 64px;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.nl-left h3 {
  font-size: 34px;
  font-weight: 400;
  color: white;
  margin-bottom: 14px;
  font-family: 'Playfair Display', serif;
}

.nl-left h3 em { color: #C4B5FD; font-style: italic; }

.nl-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 22px;
  line-height: 1.6;
  max-width: 380px;
}

.nl-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.nl-list li {
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  display: flex;
  align-items: center;
  gap: 10px;
}

.nl-diamond {
  color: #C4B5FD;
  font-size: 10px;
  flex-shrink: 0;
}

.nl-right {
  flex: 1;
  background: white;
  padding: 60px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.nl-right h4 {
  font-size: 26px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  font-family: 'Playfair Display', serif;
}

.nl-sub {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 22px;
}

.nl-form { display: flex; flex-direction: column; gap: 12px; }

.nl-form input {
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  font-size: 14px;
  background: var(--bg);
  color: var(--text);
  font-family: inherit;
  outline: none;
  transition: border-color .2s;
}
.nl-form input::placeholder { color: var(--text-muted); }
.nl-form input:focus { border-color: var(--primary); }

.nl-form button {
  background: var(--primary);
  color: white;
  padding: 14px;
  border: none;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  font-family: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.nl-form button:hover { background: var(--primary-dark); }

/* ===== FOOTER ===== */
footer {
  background: white;
  padding: 60px 48px 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.footer-brand-logo span {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-dark);
}

.footer-brand-desc {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 20px;
}

.social-row { display: flex; gap: 10px; }

.social-btn {
  width: 36px;
  height: 36px;
  background: var(--bg);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: var(--text);
  transition: background 0.2s;
  cursor: pointer;
}
.social-btn:hover { background: var(--primary-light); color: var(--primary); }

.footer-col h5 {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 11px; }

.footer-links li a {
  font-size: 13px;
  color: var(--text-light);
  transition: color 0.2s;
}
.footer-links li a:hover { color: var(--primary); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p { font-size: 12px; color: var(--text-muted); }

.payment-row {
  display: flex;
  gap: 14px;
}

.pay-badge {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
}

/* ===== SCROLL TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: var(--primary-dark);
  color: white;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  font-size: 20px;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  transition: background 0.2s;
}
.scroll-top.visible { display: flex; }
.scroll-top:hover { background: var(--primary); }

/* ===== TOAST ===== */
.toast {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: var(--primary-dark);
  color: white;
  padding: 14px 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  z-index: 1000;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s;
  pointer-events: none;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.toast.show { transform: translateY(0); opacity: 1; }

/* ===== SHOP PAGE ===== */
.page-banner {
  background: var(--bg);
  padding: 52px 48px 32px;
}

.page-banner .sec-label { text-align: left; margin-bottom: 6px; }

.page-banner h1 {
  font-size: 46px;
  font-weight: 400;
  color: var(--text);
}

.breadcrumb {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--primary); }

.shop-body {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 36px;
  padding: 28px 48px 72px;
  align-items: start;
}

.sidebar {
  position: sticky;
  top: 90px;
  background: white;
  border-radius: 14px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.filter-group { margin-bottom: 28px; }

.filter-group:last-child { margin-bottom: 0; }

.filter-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.filter-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }

.filter-list li {
  font-size: 13px;
  color: var(--text-light);
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 6px;
  transition: all 0.2s;
}

.filter-list li:hover, .filter-list li.active {
  color: var(--primary);
  background: var(--primary-light);
  font-weight: 600;
}

.color-swatches { display: flex; flex-wrap: wrap; gap: 8px; }

.swatch {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s;
}

.swatch:hover, .swatch.active {
  border-color: var(--text);
  transform: scale(1.15);
}

.shop-main {}

.shop-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.product-count { font-size: 13px; color: var(--text-muted); }

.sort-select {
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 13px;
  color: var(--text);
  background: white;
  cursor: pointer;
}

.products-grid-shop {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* ===== CONTACT PAGE ===== */
.contact-banner {
  padding: 60px 48px 40px;
  background: var(--bg);
  max-width: 1140px;
  margin: 0 auto;
}

.contact-banner .sec-label { text-align: left; color: var(--gold); margin-bottom: 10px; }

.contact-banner h1 { font-size: 54px; font-weight: 400; }

.contact-body {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  padding: 0 48px 72px;
  max-width: 1140px;
  margin: 0 auto;
}

.contact-info-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 22px;
}

.ci-icon {
  width: 46px;
  height: 46px;
  background: var(--primary-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.ci-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 3px;
}

.ci-value { font-size: 14px; font-weight: 500; color: var(--text); }

.follow-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 24px 0 12px;
}

.custom-box {
  background: #FFFBEB;
  border: 1px solid #FDE68A;
  border-radius: 12px;
  padding: 22px;
  margin-top: 28px;
}

.custom-box h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
}

.custom-box p { font-size: 13px; color: var(--text-light); line-height: 1.6; }

.contact-form-card {
  background: white;
  border-radius: 14px;
  padding: 36px;
  box-shadow: var(--shadow);
}

.contact-form-card h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 6px;
}

.contact-form-card > p {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 28px;
}

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

.form-group { margin-bottom: 16px; }

.form-group label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 7px;
}

.form-group label .req { color: var(--primary); }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 7px;
  font-size: 14px;
  color: var(--text);
  transition: border 0.2s;
  background: white;
  font-family: 'Inter', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-mid);
}

.form-group textarea { height: 110px; resize: vertical; }

.btn-send {
  width: 100%;
  background: var(--primary-dark);
  color: white;
  padding: 15px;
  border: none;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-send:hover { background: var(--primary); }

.form-privacy {
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 12px;
}

/* FAQ */
.faq-section { padding: 72px 48px; background: white; }

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 1060px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg);
  border-radius: 12px;
  padding: 26px;
}

.faq-item h4 {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.faq-item p { font-size: 13px; color: var(--primary-mid); line-height: 1.7; }

/* ===== PRODUCT PAGE ===== */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  padding: 48px 48px 72px;
  max-width: 1140px;
  margin: 0 auto;
  align-items: start;
}

.product-gallery {}

.product-main-img {
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 1;
  margin-bottom: 14px;
  background: var(--bg);
}

.product-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-thumbs { display: flex; gap: 10px; }

.product-thumb {
  width: 72px;
  height: 72px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border 0.2s;
}
.product-thumb.active, .product-thumb:hover { border-color: var(--primary); }

.product-thumb img { width: 100%; height: 100%; object-fit: cover; }

.product-detail-info {}

.product-detail-name {
  font-size: 28px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 10px;
  font-family: 'Playfair Display', serif;
}

.product-detail-price {
  font-size: 26px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 18px;
}

.product-detail-desc {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 24px;
}

.qty-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.qty-control {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.qty-btn {
  width: 38px;
  height: 38px;
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.qty-btn:hover { background: var(--bg); }

.qty-val {
  width: 44px;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  border: none;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  padding: 8px 0;
}

.btn-add-cart-full {
  flex: 1;
  background: var(--primary-dark);
  color: white;
  padding: 13px 24px;
  border: none;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-add-cart-full:hover { background: var(--primary); }

/* ===== CART PAGE ===== */
.cart-page { padding: 48px 48px 72px; }

.cart-page h1 {
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 36px;
}

.cart-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 36px;
  align-items: start;
}

.cart-table { background: white; border-radius: 14px; padding: 0; box-shadow: var(--shadow); overflow: hidden; }

.cart-row {
  display: grid;
  grid-template-columns: 80px 1fr auto auto auto;
  gap: 16px;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}

.cart-row:last-child { border-bottom: none; }

.cart-item-img {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  object-fit: cover;
}

.cart-item-name { font-size: 14px; font-weight: 500; }
.cart-item-price { font-size: 14px; font-weight: 600; }

.cart-qty-ctrl {
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
}

.cart-qty-btn {
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.cart-qty-btn:hover { background: var(--bg); }

.cart-qty-num {
  width: 36px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  padding: 4px 0;
}

.cart-remove {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  font-size: 18px;
  transition: color 0.2s;
}
.cart-remove:hover { color: #EF4444; }

.cart-summary {
  background: white;
  border-radius: 14px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.cart-summary h3 { font-size: 18px; font-weight: 600; margin-bottom: 20px; }

.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-bottom: 12px;
  color: var(--text-light);
}

.summary-total {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  border-top: 1px solid var(--border);
  padding-top: 14px;
  margin-top: 6px;
  margin-bottom: 20px;
}

.btn-checkout {
  width: 100%;
  background: var(--primary-dark);
  color: white;
  padding: 15px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background 0.2s;
  margin-bottom: 12px;
}
.btn-checkout:hover { background: var(--primary); }

.btn-continue { display: block; text-align: center; font-size: 13px; color: var(--text-light); }
.btn-continue:hover { color: var(--primary); }

.empty-cart {
  text-align: center;
  padding: 80px 20px;
  color: var(--text-muted);
}
.empty-cart-icon { font-size: 64px; margin-bottom: 16px; }
.empty-cart h3 { font-size: 20px; font-weight: 400; margin-bottom: 8px; color: var(--text); }
.empty-cart p { font-size: 14px; margin-bottom: 24px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .crafted-grid { gap: 36px; }
}

@media (max-width: 768px) {
  header { padding: 14px 20px; }
  nav { display: none; }
  .hamburger { display: block; }
  .logo-name { display: none; }

  .section { padding: 52px 20px; }
  .page-banner, .contact-banner { padding: 40px 20px 28px; }
  .newsletter { flex-direction: column; }
  .nl-left { padding: 44px 28px; }
  .nl-right { padding: 44px 28px; }
  footer { padding: 48px 20px 24px; }

  .hero { padding: 52px 20px 48px; min-height: auto; }
  .hero h1 { font-size: 28px; }
  .hero-badge { font-size: 9px; letter-spacing: 1.5px; padding: 7px 16px; }

  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .products-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .love-images { grid-template-columns: 1fr; }
  .crafted-grid { grid-template-columns: 1fr; gap: 32px; }
  .testi-grid { grid-template-columns: 1fr; }

  .shop-body { grid-template-columns: 1fr; padding: 20px; }
  .sidebar { position: static; }
  .products-grid-shop { grid-template-columns: repeat(2, 1fr); }

  .contact-body { grid-template-columns: 1fr; padding: 20px 20px 52px; }
  .faq-grid { grid-template-columns: 1fr; }
  .faq-section { padding: 52px 20px; }

  .product-detail { grid-template-columns: 1fr; padding: 24px 20px 52px; }

  .cart-page { padding: 32px 20px 52px; }
  .cart-layout { grid-template-columns: 1fr; }
  .cart-row { grid-template-columns: 64px 1fr auto; }
  .cart-row .cart-qty-ctrl, .cart-row .cart-item-price { display: none; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .form-row { grid-template-columns: 1fr; }

  .contact-banner h1 { font-size: 36px; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .products-grid-shop { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .products-grid-4 { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .hero-btns { flex-direction: column; align-items: center; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .sec-title { font-size: 28px; }
  .hero h1 { font-size: 22px; }
  .hero-logo-img { height: 110px; }
  .hero-scroll { margin-top: 28px; }
  .product-info { padding: 10px 12px 12px; }
  .product-name { font-size: 13px; }
  .product-price { font-size: 17px; }
  .product-category { font-size: 9px; }
  .btn-add-to-cart { font-size: 10px; padding: 6px 10px; }
  .product-subtitle { display: none; }
}

@media (max-width: 360px) {
  .products-grid { grid-template-columns: 1fr; }
  .products-grid-shop { grid-template-columns: 1fr; }
}

/* ===== CHECKOUT PAGE ===== */
.checkout-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 28px;
  align-items: start;
  margin-top: 28px;
}

.checkout-form-wrap {
  background: white;
  border-radius: 16px;
  padding: 32px;
  box-shadow: var(--shadow);
}

.checkout-section {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.checkout-section:last-of-type { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.checkout-section h3 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--primary);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.checkout-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.checkout-field { display: flex; flex-direction: column; gap: 5px; }
.checkout-field.span2 { grid-column: span 2; }

.checkout-field label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.checkout-input {
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 14px;
  color: var(--text);
  background: white;
  transition: border-color .2s;
  width: 100%;
  font-family: inherit;
  outline: none;
}
.checkout-input:focus { border-color: var(--primary); }
.checkout-input.has-error { border-color: #ef4444; }
textarea.checkout-input { resize: vertical; min-height: 80px; }
select.checkout-input { cursor: pointer; }

.pay-methods { display: flex; gap: 12px; flex-wrap: wrap; }

.pay-method-btn {
  flex: 1;
  min-width: 140px;
  padding: 13px 16px;
  border: 2px solid var(--border);
  border-radius: 12px;
  background: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-light);
  transition: all .2s;
  font-family: inherit;
}
.pay-method-btn.active { border-color: var(--primary); color: var(--primary); background: var(--primary-light); }
.pay-method-btn i { font-size: 17px; }

.stripe-element-wrap {
  background: var(--bg);
  border-radius: 10px;
  padding: 20px;
  margin-top: 16px;
  border: 1.5px solid var(--border);
}

.checkout-error-msg {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #dc2626;
  border-radius: 8px;
  padding: 11px 14px;
  font-size: 13px;
  margin-top: 14px;
  display: none;
}
.checkout-error-msg.show { display: block; }

.btn-place-order {
  width: 100%;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 10px;
  padding: 15px 24px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 22px;
  transition: background .2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  letter-spacing: 0.4px;
  font-family: inherit;
}
.btn-place-order:hover:not(:disabled) { background: var(--primary-dark); }
.btn-place-order:disabled { opacity: .6; cursor: not-allowed; }

.btn-pay-stripe {
  width: 100%;
  background: #635bff;
  color: white;
  border: none;
  border-radius: 10px;
  padding: 15px 24px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 16px;
  transition: background .2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: inherit;
}
.btn-pay-stripe:hover:not(:disabled) { background: #4f46e5; }
.btn-pay-stripe:disabled { opacity: .6; cursor: not-allowed; }

.secure-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 12px;
}

/* Checkout Summary Sidebar */
.co-summary {
  background: white;
  border-radius: 16px;
  padding: 26px;
  box-shadow: var(--shadow);
  position: sticky;
  top: 88px;
}
.co-summary h3 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--primary);
  margin-bottom: 18px;
}
.co-item {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.co-item:last-of-type { border-bottom: none; }
.co-item-img {
  width: 52px; height: 52px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--primary-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.co-item-info { flex: 1; min-width: 0; }
.co-item-name { font-size: 13px; font-weight: 600; color: var(--text); line-height: 1.3; }
.co-item-qty { font-size: 11px; color: var(--text-muted); margin-top: 2px; }
.co-item-price { font-size: 13px; font-weight: 700; color: var(--primary); flex-shrink: 0; }

.co-totals { border-top: 1px solid var(--border); margin-top: 12px; padding-top: 14px; }
.co-row { display: flex; justify-content: space-between; font-size: 13px; margin-bottom: 8px; color: var(--text-light); }
.co-total-row { display: flex; justify-content: space-between; font-size: 16px; font-weight: 700; color: var(--text); margin-top: 10px; padding-top: 10px; border-top: 1px solid var(--border); }

/* Payment Step */
.payment-step-wrap {
  background: white;
  border-radius: 16px;
  padding: 40px 36px;
  box-shadow: var(--shadow);
  text-align: center;
}
.payment-step-wrap h2 { font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.payment-step-wrap > p { color: var(--text-light); margin-bottom: 28px; }
.payment-step-wrap .stripe-element-wrap { text-align: left; margin-bottom: 8px; }

/* Order Success */
.order-success-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 24px;
  background: var(--bg);
}
.order-success-card {
  background: white;
  border-radius: 20px;
  padding: 52px 48px;
  box-shadow: var(--shadow);
  text-align: center;
  max-width: 520px;
  width: 100%;
}
.success-icon { font-size: 64px; margin-bottom: 20px; }
.order-success-card h1 { font-size: 28px; font-weight: 700; margin-bottom: 10px; color: var(--text); }
.order-success-card > p { color: var(--text-light); margin-bottom: 28px; }
.order-detail-box {
  background: var(--bg);
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 28px;
  text-align: left;
}
.order-detail-row { display: flex; justify-content: space-between; font-size: 14px; margin-bottom: 8px; color: var(--text-light); }
.order-detail-row:last-child { margin-bottom: 0; }
.order-detail-row strong { color: var(--text); font-weight: 600; }
.success-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.success-btns a { flex: 1; text-align: center; }

@media (max-width: 900px) {
  .checkout-grid { grid-template-columns: 1fr; }
  .co-summary { position: static; order: -1; }
  .checkout-fields { grid-template-columns: 1fr; }
  .checkout-field.span2 { grid-column: span 1; }
  .checkout-form-wrap { padding: 22px 18px; }
  .payment-step-wrap { padding: 28px 18px; }
  .order-success-card { padding: 36px 24px; }
  .success-btns { flex-direction: column; }
}
