/* Gifts by Ceeha — Main Stylesheet */

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400&family=Quicksand:wght@400;500;600;700;800&display=swap');

/* -------------------------------------------------------
   CSS Variables — Pastel Boutique Theme
------------------------------------------------------- */
:root {
  --bg: #FFF9FB;
  --bg-card: #FFF0F5;
  --bg-elevated: #FFE8F0;
  --border: #F0D8E4;
  --border-light: #F5E0EA;
  --text-primary: #4B3B40;
  --text-secondary: #7A5C65;
  --text-muted: #C4A4B0;
  --accent: #F8C8DC;
  --accent-secondary: #E6D6FF;
  --accent-peach: #FFD6A5;
  --accent-dark: #F0B0CC;
  --accent-hover: #F5B5CF;
  --danger: #F87171;
  --success: #34D399;
  --warning: #FBBF24;
  --grid-color: rgba(248,200,220,0.18);
  --font-sans: 'Poppins', system-ui, -apple-system, sans-serif;
  --font-display: 'Quicksand', sans-serif;
  --transition: 0.25s cubic-bezier(0.4,0,0.2,1);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 6px;
  --radius-full: 999px;
  --shadow-soft: 0 4px 20px rgba(248,200,220,0.22);
  --shadow-hover: 0 10px 36px rgba(248,200,220,0.38);
}

/* -------------------------------------------------------
   Reset & Base
------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; min-width: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  max-width: 100%;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* -------------------------------------------------------
   Grid Background Pattern
------------------------------------------------------- */
.grid-bg {
  background-image:
    linear-gradient(var(--grid-color) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-color) 1px, transparent 1px);
  background-size: 40px 40px;
}

/* -------------------------------------------------------
   Navigation
------------------------------------------------------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,249,251,0.93);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: border-color var(--transition);
  box-shadow: 0 2px 20px rgba(248,200,220,0.15);
}

.nav-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-box {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
  flex-shrink: 0;
  color: var(--text-primary);
  box-shadow: 0 2px 10px rgba(248,200,220,0.4);
}

.nav-logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.01em;
  color: var(--text-primary);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: var(--text-primary);
  position: relative;
  transition: all var(--transition);
  z-index: 1001;
  border-radius: var(--radius-sm);
}
.nav-btn:hover { background: var(--bg-card); color: var(--text-primary); }

.cart-badge {
  position: absolute;
  top: 4px;
  right: 4px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--text-primary);
  font-size: 9px;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* -------------------------------------------------------
   Mobile Menu Overlay
------------------------------------------------------- */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 999;
  display: flex;
  flex-direction: column;
  padding: 80px 32px 40px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.76,0,0.24,1);
}

.menu-overlay.open {
  transform: translateX(0);
}

.menu-nav-links {
  list-style: none;
  margin-top: 16px;
}

.menu-nav-links li {
  border-bottom: 1px solid var(--border);
}

.menu-nav-links a {
  display: block;
  padding: 20px 0;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--text-muted);
  transition: color var(--transition);
  font-family: var(--font-display);
}
.menu-nav-links a:hover { color: var(--text-primary); }

.menu-warranty-btn {
  margin-top: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
  color: var(--text-primary);
  padding: 16px 32px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  border-radius: var(--radius-full);
  transition: all var(--transition);
  box-shadow: var(--shadow-soft);
}
.menu-warranty-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-hover); }

/* -------------------------------------------------------
   Hero Section
------------------------------------------------------- */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: visible;
}

.hero-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--text-secondary);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.hero-label::before {
  content: '';
  width: 36px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-secondary));
  border-radius: 2px;
}

.hero-title {
  font-size: clamp(48px, 9vw, 108px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  font-family: var(--font-display);
}

.hero-title-fade {
  color: var(--accent);
}

.hero-desc {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}

/* Guarantee ALL hero text elements are always visible */
.hero-label,
.hero-title,
.hero-desc,
.hero-actions,
.hero-stats {
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}

/* -------------------------------------------------------
   Buttons
------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 28px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all var(--transition);
  border: none;
  gap: 8px;
  white-space: nowrap;
  border-radius: var(--radius-full);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
  color: var(--text-primary);
  box-shadow: 0 4px 16px rgba(248,200,220,0.45);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(248,200,220,0.55);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--accent);
}
.btn-outline:hover {
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover { color: var(--text-primary); border-color: var(--accent); background: var(--bg-card); }

.btn-sm {
  padding: 9px 18px;
  font-size: 12px;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 14px;
}

.btn-full { width: 100%; }

.btn-icon {
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 50%;
}

/* -------------------------------------------------------
   Stats Bar
------------------------------------------------------- */
.stats-bar {
  display: flex;
  align-items: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-card);
  border-radius: var(--radius);
}

.stat-item {
  flex: 1;
  padding: 20px 24px;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }

.stat-value {
  font-size: 24px;
  font-weight: 800;
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  margin-bottom: 2px;
  color: var(--text-primary);
}

.stat-label {
  font-size: 10px;
  color: var(--text-secondary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* -------------------------------------------------------
   Section Headers
------------------------------------------------------- */
.section {
  padding: 80px 24px;
  max-width: 1440px;
  margin: 0 auto;
}

.section-full {
  padding: 80px 24px;
}

.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--text-secondary);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.section-label::before {
  content: '✦';
  color: var(--accent);
  font-size: 12px;
}

.section-title {
  font-size: clamp(28px, 4.5vw, 52px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 48px;
  font-family: var(--font-display);
  color: var(--text-primary);
}

/* -------------------------------------------------------
   Product Cards
------------------------------------------------------- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  position: relative;
  transition: all var(--transition);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 12px rgba(248,200,220,0.1);
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--accent);
}

.product-card-image {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--bg-elevated);
  position: relative;
  border-radius: var(--radius) var(--radius) 0 0;
}

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

.product-card-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
  color: var(--text-primary);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.product-card-wishlist {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  opacity: 0;
  color: var(--text-secondary);
}
.product-card:hover .product-card-wishlist { opacity: 1; }
.product-card-wishlist:hover { background: var(--accent); color: var(--text-primary); border-color: var(--accent); }
.product-card-wishlist.active { opacity: 1; color: #F43F5E; background: #FFE4E8; border-color: #FECDD3; }

.product-card-body {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card-category {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 5px;
}

.product-card-name {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.4;
  flex: 1;
  color: var(--text-primary);
}

.product-card-price {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.price-sale {
  font-size: 17px;
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--text-primary);
}

.price-original {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: line-through;
}

.price-discount {
  font-size: 11px;
  background: rgba(248,200,220,0.3);
  color: #C2185B;
  padding: 2px 8px;
  font-weight: 700;
  border-radius: var(--radius-full);
}

.product-card-actions {
  display: flex;
  gap: 8px;
}

.product-card-actions .btn {
  flex: 1;
}

/* -------------------------------------------------------
   Product Detail
------------------------------------------------------- */
.product-gallery {
  position: static !important;
  top: auto !important;
}
@media (min-width: 1024px) {
  .pd-layout .product-gallery {
    position: sticky !important;
    top: 88px;
    align-self: start;
  }
}

.gallery-main {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-thumbs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.gallery-thumbs::-webkit-scrollbar { display: none; }

.gallery-thumb {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  overflow: hidden;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: border-color var(--transition);
}
.gallery-thumb.active { border-color: var(--accent); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* -------------------------------------------------------
   Cart
------------------------------------------------------- */
.cart-item {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.cart-item-image {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}
.cart-item-image img { width: 100%; height: 100%; object-fit: cover; }

.qty-control {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--border);
  height: 38px;
  border-radius: var(--radius-full);
  overflow: hidden;
  background: var(--bg-card);
}

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

.qty-input {
  width: 44px;
  height: 38px;
  text-align: center;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 600;
  border-left: 1.5px solid var(--border);
  border-right: 1.5px solid var(--border);
}
.qty-input:focus { outline: none; }

/* -------------------------------------------------------
   Forms
------------------------------------------------------- */
.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  background: white;
  border: 1.5px solid var(--border);
  color: var(--text-primary);
  padding: 12px 16px;
  font-size: 14px;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
  border-radius: var(--radius-sm);
}
.form-input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(248,200,220,0.2); }
.form-input::placeholder { color: var(--text-muted); }

.form-input.error { border-color: var(--danger); }

.form-error {
  font-size: 11px;
  color: var(--danger);
  margin-top: 4px;
}

.form-select {
  width: 100%;
  background: white;
  border: 1.5px solid var(--border);
  color: var(--text-primary);
  padding: 12px 16px;
  font-size: 14px;
  transition: border-color var(--transition);
  outline: none;
  cursor: pointer;
  border-radius: var(--radius-sm);
}
.form-select:focus { border-color: var(--accent); }

.form-textarea {
  resize: vertical;
  min-height: 100px;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}
.form-checkbox input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: var(--accent);
  flex-shrink: 0;
  border-radius: 4px;
}

/* -------------------------------------------------------
   File Upload Area
------------------------------------------------------- */
.upload-area {
  border: 2px dashed var(--border);
  padding: 32px;
  text-align: center;
  cursor: pointer;
  transition: border-color var(--transition);
  position: relative;
  border-radius: var(--radius);
  background: var(--bg-card);
}
.upload-area:hover, .upload-area.dragover { border-color: var(--accent); background: var(--bg-elevated); }
.upload-area input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

/* -------------------------------------------------------
   Order Summary Box
------------------------------------------------------- */
.summary-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  font-size: 14px;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
}
.summary-row:last-child { border-bottom: none; }
.summary-row.total {
  color: var(--text-primary);
  font-weight: 700;
  font-size: 18px;
}

/* -------------------------------------------------------
   Badges & Tags
------------------------------------------------------- */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
}

.badge-success { background: rgba(52,211,153,0.15); color: #059669; }
.badge-warning { background: rgba(251,191,36,0.15); color: #D97706; }
.badge-danger  { background: rgba(248,113,113,0.15); color: #DC2626; }
.badge-info    { background: rgba(99,102,241,0.15); color: #4F46E5; }
.badge-muted   { background: rgba(75,59,64,0.08); color: var(--text-secondary); }

/* -------------------------------------------------------
   Toast Notifications
------------------------------------------------------- */
#toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 360px;
}

.toast {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: 13px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  animation: toastIn 0.3s ease;
  box-shadow: 0 8px 32px rgba(248,200,220,0.3);
}

.toast.success { border-color: rgba(52,211,153,0.4); }
.toast.error   { border-color: rgba(248,113,113,0.4); }
.toast.warning { border-color: rgba(251,191,36,0.4); }

.toast-icon { font-size: 16px; margin-top: 1px; flex-shrink: 0; }
.toast.success .toast-icon { color: #34D399; }
.toast.error .toast-icon   { color: #F87171; }
.toast.warning .toast-icon { color: #FBBF24; }

.toast-msg { flex: 1; line-height: 1.5; color: var(--text-primary); }
.toast-close { background: none; border: none; color: var(--text-muted); font-size: 14px; cursor: pointer; padding: 0; line-height: 1; }
.toast-close:hover { color: var(--text-primary); }

@keyframes toastIn {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* -------------------------------------------------------
   Loading Skeletons
------------------------------------------------------- */
@keyframes shimmer {
  0%   { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}

.skeleton {
  background: linear-gradient(90deg, var(--bg-card) 25%, var(--bg-elevated) 37%, var(--bg-card) 63%);
  background-size: 400px 100%;
  animation: shimmer 1.4s ease infinite;
  border-radius: var(--radius-sm);
}

/* -------------------------------------------------------
   Footer
------------------------------------------------------- */
.footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 64px 24px 32px;
}

.footer-grid {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
  }
}

.footer-section-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-primary);
  padding-bottom: 14px;
  border-bottom: 2px solid var(--accent);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
}
.footer-links li + li { margin-top: 12px; }
.footer-links a {
  font-size: 14px;
  color: var(--text-secondary);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--text-primary); }

.footer-bottom {
  max-width: 1440px;
  margin: 48px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.footer-copyright {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.footer-legal-links {
  display: flex;
  gap: 24px;
}
.footer-legal-links a {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color var(--transition);
}
.footer-legal-links a:hover { color: var(--text-secondary); }

/* -------------------------------------------------------
   Compliance Box
------------------------------------------------------- */
.compliance-item {
  margin-bottom: 16px;
}
.compliance-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 2px;
}
.compliance-value {
  font-size: 12px;
  color: var(--text-muted);
}

/* -------------------------------------------------------
   Feature Cards (Why Choose Us)
------------------------------------------------------- */
.feature-card {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
  transition: all var(--transition);
}
.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
  box-shadow: var(--shadow-hover);
}

.feature-icon {
  font-size: 34px;
  margin-bottom: 16px;
  display: block;
}

.feature-title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.3;
  font-family: var(--font-display);
  color: var(--text-primary);
}

.feature-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* -------------------------------------------------------
   Breadcrumb
------------------------------------------------------- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.breadcrumb a:hover { color: var(--text-secondary); }
.breadcrumb span { color: var(--text-secondary); }

/* -------------------------------------------------------
   Tabs
------------------------------------------------------- */
.tabs {
  display: flex;
  border-bottom: 2px solid var(--border);
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.tabs::-webkit-scrollbar { display: none; }

.tab {
  padding: 12px 24px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text-muted);
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  cursor: pointer;
  transition: all var(--transition);
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  margin-bottom: -2px;
}
.tab:hover { color: var(--text-secondary); }
.tab.active { color: var(--text-primary); border-bottom-color: var(--accent); }

.tab-content { display: none; padding: 32px 0; }
.tab-content.active { display: block; }

/* -------------------------------------------------------
   Testimonials
------------------------------------------------------- */
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
  border-color: var(--accent);
}

.testimonial-stars {
  color: #F59E0B;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

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

.testimonial-author {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
}

.testimonial-role {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 2px;
}

/* -------------------------------------------------------
   Newsletter
------------------------------------------------------- */
.newsletter-section {
  background: linear-gradient(135deg, #FFF0F7 0%, #F0EAFF 60%, #FFF4E8 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 24px;
  text-align: center;
}

.newsletter-input-wrap {
  display: flex;
  max-width: 480px;
  margin: 0 auto;
  border: 2px solid var(--border);
  border-radius: var(--radius-full);
  overflow: hidden;
  background: white;
  box-shadow: var(--shadow-soft);
}

.newsletter-input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--text-primary);
  padding: 14px 20px;
  font-size: 14px;
  outline: none;
}
.newsletter-input::placeholder { color: var(--text-muted); }

.newsletter-btn {
  background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
  color: var(--text-primary);
  border: none;
  padding: 14px 24px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity var(--transition);
}
.newsletter-btn:hover { opacity: 0.85; }

/* -------------------------------------------------------
   Coupon Input
------------------------------------------------------- */
.coupon-wrap {
  display: flex;
  gap: 0;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.coupon-input {
  flex: 1;
  background: white;
  border: none;
  color: var(--text-primary);
  padding: 12px 16px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  outline: none;
}
.coupon-btn {
  background: var(--bg-card);
  border: none;
  border-left: 1.5px solid var(--border);
  color: var(--text-secondary);
  padding: 12px 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
}
.coupon-btn:hover { background: var(--accent); color: var(--text-primary); }

/* -------------------------------------------------------
   Warranty Page
------------------------------------------------------- */
.warranty-form-container {
  max-width: 640px;
  margin: 0 auto;
  padding: 80px 24px;
}

.warranty-success-box {
  text-align: center;
  padding: 48px 32px;
  border: 1px solid rgba(52,211,153,0.3);
  background: rgba(52,211,153,0.05);
  border-radius: var(--radius);
}

.warranty-id-badge {
  display: inline-block;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  padding: 12px 24px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin: 16px 0;
  border-radius: var(--radius-sm);
}

/* -------------------------------------------------------
   Account Pages
------------------------------------------------------- */
.account-sidebar {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.account-nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
  transition: all var(--transition);
}
.account-nav-link:hover { color: var(--text-primary); background: var(--bg-elevated); }
.account-nav-link.active { color: var(--text-primary); background: var(--bg-elevated); border-left: 3px solid var(--accent); }

/* -------------------------------------------------------
   Scrollbar
------------------------------------------------------- */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent-dark); }

/* -------------------------------------------------------
   Responsive Utilities
------------------------------------------------------- */
@media (min-width: 640px) {
  .hero { padding: 140px 48px 100px; }
  .section { padding: 100px 48px; }
}

@media (min-width: 1024px) {
  .hero { padding: 160px 80px 120px; }
  .section { padding: 120px 80px; }
}

@media (max-width: 640px) {
  .stats-bar { flex-direction: column; border-radius: var(--radius); }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
  .stat-item:last-child { border-bottom: none; }
}

/* -------------------------------------------------------
   Payment Options
------------------------------------------------------- */
.payment-option {
  border: 2px solid var(--border);
  padding: 16px 20px;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
  border-radius: var(--radius-sm);
}
.payment-option:hover { border-color: var(--accent); background: rgba(248,200,220,0.05); }
.payment-option.selected { border-color: var(--accent); background: rgba(248,200,220,0.1); }

.payment-radio {
  width: 16px;
  height: 16px;
  border: 2px solid var(--text-muted);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--transition);
}
.payment-option.selected .payment-radio { border-color: var(--accent); }
.payment-radio::after {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0;
  transition: opacity var(--transition);
}
.payment-option.selected .payment-radio::after { opacity: 1; }

/* -------------------------------------------------------
   Category Cards
------------------------------------------------------- */
.category-card {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 2px 12px rgba(248,200,220,0.12);
}
.category-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  opacity: 0.8;
}
.category-card:hover img { transform: scale(1.06); }

.category-card-label {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  background: linear-gradient(to top, rgba(75,59,64,0.72), transparent);
  border-radius: var(--radius);
}

.category-name {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: white;
  font-family: var(--font-display);
}

.category-count {
  font-size: 11px;
  color: rgba(255,255,255,0.8);
  margin-top: 2px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* -------------------------------------------------------
   Filter Sidebar
------------------------------------------------------- */
.filter-section {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}

.filter-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

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

.filter-item {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 13px;
  color: var(--text-secondary);
  transition: color var(--transition);
}
.filter-item:hover { color: var(--text-primary); }

.filter-checkbox {
  width: 16px;
  height: 16px;
  border: 1.5px solid var(--border);
  border-radius: 4px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.filter-item.active .filter-checkbox {
  background: var(--accent);
  border-color: var(--accent);
}

.price-range { margin-top: 12px; }
.range-input {
  width: 100%;
  accent-color: var(--accent);
}
.price-display {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: 8px;
}

/* -------------------------------------------------------
   Misc
------------------------------------------------------- */
.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 32px 0;
}

.text-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.page-header {
  padding: 120px 24px 60px;
  max-width: 1440px;
  margin: 0 auto;
}

.page-header-title {
  font-size: clamp(36px, 5.5vw, 72px);
  font-weight: 800;
  letter-spacing: -0.02em;
  font-family: var(--font-display);
}

/* -------------------------------------------------------
   AOS Override
------------------------------------------------------- */
[data-aos] { pointer-events: none; }
[data-aos].aos-animate { pointer-events: auto; }

/* -------------------------------------------------------
   Swiper Custom
------------------------------------------------------- */
.swiper-pagination-bullet {
  background: var(--accent) !important;
  opacity: 0.4 !important;
  width: 8px !important;
  height: 8px !important;
  border-radius: 50% !important;
}
.swiper-pagination-bullet-active {
  background: var(--accent) !important;
  opacity: 1 !important;
  width: 24px !important;
  border-radius: var(--radius-full) !important;
}

/* -------------------------------------------------------
   Stability Fixes
------------------------------------------------------- */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

/* Hero — responsive fixes */
@media (max-width: 767px) {
  .hero {
    padding: 88px 20px 60px !important;
    min-height: auto !important;
  }
  .hero-title {
    font-size: clamp(36px, 10vw, 62px) !important;
    line-height: 1.05 !important;
    margin-bottom: 20px !important;
  }
  .hero-desc {
    font-size: 14px !important;
    margin-bottom: 28px !important;
    max-width: 100% !important;
  }
  .hero-actions { gap: 8px !important; }
  .hero-actions .btn { padding: 11px 20px !important; font-size: 12px !important; }
  .hero-stats {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 16px !important;
    padding-top: 24px !important;
    margin-top: 32px !important;
  }
}

@media (max-width: 1023px) {
  .checkout-grid { grid-template-columns: 1fr !important; }
  .summary-box { position: static !important; top: auto !important; }
  .lg-two-col { grid-template-columns: 1fr !important; gap: 32px !important; }
}

@media (max-width: 600px) {
  .address-grid { grid-template-columns: 1fr !important; }
  .address-grid > [style*="grid-column:1/-1"],
  .address-grid > div { grid-column: 1 !important; }
}

@media (max-width: 640px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }
  .product-card-body    { padding: 8px 10px 12px !important; }
  .product-card-name    { font-size: 12px !important; line-height: 1.4 !important; }
  .product-card-name a  { -webkit-line-clamp: 2; display: -webkit-box; -webkit-box-orient: vertical; overflow: hidden; }
  .price-sale           { font-size: 13px !important; font-weight: 800 !important; }
  .price-original       { font-size: 11px !important; }
  .price-discount       { display: none !important; }
  .product-card-actions { display: none !important; }
  .product-card-category { font-size: 9px !important; }
  .product-card-image { cursor: pointer; }
  .stats-bar { display: grid !important; grid-template-columns: 1fr 1fr !important; }
  .stat-item { border-right: 1px solid var(--border) !important; border-bottom: 1px solid var(--border) !important; }
  .section    { padding: 60px 16px !important; }
  .section-full { padding: 60px 16px !important; }
  .page-header  { padding: 88px 16px 40px !important; }
  .section-title { margin-bottom: 32px !important; }
  .footer         { padding: 48px 16px 24px !important; }
  .footer-bottom  { margin-top: 24px !important; }
  .footer-legal-links { gap: 16px !important; }
}

@media (max-width: 480px) {
  .cart-item { gap: 10px !important; }
  .cart-item-image { width: 64px !important; height: 64px !important; }
  .category-card { min-height: 200px !important; aspect-ratio: auto !important; }
  .newsletter-input-wrap { flex-direction: column !important; border-radius: var(--radius) !important; }
  .newsletter-btn { width: 100% !important; padding: 14px !important; }
  #toast-container { left: 16px !important; right: 16px !important; max-width: none !important; }
  .payment-option { flex-wrap: wrap !important; }
  .qty-btn  { width: 40px !important; height: 40px !important; }
  .qty-input { width: 48px !important; height: 40px !important; }
}

@media (max-width: 360px) {
  .nav-inner     { padding: 0 12px !important; }
  .nav-logo-text { font-size: 13px !important; }
  .nav-btn       { width: 36px !important; height: 36px !important; }
}

@media (max-width: 1023px) {
  .summary-box[style] { position: static !important; top: auto !important; }
}

img { max-width: 100%; height: auto; }

/* =======================================================
   PRODUCT DETAIL PAGE
   ======================================================= */
.pd-page {
  padding-top: 64px;
  max-width: 1440px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
  padding-bottom: 40px;
}

.pd-breadcrumb-wrap { padding: 20px 0 12px; }

.pd-layout {
  display: grid;
  grid-template-columns: minmax(0, 500px) 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 64px;
}

.pd-swiper .gallery-main {
  aspect-ratio: 1;
  max-height: 500px;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: zoom-in;
}
.pd-swiper .gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.pd-dots { display: none; }

.pd-img-counter {
  display: none;
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(75,59,64,0.55);
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 9px;
  border-radius: 20px;
  letter-spacing: 0.04em;
  z-index: 10;
  pointer-events: none;
}

.pd-thumbs { margin-top: 10px; }

.pd-category-line {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.pd-category-line a { color: var(--text-muted); text-decoration: none; transition: color .2s; }
.pd-category-line a:hover { color: var(--text-primary); }
.pd-sku { color: var(--text-muted); }

.pd-title {
  font-size: clamp(22px, 3vw, 40px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 14px;
  font-family: var(--font-display);
  color: var(--text-primary);
}

.pd-rating-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}
.pd-stars { display: flex; gap: 2px; align-items: center; }
.pd-rating-val { font-size: 14px; font-weight: 700; color: #F59E0B; }
.pd-rating-count { font-size: 13px; color: var(--text-muted); text-decoration: underline; text-underline-offset: 3px; cursor: pointer; }
.pd-rating-count:hover { color: var(--text-primary); }

.pd-price-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 14px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.pd-price-sale { font-size: 30px; font-weight: 800; font-family: var(--font-display); line-height: 1; color: var(--text-primary); }
.pd-price-original { font-size: 16px; color: var(--text-muted); text-decoration: line-through; font-weight: 400; }
.pd-discount-badge { background: rgba(248,200,220,0.3); color: #C2185B; font-size: 12px; font-weight: 700; padding: 3px 10px; border-radius: var(--radius-full); letter-spacing: 0.04em; }

.pd-stock-row { display: flex; align-items: center; gap: 7px; margin-bottom: 16px; }
.pd-stock-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; display: inline-block; }
.pd-stock-text { font-size: 12px; text-transform: uppercase; letter-spacing: 0.07em; font-weight: 600; }

.pd-offers-strip { display: none; }

.pd-short-desc { font-size: 14px; color: var(--text-secondary); line-height: 1.8; margin-bottom: 20px; }

.pd-spec-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.pd-spec-chip { background: var(--bg-card); border: 1px solid var(--border); padding: 8px 14px; min-width: 80px; border-radius: var(--radius-sm); }
.pd-spec-chip-key { font-size: 9px; color: var(--text-muted); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 3px; }
.pd-spec-chip-val { font-size: 13px; font-weight: 700; color: var(--text-primary); }

.pd-actions-desktop { margin-bottom: 24px; }
.pd-qty-row { margin-bottom: 14px; }
.pd-qty-label { display: block; font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-secondary); margin-bottom: 8px; }
.pd-btn-row { display: flex; gap: 10px; flex-wrap: wrap; }

.pd-trust-desktop {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 18px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 20px;
  text-align: center;
}
.pd-trust-icon { font-size: 18px; margin-bottom: 4px; }
.pd-trust-text { font-size: 10px; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 0.05em; line-height: 1.5; }

.pd-share-row { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.pd-share-label { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }
.pd-share-link { font-size: 12px; color: var(--text-secondary); text-decoration: none; transition: color .2s; }
.pd-share-link:hover { color: var(--text-primary); }

.pd-tabs-section { margin-bottom: 60px; }
.pd-tab-body { max-width: 800px; color: var(--text-secondary); font-size: 14px; line-height: 2; padding: 24px 0; }

.pd-specs-table { max-width: 560px; padding: 8px 0; }
.pd-spec-row { display: flex; justify-content: space-between; align-items: flex-start; gap: 24px; padding: 13px 0; border-bottom: 1px solid var(--border); }
.pd-spec-key { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; flex-shrink: 0; max-width: 44%; }
.pd-spec-val { font-size: 13px; font-weight: 700; text-align: right; color: var(--text-primary); }

.pd-related { padding-top: 48px; border-top: 1px solid var(--border); margin-bottom: 48px; }

.pd-sticky-bar { display: none; }

/* Mobile overrides ≤1023px */
@media (max-width: 1023px) {
  .pd-page { padding-left: 0; padding-right: 0; padding-bottom: 90px; }
  .pd-breadcrumb-wrap { padding: 14px 16px 8px; }
  .pd-layout { grid-template-columns: 1fr; gap: 0; margin-bottom: 32px; }
  .product-gallery, .pd-layout .product-gallery { position: static !important; top: auto !important; width: 100%; }
  .pd-swiper .gallery-main { height: 300px; max-height: 300px; aspect-ratio: auto; border: none; border-radius: 0; margin-bottom: 0; cursor: default; }
  .pd-swiper .gallery-main img { width: 100%; height: 100%; object-fit: cover; object-position: center; transform: none !important; }
  .pd-dots { display: flex !important; padding: 10px 0 6px; justify-content: center; }
  .pd-dots .swiper-pagination-bullet { width: 6px; height: 6px; background: var(--border); opacity: 1; margin: 0 3px; transition: background .2s, transform .2s; }
  .pd-dots .swiper-pagination-bullet-active { background: var(--accent); transform: scale(1.3); }
  .pd-img-counter { display: block; }
  .pd-thumbs { display: none !important; }
  .pd-info { padding: 14px 16px 0; }
  .pd-category-line { margin-bottom: 6px; }
  .pd-title { font-size: clamp(18px, 5vw, 26px); font-weight: 800; letter-spacing: -0.01em; line-height: 1.2; margin-bottom: 8px; }
  .pd-rating-row { margin-bottom: 10px; }
  .pd-price-row { margin-bottom: 10px; padding-bottom: 12px; }
  .pd-price-sale { font-size: 24px; }
  .pd-price-original { font-size: 14px; }
  .pd-discount-badge { font-size: 11px; padding: 2px 8px; }
  .pd-stock-row { margin-bottom: 10px; }
  .pd-short-desc { font-size: 13px; line-height: 1.7; margin-bottom: 14px; }
  .pd-offers-strip { display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none; padding: 12px 0 4px; margin-bottom: 12px; -webkit-overflow-scrolling: touch; }
  .pd-offers-strip::-webkit-scrollbar { display: none; }
  .pd-offer-pill { flex-shrink: 0; background: rgba(248,200,220,0.12); border: 1px solid var(--border); padding: 7px 12px; font-size: 11px; color: var(--text-secondary); white-space: nowrap; border-radius: var(--radius-full); }
  .pd-actions-desktop { display: none !important; }
  .pd-trust-desktop   { display: none !important; }
  .pd-spec-chips { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
  .pd-spec-chip { min-width: 0; }
  .pd-tabs-section { padding: 0 16px; margin-bottom: 40px; }
  .pd-tab-body { font-size: 13px; line-height: 1.9; }
  .pd-spec-row { gap: 12px; }
  .pd-spec-key { font-size: 11px; }
  .pd-related { padding: 32px 16px 0; }
  .pd-sticky-bar {
    display: flex !important;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 800;
    background: white;
    border-top: 1px solid var(--border);
    padding: 10px 14px;
    gap: 8px;
    align-items: center;
    opacity: 1 !important;
    pointer-events: auto !important;
    box-shadow: 0 -4px 20px rgba(248,200,220,0.25);
  }
  .pd-sticky-price-col { flex-shrink: 0; min-width: 0; }
  .pd-sticky-label { font-size: 9px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; }
  .pd-sticky-price { font-size: 17px; font-weight: 800; line-height: 1.1; white-space: nowrap; color: var(--text-primary); font-family: var(--font-display); }
  .pd-sticky-off { font-size: 10px; color: #C2185B; font-weight: 600; }
  .pd-sticky-btn { flex: 1; padding: 11px 8px !important; font-size: 11px !important; letter-spacing: 0.04em !important; min-width: 0; }
}

@media (max-width: 400px) {
  .pd-sticky-price { font-size: 14px; }
  .pd-sticky-btn   { font-size: 10px !important; padding: 10px 6px !important; }
  .pd-title        { font-size: 18px; }
}

/* -------------------------------------------------------
   Fade animations
------------------------------------------------------- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-in-up { animation: fadeInUp 0.6s ease forwards; }

/* -------------------------------------------------------
   Gradient text utility
------------------------------------------------------- */
.gradient-text {
  background: linear-gradient(135deg, #F8C8DC, #E6D6FF, #FFD6A5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
