/* ============================================================
   CRAFT & GLOW — Custom Vinyl & Gifts
   Complete Stylesheet
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
  --bg-dark: #0d0d0d;
  --bg-card: rgba(255,255,255,0.04);
  --bg-card-hover: rgba(255,255,255,0.08);
  --bg-glass: rgba(20,20,30,0.85);
  --pink: #e91e8c;
  --pink-light: #ff69b4;
  --pink-glow: rgba(233,30,140,0.35);
  --pink-soft: rgba(255,105,180,0.12);
  --magenta: #c2185b;
  --cyan: #00d4ff;
  --cyan-light: #67e8f9;
  --cyan-glow: rgba(0,212,255,0.3);
  --cyan-soft: rgba(0,212,255,0.12);
  --gold: #ffd700;
  --white: #ffffff;
  --text: #f0f0f0;
  --text-muted: rgba(240,240,240,0.6);
  --text-dim: rgba(240,240,240,0.35);
  --border: rgba(255,255,255,0.08);
  --border-pink: rgba(233,30,140,0.35);
  --border-cyan: rgba(0,212,255,0.3);
  --success: #4caf50;
  --warning: #ff9800;
  --danger: #f44336;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 6px;
  --shadow: 0 8px 32px rgba(0,0,0,0.4);
  --shadow-pink: 0 4px 24px rgba(233,30,140,0.2);
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --container: 1280px;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  background: var(--bg-dark);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Animated Background */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 800px 600px at 20% 10%, rgba(233,30,140,0.22), transparent),
    radial-gradient(ellipse 700px 500px at 80% 15%, rgba(0,212,255,0.18), transparent),
    radial-gradient(ellipse 600px 400px at 60% 70%, rgba(233,30,140,0.12), transparent),
    radial-gradient(ellipse 500px 400px at 10% 80%, rgba(0,212,255,0.10), transparent);
  animation: bgShift 20s ease-in-out infinite alternate;
}
@keyframes bgShift {
  0% { opacity: 1; }
  50% { opacity: 0.7; }
  100% { opacity: 1; }
}

/* Custom Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--pink); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--pink-light); }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; -webkit-user-drag: none; user-select: none; pointer-events: auto; }
button { cursor: pointer; font-family: var(--font); }
input, textarea, select { font-family: var(--font); }
ul, ol { list-style: none; }

/* Share button in product overlay */
.product-overlay .btn[title="Share"] { background: rgba(0,212,255,0.15); border: 1px solid var(--cyan); color: var(--cyan); }
.product-overlay .btn[title="Share"]:hover { background: rgba(0,212,255,0.3); }
.share-site-btn { position: fixed; bottom: 80px; right: 20px; z-index: 900; width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg, var(--pink), var(--cyan)); border: none; color: white; font-size: 20px; box-shadow: var(--shadow-pink); cursor: pointer; transition: var(--transition); display: flex; align-items: center; justify-content: center; }
.share-site-btn:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(233,30,140,0.4); }

/* ---------- Utility Classes ---------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.text-pink { color: var(--pink); }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }
.grid { display: grid; }
.hidden { display: none !important; }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); }
.section-title {
  text-align: center;
  margin-bottom: 40px;
}
.section-title h2 {
  margin-bottom: 8px;
}
.section-title span {
  background: linear-gradient(135deg, var(--pink), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.text-cyan { color: var(--cyan); }
.btn-cyan {
  background: linear-gradient(135deg, var(--cyan), #0891b2);
  border: none;
  color: #0d0d0d;
  font-weight: 700;
  box-shadow: 0 4px 24px var(--cyan-glow);
}
.btn-cyan:hover {
  box-shadow: 0 6px 30px var(--cyan-glow);
  transform: translateY(-2px);
}
.section-title p {
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn:hover {
  background: var(--bg-card-hover);
  border-color: rgba(255,255,255,0.15);
  transform: translateY(-1px);
}
.btn-pink {
  background: linear-gradient(135deg, var(--pink), var(--magenta));
  border: none;
  color: white;
  box-shadow: var(--shadow-pink);
}
.btn-pink:hover {
  box-shadow: 0 6px 30px rgba(233,30,140,0.35);
  transform: translateY(-2px);
}
.btn-outline-pink {
  border: 1.5px solid var(--pink);
  color: var(--pink);
  background: transparent;
}
.btn-outline-pink:hover {
  background: var(--pink-soft);
}
.btn-sm { padding: 8px 16px; font-size: 13px; }
.btn-lg { padding: 16px 32px; font-size: 16px; border-radius: var(--radius); }
.btn-block { width: 100%; }
.btn-gold {
  background: linear-gradient(135deg, #ffd700, #ffaa00);
  border: none;
  color: #1a1a1a;
  font-weight: 700;
}
.btn-gold:hover { box-shadow: 0 6px 30px rgba(255,215,0,0.3); }
.btn-success {
  background: var(--success);
  border: none;
  color: white;
}
.btn-danger {
  background: var(--danger);
  border: none;
  color: white;
}
.btn-danger:hover { background: #d32f2f; }

/* ---------- Navigation ---------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(233,30,140,0.18);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-brand img {
  height: 48px;
  width: 48px;
  border-radius: 12px;
  object-fit: cover;
}
.nav-brand-text {
  font-size: 18px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--white), var(--pink-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.nav-brand-sub {
  font-size: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: var(--bg-card);
}
.nav-links a.active { color: var(--pink); }
.nav-cart {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
}
.nav-cart:hover { border-color: var(--pink); }
.cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 20px;
  height: 20px;
  border-radius: 10px;
  background: var(--pink);
  color: white;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
}
.cart-count:empty { display: none; }

/* Mobile Menu */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    padding: 24px;
    gap: 8px;
    transform: translateX(100%);
    transition: var(--transition);
    z-index: 999;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 18px; padding: 14px 16px; }
}

/* ---------- Announcement Bar ---------- */
.announcement-bar {
  background: linear-gradient(90deg, var(--pink), var(--cyan), var(--pink), var(--magenta));
  background-size: 300% 100%;
  animation: gradientSlide 6s ease infinite;
  padding: 10px 16px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: white;
}
@keyframes gradientSlide {
  0%,100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
  min-height: 70vh;
  display: flex;
  align-items: center;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 500px 400px at 30% 40%, rgba(233,30,140,0.2), transparent),
    radial-gradient(ellipse 400px 300px at 70% 60%, rgba(156,39,176,0.12), transparent);
  z-index: 0;
}
.hero .container { position: relative; z-index: 1; }
.hero-content {
  max-width: 640px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid var(--border-pink);
  background: var(--pink-soft);
  font-size: 12px;
  font-weight: 600;
  color: var(--pink-light);
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 20px;
}
.hero h1 .gradient {
  background: linear-gradient(135deg, var(--pink), var(--pink-light), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero p {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 28px;
  max-width: 480px;
  line-height: 1.7;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-image {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--pink-glow), transparent 70%);
  filter: blur(60px);
  z-index: 0;
}

/* Floating Hearts */
.hearts-container {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}
.heart {
  position: absolute;
  bottom: -20px;
  font-size: 16px;
  opacity: 0;
  animation: floatHeart linear infinite;
}
@keyframes floatHeart {
  0% { opacity: 0; transform: translateY(0) rotate(0deg) scale(0.5); }
  10% { opacity: 0.6; }
  90% { opacity: 0.3; }
  100% { opacity: 0; transform: translateY(-100vh) rotate(360deg) scale(1); }
}

/* ---------- Product Card ---------- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.product-card {
  background: var(--bg-card);
  border: 1px solid rgba(233,30,140,0.12);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}
.product-card:hover {
  border-color: var(--pink);
  transform: translateY(-4px);
  box-shadow: 0 4px 30px rgba(233,30,140,0.3), 0 0 15px rgba(0,212,255,0.15);
}
.product-card .badge-sale {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  border-radius: var(--radius-xs);
  background: var(--danger);
  color: white;
  font-size: 11px;
  font-weight: 700;
  z-index: 2;
}
.product-card .badge-new {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 10px;
  border-radius: var(--radius-xs);
  background: var(--success);
  color: white;
  font-size: 11px;
  font-weight: 700;
  z-index: 2;
}
.product-image {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: rgba(255,255,255,0.02);
}
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-image img {
  transform: scale(1.08);
}
.product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  opacity: 0;
  transition: var(--transition);
}
.product-card:hover .product-overlay { opacity: 1; }
.product-overlay .btn { backdrop-filter: blur(10px); }
.product-info {
  padding: 16px;
}
.product-category {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--pink);
  font-weight: 600;
  margin-bottom: 4px;
}
.product-name {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-desc {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-price {
  font-size: 18px;
  font-weight: 800;
  color: var(--pink);
}
.product-price-old {
  font-size: 13px;
  color: var(--text-dim);
  text-decoration: line-through;
  margin-left: 8px;
}
.product-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border-pink);
  background: var(--pink-soft);
  color: var(--pink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: var(--transition);
  cursor: pointer;
}
.product-btn:hover {
  background: var(--pink);
  color: white;
}

/* ---------- Filters Bar ---------- */
.filters-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.search-box {
  flex: 1;
  min-width: 200px;
  position: relative;
}
.search-box input {
  width: 100%;
  padding: 12px 16px 12px 44px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text);
  font-size: 14px;
  outline: none;
  transition: var(--transition);
}
.search-box input:focus { border-color: var(--pink); }
.search-box::before {
  content: '🔍';
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
}
.filter-btn {
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn:hover { border-color: var(--pink); color: var(--text); }
.filter-btn.active {
  background: var(--pink-soft);
  border-color: var(--pink);
  color: var(--pink);
}
.sort-select {
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text);
  font-size: 13px;
  outline: none;
}

/* ---------- Features / Info Boxes ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid rgba(0,212,255,0.12);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: var(--transition);
}
.feature-card:hover {
  border-color: var(--cyan);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px var(--cyan-glow);
}
.feature-icon {
  font-size: 36px;
  margin-bottom: 12px;
}
.feature-card h3 {
  margin-bottom: 8px;
  font-size: 16px;
}
.feature-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ---------- Section Padding ---------- */
.section {
  padding: 80px 0;
}
.section-alt {
  background: linear-gradient(135deg, rgba(233,30,140,0.04), rgba(0,212,255,0.04));
  border-top: 1px solid var(--border-pink);
  border-bottom: 1px solid var(--border-cyan);
}

/* ---------- Testimonials ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.testimonial-stars {
  color: var(--gold);
  font-size: 16px;
  margin-bottom: 12px;
}
.testimonial-text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 16px;
  font-style: italic;
}
.testimonial-author {
  font-size: 13px;
  font-weight: 600;
}
.testimonial-location {
  font-size: 12px;
  color: var(--text-dim);
}

/* ---------- Cart ---------- */
.cart-table {
  width: 100%;
  border-collapse: collapse;
}
.cart-table th {
  text-align: left;
  padding: 12px 16px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}
.cart-table td {
  padding: 16px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.cart-item-image {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-sm);
  object-fit: cover;
}
.cart-item-name {
  font-weight: 600;
  font-size: 14px;
}
.cart-item-cat {
  font-size: 11px;
  color: var(--text-muted);
}
.qty-control {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.qty-btn {
  width: 34px;
  height: 34px;
  border: none;
  background: var(--bg-card);
  color: var(--text);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}
.qty-btn:hover { background: var(--bg-card-hover); }
.qty-val {
  width: 40px;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  border: none;
  background: transparent;
  color: var(--text);
}
.cart-remove {
  background: none;
  border: none;
  color: var(--text-dim);
  font-size: 18px;
  cursor: pointer;
  transition: var(--transition);
  padding: 4px;
}
.cart-remove:hover { color: var(--danger); }

/* Cart Summary */
.cart-summary {
  background: var(--bg-card);
  border: 1px solid rgba(0,212,255,0.18);
  border-radius: var(--radius);
  padding: 24px;
}
.cart-summary h3 {
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 14px;
}
.summary-row.total {
  font-size: 20px;
  font-weight: 800;
  color: var(--pink);
  border-top: 1px solid var(--border);
  margin-top: 12px;
  padding-top: 16px;
}
.coupon-input-row {
  display: flex;
  gap: 8px;
  margin: 16px 0;
}
.coupon-input-row input {
  flex: 1;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: rgba(0,0,0,0.3);
  color: var(--text);
  font-size: 14px;
  outline: none;
  text-transform: uppercase;
}
.coupon-input-row input:focus { border-color: var(--pink); }
.coupon-msg {
  font-size: 12px;
  margin-top: 4px;
  padding: 6px 10px;
  border-radius: var(--radius-xs);
}
.coupon-msg.success { color: var(--success); background: rgba(76,175,80,0.1); }
.coupon-msg.error { color: var(--danger); background: rgba(244,67,54,0.1); }

/* ---------- Checkout ---------- */
.checkout-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: start;
}
@media (max-width: 860px) { .checkout-grid { grid-template-columns: 1fr; } }
.form-section {
  background: var(--bg-card);
  border: 1px solid rgba(233,30,140,0.12);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 20px;
}
.form-section h3 {
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}
.form-section h3 .step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--pink);
  color: white;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.form-control {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: rgba(0,0,0,0.25);
  color: var(--text);
  font-size: 14px;
  outline: none;
  transition: var(--transition);
}
.form-control:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px var(--pink-soft);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 500px) { .form-row { grid-template-columns: 1fr; } }
.form-control.error { border-color: var(--danger); }
.form-error { font-size: 12px; color: var(--danger); margin-top: 4px; }
textarea.form-control { min-height: 120px; resize: vertical; }

/* Radio / Checkbox custom */
.radio-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.radio-option {
  flex: 1;
  min-width: 140px;
}
.radio-option input { display: none; }
.radio-option label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-card);
  cursor: pointer;
  transition: var(--transition);
  font-size: 14px;
  color: var(--text);
}
.radio-option input:checked + label {
  border-color: var(--pink);
  background: var(--pink-soft);
}
.radio-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.radio-option input:checked + label .radio-dot {
  border-color: var(--pink);
}
.radio-option input:checked + label .radio-dot::after {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pink);
}

/* Payment Methods */
.payment-methods {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.payment-option {
  padding: 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-card);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 12px;
}
.payment-option:hover { border-color: rgba(255,255,255,0.15); }
.payment-option.active { border-color: var(--pink); background: var(--pink-soft); }
.payment-icon { font-size: 24px; }
.payment-name { font-weight: 600; font-size: 14px; }
.payment-desc { font-size: 12px; color: var(--text-muted); }
#paypal-button-container {
  min-height: 55px;
  margin-top: 16px;
}

/* ---------- Contact Form ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
}
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.contact-item {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.contact-item:last-child { border-bottom: none; }
.contact-icon { font-size: 24px; flex-shrink: 0; }

/* ---------- FAQ Accordion ---------- */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  padding: 18px 20px;
  background: var(--bg-card);
  border: none;
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}
.faq-question:hover { background: var(--bg-card-hover); }
.faq-question .icon {
  font-size: 20px;
  transition: transform 0.3s ease;
  color: var(--pink);
}
.faq-item.open .faq-question .icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: rgba(0,0,0,0.15);
}
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer-inner {
  padding: 16px 20px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ---------- Admin Panel ---------- */
.admin-login {
  max-width: 400px;
  margin: 80px auto;
  text-align: center;
}
.admin-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 24px;
  min-height: 70vh;
}
@media (max-width: 768px) { .admin-grid { grid-template-columns: 1fr; } }
.admin-sidebar {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}
.admin-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 4px;
  transition: var(--transition);
}
.admin-nav a:hover,
.admin-nav a.active {
  background: var(--bg-card-hover);
  color: var(--text);
}
.admin-nav a.active { color: var(--pink); border-left: 3px solid var(--pink); }
.admin-content {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.admin-table {
  width: 100%;
  border-collapse: collapse;
}
.admin-table th {
  text-align: left;
  padding: 10px 12px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}
.admin-table td {
  padding: 12px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.status-badge {
  display: inline-flex;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
}
.status-active { background: rgba(76,175,80,0.15); color: var(--success); }
.status-expired { background: rgba(244,67,54,0.15); color: var(--danger); }

/* ---------- Footer ---------- */
.footer {
  background: rgba(0,0,0,0.3);
  border-top: 1px solid rgba(233,30,140,0.18);
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
}
@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-brand img {
  height: 52px;
  width: 52px;
  border-radius: 12px;
  margin-bottom: 12px;
}
.footer-brand p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 280px;
}
.footer-col h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  padding: 5px 0;
  font-size: 14px;
  color: var(--text-muted);
  transition: var(--transition);
}
.footer-col a:hover { color: var(--pink); transform: translateX(4px); }
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: var(--transition);
}
.footer-social a:hover {
  border-color: var(--pink);
  background: var(--pink-soft);
  transform: translateY(0);
}
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 12px;
  color: var(--text-dim);
}
.footer-payments {
  display: flex;
  gap: 8px;
  font-size: 12px;
  color: var(--text-dim);
}
.footer-payments span {
  padding: 4px 10px;
  border-radius: var(--radius-xs);
  border: 1px solid var(--border);
  background: var(--bg-card);
}

/* ---------- Toast Notifications ---------- */
.toast-container {
  position: fixed;
  top: 80px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.toast {
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  background: var(--bg-glass);
  border: 1px solid var(--border);
  backdrop-filter: blur(20px);
  color: var(--text);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: slideInRight 0.3s ease;
  min-width: 280px;
  box-shadow: var(--shadow);
}
.toast.success { border-color: var(--success); }
.toast.error { border-color: var(--danger); }
@keyframes slideInRight {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* ---------- Empty State ---------- */
.empty-state {
  text-align: center;
  padding: 60px 20px;
}
.empty-state .icon { font-size: 56px; margin-bottom: 16px; opacity: 0.5; }
.empty-state h3 { margin-bottom: 8px; }
.empty-state p { color: var(--text-muted); margin-bottom: 20px; }

/* ---------- Loading Spinner ---------- */
.spinner {
  width: 36px;
  height: 36px;
  border: 3px solid var(--border);
  border-top-color: var(--pink);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 20px auto;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 0;
  font-size: 13px;
  color: var(--text-muted);
}
.breadcrumb a:hover { color: var(--pink); }
.breadcrumb .sep { opacity: 0.4; }

/* ---------- Newsletter ---------- */
.newsletter-section {
  background: linear-gradient(135deg, rgba(233,30,140,0.12), rgba(0,212,255,0.08));
  border: 2px solid;
  border-image: linear-gradient(135deg, var(--pink), var(--cyan)) 1;
  border-radius: 0;
  padding: 48px;
  text-align: center;
}
.newsletter-form {
  display: flex;
  gap: 10px;
  max-width: 440px;
  margin: 20px auto 0;
}
.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: rgba(0,0,0,0.3);
  color: var(--text);
  font-size: 14px;
  outline: none;
}
.newsletter-form input:focus { border-color: var(--pink); }

/* ---------- Modal ---------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal {
  background: #1a1a2e;
  border: 1px solid var(--border-pink);
  border-radius: var(--radius);
  padding: 32px;
  max-width: 720px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.9);
  transition: var(--transition);
}
.modal-overlay.open .modal { transform: scale(1); }
.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.modal-close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}
.modal-close:hover { background: var(--danger); border-color: var(--danger); }

/* ---------- Quick View Product Modal ---------- */
.qv-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
}
@media (max-width: 600px) { .qv-grid { grid-template-columns: 1fr; } }
.qv-image {
  width: 100%;
  aspect-ratio: auto;
  max-height: 500px;
  border-radius: var(--radius-sm);
  object-fit: contain;
  background: rgba(255,255,255,0.03);
  cursor: zoom-in;
}

/* ---------- Back to Top ---------- */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--pink);
  color: white;
  border: none;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-pink);
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 100;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-2px); }

/* ---------- Animations ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Page Header ---------- */
.page-header {
  padding: 48px 0 24px;
  text-align: center;
}
.page-header h1 {
  margin-bottom: 8px;
}
.page-header p {
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto;
}

/* ---------- Responsive Cart Table ---------- */
@media (max-width: 640px) {
  .cart-table thead { display: none; }
  .cart-table tr {
    display: flex;
    flex-wrap: wrap;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    gap: 10px;
    align-items: center;
  }
  .cart-table td { border: none; padding: 4px; }
}

/* ---------- About Page ---------- */
.about-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 768px) { .about-hero { grid-template-columns: 1fr; } }
.about-image {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}
.about-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.value-card {
  background: var(--bg-card);
  border: 1px solid rgba(233,30,140,0.15);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  transition: var(--transition);
}
.value-card:hover {
  border-color: var(--cyan);
  box-shadow: 0 4px 20px var(--cyan-glow);
  transform: translateY(-2px);
}
.value-card .icon { font-size: 36px; margin-bottom: 12px; }
.value-card h3 { margin-bottom: 8px; }
.value-card p { font-size: 13px; color: var(--text-muted); }

/* ---------- Admin Panel ---------- */
.admin-login {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.admin-login .form-section {
  max-width: 360px;
  width: 100%;
}
.admin-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  min-height: 70vh;
}
@media (max-width: 768px) {
  .admin-grid { grid-template-columns: 1fr; }
  .admin-sidebar { position: static; }
}
.admin-sidebar {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  position: sticky;
  top: 80px;
  align-self: start;
}
.admin-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.admin-nav a {
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
}
.admin-nav a:hover,
.admin-nav a.active {
  background: rgba(233,30,140,0.12);
  color: var(--pink);
}
.admin-content { min-width: 0; }
.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.admin-table th {
  text-align: left;
  padding: 10px 12px;
  border-bottom: 2px solid var(--border);
  color: var(--text-muted);
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.admin-table td {
  padding: 12px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.admin-table tr:hover td {
  background: rgba(255,255,255,0.02);
}
.status-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
}
.status-active {
  background: rgba(72,199,142,0.15);
  color: #48c78e;
}
.status-expired {
  background: rgba(255,87,51,0.15);
  color: #ff5733;
}
.btn-danger {
  background: rgba(255,87,51,0.15);
  color: #ff5733;
  border: 1px solid rgba(255,87,51,0.25);
}
.btn-danger:hover {
  background: rgba(255,87,51,0.3);
}
.btn-success {
  background: rgba(72,199,142,0.15);
  color: #48c78e;
  border: 1px solid rgba(72,199,142,0.25);
}
.btn-success:hover {
  background: rgba(72,199,142,0.3);
}
.btn-block { width: 100%; }
@media (max-width: 768px) {
  .admin-table { font-size: 12px; }
  .admin-table th, .admin-table td { padding: 8px 6px; }
}

/* ---------- Image Lightbox ---------- */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
  animation: fadeInLB 0.2s ease;
}
.lightbox-overlay img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: var(--radius);
  box-shadow: 0 0 40px rgba(233,30,140,0.3);
}
@keyframes fadeInLB { from { opacity:0 } to { opacity:1 } }

/* ---------- Print Styles ---------- */
@media print {
  .navbar, .footer, .back-to-top, .toast-container, .hearts-container { display: none !important; }
  body { background: white; color: black; }
  .product-card { break-inside: avoid; }
}
