/* =========================================
   GlowRinse — Global Styles
   Color Palette: Soft Pink & Rose
   ========================================= */

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

/* --- Variables --- */
:root {
  --pink-50:   #fff0f5;
  --pink-100:  #ffe0ee;
  --pink-200:  #ffb8d9;
  --pink-300:  #ff80bb;
  --pink-400:  #f54d96;
  --rose:      #c2185b;
  --rose-dark: #8e0038;
  --text:      #1a0812;
  --text-muted:#7a4060;
  --border:    #f5c6db;
  --bg:        #fff9fb;
  --white:     #ffffff;
  --card-bg:   #ffffff;
  --shadow-sm: 0 2px 8px rgba(194,24,91,0.08);
  --shadow-md: 0 4px 24px rgba(194,24,91,0.13);
  --shadow-lg: 0 8px 40px rgba(194,24,91,0.18);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --transition: 0.22s ease;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 15px;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button, input, select, textarea { font-family: inherit; }

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.25;
  color: var(--text);
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); }
h3 { font-size: 1.25rem; }

/* --- Layout --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 72px 0; }
.section-header { text-align: center; margin-bottom: 48px; }
.section-header p { color: var(--text-muted); margin-top: 10px; font-size: 1rem; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: 0.02em;
}
.btn-primary {
  background: linear-gradient(135deg, var(--rose) 0%, #e91e8c 100%);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(194,24,91,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 26px rgba(194,24,91,0.45);
}
.btn-outline {
  background: transparent;
  color: var(--rose);
  border: 2px solid var(--rose);
}
.btn-outline:hover {
  background: var(--rose);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-ghost {
  background: var(--pink-100);
  color: var(--rose);
}
.btn-ghost:hover { background: var(--pink-200); }
.btn-lg { padding: 16px 42px; font-size: 1.05rem; }

/* --- Header / Nav --- */
.header {
  background: var(--white);
  border-bottom: 1px solid var(--pink-100);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 20px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--rose);
  letter-spacing: -0.01em;
}
.logo-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--rose), #e91e8c);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
}
.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 500;
  color: var(--text-muted);
  transition: all var(--transition);
  font-size: 0.92rem;
}
.nav a:hover, .nav a.active {
  color: var(--rose);
  background: var(--pink-50);
}
.header-actions { display: flex; align-items: center; gap: 10px; }
.cart-btn {
  position: relative;
  background: var(--pink-50);
  border: none;
  cursor: pointer;
  padding: 10px 14px;
  border-radius: 10px;
  color: var(--rose);
  font-size: 1.15rem;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-family: inherit;
}
.cart-btn:hover { background: var(--pink-100); }
.cart-count {
  background: var(--rose);
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
  font-size: 1.4rem;
}
.mobile-nav {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--pink-100);
  padding: 12px 20px;
  flex-direction: column;
  gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 12px 16px;
  border-radius: 8px;
  font-weight: 500;
  color: var(--text-muted);
  transition: all var(--transition);
}
.mobile-nav a:hover { color: var(--rose); background: var(--pink-50); }

/* --- Badges / Tags --- */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.badge-rose { background: var(--pink-100); color: var(--rose); }
.badge-green { background: #e8f5e9; color: #2e7d32; }
.badge-orange { background: #fff3e0; color: #e65100; }
.badge-red { background: #fce4ec; color: #c62828; }
.badge-blue { background: #e3f2fd; color: #1565c0; }
.badge-gray { background: #f5f5f5; color: #616161; }

/* --- Cards --- */
.card {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all var(--transition);
}
.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

/* --- Product Card --- */
.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all var(--transition);
}
.product-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.product-card-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.product-card-body { padding: 18px; }
.product-card-name {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 6px;
}
.product-card-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--rose);
  margin-bottom: 4px;
}
.product-card-delivery {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.product-card-btn {
  width: 100%;
  padding: 11px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--rose) 0%, #e91e8c 100%);
  color: white;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition);
}
.product-card-btn:hover { opacity: 0.9; transform: translateY(-1px); }

/* --- Grid --- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* --- Trust Badges --- */
.trust-strip {
  background: linear-gradient(135deg, var(--rose) 0%, #e91e8c 100%);
  color: white;
  padding: 14px 0;
}
.trust-strip-inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 500;
}
.trust-item .icon { font-size: 1.1rem; display:flex; align-items:center; }
.trust-item .icon svg { stroke: white; }

/* --- Hero --- */
.hero {
  background: linear-gradient(135deg, #fff0f6 0%, #fce4ec 40%, #fff9fb 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(194,24,91,0.07), transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--pink-100);
  color: var(--rose);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}
.hero h1 { margin-bottom: 18px; }
.hero p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 32px;
  line-height: 1.75;
}
.hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.hero-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: radial-gradient(ellipse 80% 80% at 50% 50%, #fce4ec 0%, #fff0f5 60%, transparent 100%);
}
.hero-img img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.hero-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: white;
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-badge-icon {
  width: 36px;
  height: 36px;
  background: var(--pink-50);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rose);
  font-size: 1.1rem;
}
.hero-badge-text { font-size: 0.78rem; line-height: 1.3; }
.hero-badge-text strong { display: block; font-size: 0.88rem; color: var(--rose); }

/* --- Features --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.feature-card {
  text-align: center;
  padding: 32px 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.feature-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--pink-50);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 16px;
  color: var(--rose);
}
.feature-card h3 { font-size: 0.95rem; margin-bottom: 8px; }
.feature-card p { font-size: 0.83rem; color: var(--text-muted); }

/* --- Testimonials --- */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  padding: 0;
  overflow: hidden;
  transition: all var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.testimonial-photo-wrap {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: var(--pink-light);
}
.testimonial-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.testimonial-photo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: var(--pink-mid);
  color: var(--rose);
  font-size: 0.95rem;
  font-weight: 600;
  text-align: center;
  gap: 4px;
  border-bottom: 2px dashed var(--rose);
}
.testimonial-photo-placeholder span {
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--text-muted);
  font-family: monospace;
}

.testimonial-card .stars,
.testimonial-card .testimonial-text,
.testimonial-card .testimonial-author {
  padding-left: 24px;
  padding-right: 24px;
}
.testimonial-card .stars { padding-top: 22px; }
.testimonial-card .testimonial-author { padding-bottom: 22px; }

.stars { color: #ffc107; font-size: 1rem; margin-bottom: 12px; letter-spacing: 2px; }
.testimonial-text {
  font-style: italic;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 16px;
  line-height: 1.7;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--pink-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--rose);
  font-size: 0.9rem;
  flex-shrink: 0;
}
.author-name { font-weight: 600; font-size: 0.88rem; }
.author-city { font-size: 0.77rem; color: var(--text-muted); }

/* --- Newsletter --- */
.newsletter {
  background: linear-gradient(135deg, var(--rose) 0%, #e91e8c 100%);
  color: white;
  padding: 64px 0;
  text-align: center;
}
.newsletter h2 { color: white; margin-bottom: 12px; }
.newsletter p { color: rgba(255,255,255,0.85); margin-bottom: 28px; }
.newsletter-form {
  display: flex;
  justify-content: center;
  gap: 0;
  max-width: 460px;
  margin: 0 auto;
}
.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  border: none;
  border-radius: 50px 0 0 50px;
  font-size: 0.95rem;
  outline: none;
  background: rgba(255,255,255,0.95);
}
.newsletter-form button {
  padding: 14px 26px;
  background: var(--text);
  color: white;
  border: none;
  border-radius: 0 50px 50px 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition);
}
.newsletter-form button:hover { background: #330022; }

/* --- Footer --- */
.footer {
  background: #1a0812;
  color: rgba(255,255,255,0.75);
  padding: 60px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: white;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-logo-icon {
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, var(--rose), #e91e8c);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}
.footer p { font-size: 0.87rem; line-height: 1.7; margin-bottom: 16px; }
.footer h4 { color: white; font-size: 0.95rem; margin-bottom: 18px; font-family: 'Inter', sans-serif; font-weight: 600; }
.footer ul { display: flex; flex-direction: column; gap: 10px; }
.footer ul li a {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.footer ul li a:hover { color: var(--pink-300); }
.payment-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.payment-badge {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.8);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom a { color: var(--pink-300); }

/* --- Cart Sidebar --- */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.cart-overlay.open { opacity: 1; pointer-events: all; }
.cart-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 380px;
  height: 100vh;
  background: white;
  z-index: 2001;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-lg);
}
.cart-sidebar.open { transform: translateX(0); }
.cart-header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px;
  border-bottom: 1px solid var(--border);
}
.cart-header-bar h3 { font-size: 1.1rem; }
.cart-close {
  background: var(--pink-50);
  border: none;
  cursor: pointer;
  border-radius: 8px;
  padding: 6px 10px;
  color: var(--text-muted);
  font-size: 1rem;
}
.cart-items { flex: 1; overflow-y: auto; padding: 16px 22px; }
.cart-item {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--pink-50);
}
.cart-item-img {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}
.cart-item-info { flex: 1; }
.cart-item-name { font-weight: 600; font-size: 0.88rem; margin-bottom: 4px; }
.cart-item-price { color: var(--rose); font-weight: 700; font-size: 0.9rem; }
.cart-item-remove {
  background: none;
  border: none;
  cursor: pointer;
  color: #ccc;
  font-size: 1rem;
  padding: 2px 6px;
  transition: color var(--transition);
}
.cart-item-remove:hover { color: #e53935; }
.cart-empty { text-align: center; padding: 60px 20px; color: var(--text-muted); }
.cart-empty .icon { font-size: 3rem; margin-bottom: 12px; }
.cart-footer {
  padding: 18px 22px;
  border-top: 1px solid var(--border);
}
.cart-total-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.87rem;
  margin-bottom: 6px;
  color: var(--text-muted);
}
.cart-total-main {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  font-size: 1.05rem;
  margin: 10px 0 14px;
  color: var(--text);
}
.cart-checkout-btn {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--rose), #e91e8c);
  color: white;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 700;
  font-size: 1rem;
  transition: all var(--transition);
}
.cart-checkout-btn:hover { opacity: 0.9; transform: translateY(-1px); }

/* --- Forms --- */
.form-group { margin-bottom: 18px; }
.form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 7px;
  color: var(--text);
}
.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  outline: none;
  background: var(--white);
  transition: border-color var(--transition);
  color: var(--text);
}
.form-input:focus { border-color: var(--rose); box-shadow: 0 0 0 3px rgba(194,24,91,0.1); }
.form-select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  outline: none;
  background: var(--white);
  cursor: pointer;
  color: var(--text);
  transition: border-color var(--transition);
}
.form-select:focus { border-color: var(--rose); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* --- Toast --- */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.toast {
  padding: 14px 20px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: var(--shadow-md);
  animation: slideInRight 0.3s ease;
  max-width: 340px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.toast-success { background: #1b5e20; color: white; }
.toast-error { background: #b71c1c; color: white; }
.toast-info { background: var(--rose); color: white; }
@keyframes slideInRight {
  from { transform: translateX(120%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* =============================================
   WHATSAPP FLOATING BUTTON
   ============================================= */
.whatsapp-float {
  position: fixed;
  left: 20px;
  bottom: 28px;
  right: auto;
  top: auto;
  transform: none;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  animation: waPulse 2.5s ease-in-out infinite;
}
.whatsapp-float a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: #25D366;
  border-radius: 50%;
  box-shadow: 0 4px 18px rgba(37,211,102,0.5);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.whatsapp-float a:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37,211,102,0.65);
}
.whatsapp-float svg { width: 28px; height: 28px; fill: white; }
.whatsapp-label {
  background: #25D366;
  color: white;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 0 0 8px 8px;
  letter-spacing: 0.04em;
  margin-top: -1px;
  box-shadow: 0 3px 10px rgba(37,211,102,0.3);
}
@keyframes waPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

/* =============================================
   URGENCY BAR (countdown + stock + viewers)
   ============================================= */
.urgency-bar {
  background: linear-gradient(135deg, #1a0812 0%, #3d0a1e 100%);
  border-radius: 12px;
  padding: 14px 18px;
  margin-bottom: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
}
.urgency-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.83rem;
  color: white;
}
.urgency-item .icon { font-size: 1rem; }
.countdown-timer {
  font-size: 1.1rem;
  font-weight: 800;
  color: #ff6b9d;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
}
.stock-bar-wrap {
  width: 80px;
  height: 5px;
  background: rgba(255,255,255,0.15);
  border-radius: 50px;
  overflow: hidden;
}
.stock-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #ff6b9d, #ff3366);
  border-radius: 50px;
  transition: width 0.5s ease;
}
.viewer-count {
  font-weight: 700;
  color: #ffd700;
}

/* Urgency badges */
.urgency-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.urgency-tag {
  display: flex;
  align-items: center;
  gap: 5px;
  background: var(--pink-50);
  border: 1.5px solid var(--border);
  border-radius: 50px;
  padding: 4px 12px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--rose);
}
.urgency-tag.fire { background: #fff3e0; border-color: #ffb74d; color: #e65100; }
.urgency-tag.green { background: #e8f5e9; border-color: #81c784; color: #2e7d32; }

/* =============================================
   PURCHASE NOTIFICATION POPUP
   ============================================= */
.purchase-popup {
  position: fixed;
  bottom: 100px;
  left: 20px;
  background: white;
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: 0 6px 30px rgba(0,0,0,0.18);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 8888;
  max-width: 290px;
  border-left: 4px solid #25D366;
  transform: translateX(-130%);
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
.purchase-popup.show { transform: translateX(0); }
.purchase-popup-avatar {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--rose), #e91e8c);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.purchase-popup-text { flex: 1; }
.purchase-popup-name { font-weight: 700; font-size: 0.85rem; color: var(--text); }
.purchase-popup-detail { font-size: 0.77rem; color: var(--text-muted); margin-top: 1px; }
.purchase-popup-time { font-size: 0.7rem; color: #aaa; margin-top: 3px; }

/* =============================================
   SALE HERO BADGE
   ============================================= */
.sale-ends-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: linear-gradient(135deg, #b71c1c, #e53935);
  color: white;
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 16px;
  box-shadow: 0 3px 14px rgba(183,28,28,0.35);
  animation: salePulse 1.6s ease-in-out infinite;
}
.sale-ends-badge .sale-timer { font-variant-numeric: tabular-nums; color: #ffd54f; }
@keyframes salePulse {
  0%, 100% { box-shadow: 0 3px 14px rgba(183,28,28,0.35); }
  50% { box-shadow: 0 3px 24px rgba(183,28,28,0.65); }
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}
@media (max-width: 768px) {
  .nav { display: none; }
  .hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-img { order: -1; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .cart-sidebar { width: 100%; }
  .trust-strip-inner { gap: 14px; }
}
@media (max-width: 480px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { text-align: center; }
  .section { padding: 48px 0; }
  .form-row { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form input { border-radius: 50px; }
  .newsletter-form button { border-radius: 50px; }
}
