/* ============================================================
   GIFTURA — style.css
   Modern Premium Gifting Brand | 2026 UI
   Author: Senior FE Dev
   ============================================================ */

/* ─── CSS CUSTOM PROPERTIES ─────────────────────────────── */
:root {
  /* Brand Colors */
  --pink:        #ff6b9d;
  --pink-light:  #ffc2d1;
  --pink-pale:   #fff0f5;
  --purple:      #9c6ef7;
  --purple-light:#d4c5f9;
  --purple-pale: #f5f0ff;
  --blue:        #5cb8e4;
  --blue-light:  #b8e4f9;
  --blue-pale:   #eef8ff;

  /* Gradients */
  --grad-hero:   linear-gradient(135deg, #fff0f5 0%, #f5f0ff 40%, #eef8ff 100%);
  --grad-primary:linear-gradient(135deg, #ff6b9d, #9c6ef7);
  --grad-soft:   linear-gradient(135deg, #ffc2d1, #d4c5f9, #b8e4f9);

  /* Glass */
  --glass-bg:    rgba(255,255,255,0.65);
  --glass-border:rgba(255,255,255,0.9);
  --glass-blur:  blur(20px);

  /* Neutrals */
  --text:        #1a1a2e;
  --text-muted:  #6b7280;
  --text-light:  #9ca3af;
  --bg:          #fdfcff;
  --surface:     #ffffff;

  /* Typography */
  --font-display:"Cormorant Garamond", Georgia, serif;
  --font-body:   "DM Sans", system-ui, sans-serif;

  /* Spacing */
  --section-py:  100px;
  --container:   1200px;
  --radius:      16px;
  --radius-lg:   24px;
  --radius-pill: 100px;

  /* Shadows */
  --shadow-sm:  0 2px 12px rgba(156, 110, 247, 0.08);
  --shadow-md:  0 8px 32px rgba(156, 110, 247, 0.12);
  --shadow-lg:  0 20px 60px rgba(156, 110, 247, 0.18);
  --shadow-pink:0 8px 32px rgba(255, 107, 157, 0.25);

  /* Transitions */
  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ─── RESET & BASE ───────────────────────────────────────── */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Logo Image */
.logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  /* removes black background from the PNG */
  mix-blend-mode: multiply;
}

/* Slightly smaller in footer */
.logo-img--footer {
  height: 44px;
  filter: brightness(0) invert(1); /* makes it white for dark footer */
}

img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); border: none; background: none; }

/* ─── TYPOGRAPHY ─────────────────────────────────────────── */
h1,h2,h3,h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.2; }
h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.4rem; }
em { font-style: italic; color: var(--purple); }

/* ─── LAYOUT HELPERS ─────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--section-py) 0;
}

/* ─── GLASSMORPHISM UTILITY ──────────────────────────────── */
.glass {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
}

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s var(--ease);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--grad-primary);
  color: #fff;
  box-shadow: var(--shadow-pink);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(255,107,157,0.4);
}

.btn-ghost {
  background: transparent;
  color: var(--purple);
  border: 1.5px solid var(--purple-light);
}
.btn-ghost:hover {
  background: var(--purple-pale);
  border-color: var(--purple);
  transform: translateY(-2px);
}

.btn-nav {
  background: var(--pink-pale);
  color: var(--pink);
  font-weight: 600;
  padding: 10px 22px;
  font-size: 0.88rem;
}
.btn-nav:hover { background: var(--pink); color: #fff; }

.btn-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  padding: 10px 18px;
  font-size: 0.82rem;
  border-radius: var(--radius-pill);
  font-weight: 500;
  box-shadow: 0 4px 16px rgba(37,211,102,0.3);
  transition: all 0.3s var(--ease);
}
.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
}
.btn-whatsapp.btn-lg {
  padding: 14px 28px;
  font-size: 1rem;
  width: 100%;
  justify-content: center;
}

.btn-full { width: 100%; justify-content: center; }

/* ─── SECTION HEADER ─────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-badge {
  display: inline-block;
  background: var(--grad-soft);
  color: var(--purple);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}
.section-title { margin-bottom: 12px; }
.section-sub { color: var(--text-muted); max-width: 500px; margin: 0 auto; font-size: 1.05rem; }

/* ─── SCROLL ANIMATIONS ──────────────────────────────────── */
.animate-fade-up, .reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.animate-fade-left {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.animate-fade-up.visible,
.animate-fade-left.visible,
.reveal.visible {
  opacity: 1;
  transform: translate(0);
}

/* Delay helpers */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* Hero initial animation (auto-triggers) */
.hero .animate-fade-up { animation: fadeUp 0.7s var(--ease) both; }
.hero .animate-fade-left { animation: fadeLeft 0.8s var(--ease) both; }
.hero .delay-1 { animation-delay: 0.15s; }
.hero .delay-2 { animation-delay: 0.3s; }
.hero .delay-3 { animation-delay: 0.45s; }
.hero .delay-4 { animation-delay: 0.6s; }

@keyframes fadeUp {
  from { opacity:0; transform: translateY(40px); }
  to   { opacity:1; transform: translateY(0); }
}
@keyframes fadeLeft {
  from { opacity:0; transform: translateX(60px); }
  to   { opacity:1; transform: translateX(0); }
}

/* ============================================================
   NAVBAR
============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: all 0.4s var(--ease);
}
.navbar.scrolled {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255,255,255,0.6);
  box-shadow: 0 4px 24px rgba(156,110,247,0.08);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container);
  margin: 0 auto;
  padding: 20px 24px;
  transition: padding 0.3s;
}
.navbar.scrolled .nav-container { padding: 14px 24px; }

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo-icon { color: var(--pink); font-size: 1.2rem; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-link {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text);
  position: relative;
  padding-bottom: 2px;
  transition: color 0.2s;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--grad-primary);
  border-radius: 2px;
  transition: width 0.3s var(--ease);
}
.nav-link:hover { color: var(--purple); }
.nav-link:hover::after { width: 100%; }

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

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  padding: 4px;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ============================================================
   HERO SECTION
============================================================ */
.hero {
  min-height: 100vh;
  background: var(--grad-hero);
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  padding: 120px 24px 80px;
  max-width: var(--container);
  margin: 0 auto;
  overflow: hidden;
}

/* Animated blobs */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.5;
  animation: blobFloat 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}
.blob-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #ffc2d1, transparent 70%);
  top: -100px; left: -100px;
  animation-delay: 0s;
}
.blob-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #d4c5f9, transparent 70%);
  bottom: -80px; right: -80px;
  animation-delay: 2.5s;
}
.blob-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, #b8e4f9, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  animation-delay: 5s;
}
@keyframes blobFloat {
  0%,100% { transform: scale(1) translate(0,0); }
  33%      { transform: scale(1.1) translate(20px,-20px); }
  66%      { transform: scale(0.95) translate(-15px,15px); }
}

.hero-content { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: 1px solid var(--pink-light);
  color: var(--pink);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 24px;
  box-shadow: 0 2px 12px rgba(255,107,157,0.15);
}

.hero-title {
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero-sub {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.8;
}

.hero-cta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; gap: 2px; }
.stat strong { font-size: 1.4rem; font-family: var(--font-display); color: var(--text); }
.stat span { font-size: 0.78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; }
.stat-divider { width: 1px; height: 40px; background: var(--purple-light); }

/* Hero Visual / Gift Preview */
.hero-visual { position: relative; z-index: 1; display: flex; justify-content: center; }

.hero-card {
  padding: 48px 40px;
  text-align: center;
  max-width: 340px;
  width: 100%;
  box-shadow: var(--shadow-lg);
}

/* CSS Gift Box Illustration */
.gift-preview { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.gift-box {
  position: relative;
  width: 120px; height: 120px;
  animation: giftBounce 3s ease-in-out infinite;
}
@keyframes giftBounce {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-12px) rotate(2deg); }
}
.gift-lid {
  position: absolute;
  top: 0; left: -6px;
  width: 132px; height: 32px;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  border-radius: 8px 8px 0 0;
}
.gift-body {
  position: absolute;
  bottom: 0; left: 0;
  width: 120px; height: 90px;
  background: linear-gradient(135deg, #ffd6e7, #ffe4ff);
  border-radius: 0 0 12px 12px;
  border: 2px solid rgba(255,107,157,0.2);
}
.gift-ribbon-v {
  position: absolute;
  left: 50%; top: 0;
  transform: translateX(-50%);
  width: 14px; height: 120px;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  z-index: 2;
}
.gift-ribbon-h {
  position: absolute;
  top: 30px; left: 0;
  width: 120px; height: 14px;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  z-index: 2;
}
.gift-bow {
  position: absolute;
  top: -18px; left: 50%;
  transform: translateX(-50%);
  width: 50px; height: 28px;
  background: var(--grad-primary);
  border-radius: 50%;
  z-index: 3;
  box-shadow: 0 4px 12px rgba(255,107,157,0.4);
}
.gift-bow::before,.gift-bow::after {
  content: '';
  position: absolute;
  width: 28px; height: 20px;
  background: var(--grad-primary);
  border-radius: 50%;
  top: 4px;
}
.gift-bow::before { left: -16px; transform: rotate(-30deg); }
.gift-bow::after  { right: -16px; transform: rotate(30deg); }

.gift-preview p { color: var(--text-muted); font-size: 0.88rem; }

/* ============================================================
   CATEGORIES
============================================================ */
.categories { background: var(--surface); }

.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.cat-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease-spring), box-shadow 0.4s var(--ease);
  cursor: pointer;
}
.cat-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.cat-card:hover .cat-img { border-radius: var(--radius-lg); }

.cat-img {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  transition: transform 0.5s var(--ease);
  overflow: hidden;
}
.cat-card:hover .cat-img { transform: scale(1.05); }

.cat-emoji { font-size: 3.5rem; }

.cat-info { padding: 24px; }
.cat-info h3 { font-size: 1.2rem; margin-bottom: 8px; }
.cat-info p { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 16px; line-height: 1.6; }

.cat-link {
  color: var(--purple);
  font-weight: 600;
  font-size: 0.9rem;
  transition: color 0.2s, gap 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.cat-link:hover { color: var(--pink); gap: 8px; }

/* ============================================================
   PRODUCTS
============================================================ */
.products { background: var(--grad-hero); }

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease-spring), box-shadow 0.4s var(--ease);
  display: flex;
  flex-direction: column;
}
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

.product-img {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.5s var(--ease);
}
.product-card:hover .product-img { transform: scale(1.03); }
.product-emoji { font-size: 4rem; }

.product-badge {
  position: absolute;
  top: 12px; right: 12px;
  background: var(--grad-primary);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.05em;
}

.product-info { padding: 20px; display: flex; flex-direction: column; flex: 1; gap: 6px; }
.product-category {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--purple);
  font-weight: 600;
}
.product-name { font-size: 1rem; font-weight: 500; line-height: 1.4; }
.product-rating { color: #f59e0b; font-size: 0.82rem; }
.product-rating span { color: var(--text-muted); margin-left: 4px; }

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 12px;
  flex-wrap: wrap;
  gap: 10px;
}
.product-price {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text);
}

/* ============================================================
   REVIEWS
============================================================ */
.reviews { background: var(--surface); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.review-card {
  padding: 36px 32px;
  box-shadow: var(--shadow-md);
  transition: transform 0.4s var(--ease-spring);
}
.review-card:hover { transform: translateY(-6px); }

.review-stars { color: #f59e0b; font-size: 1.2rem; margin-bottom: 16px; letter-spacing: 2px; }
.review-text {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.reviewer { display: flex; align-items: center; gap: 14px; }
.reviewer-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: #fff;
  flex-shrink: 0;
}
.reviewer-info strong { display: block; font-size: 0.95rem; font-weight: 600; }
.reviewer-info span { font-size: 0.8rem; color: var(--text-muted); }

/* ============================================================
   ABOUT
============================================================ */
.about { background: var(--grad-hero); }

.about-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text .section-badge { margin-bottom: 12px; }
.about-text .section-title { text-align: left; margin-bottom: 20px; }
.about-text p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 0.98rem;
}

.about-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.about-card {
  padding: 24px 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: flex-start;
  gap: 18px;
  transition: transform 0.3s var(--ease);
}
.about-card:hover { transform: translateX(6px); }
.about-icon { font-size: 1.8rem; flex-shrink: 0; }
.about-card h3 { font-size: 1.05rem; margin-bottom: 4px; }
.about-card p { font-size: 0.85rem; color: var(--text-muted); }

/* ============================================================
   CONTACT
============================================================ */
.contact { background: var(--surface); }

.contact-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: start;
}

/* Form */


.contact-form { display: flex; flex-direction: column; gap: 20px; }

.form-group { display: flex; flex-direction: column; gap: 8px; }

.form-group label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group textarea {
  padding: 14px 18px;
  border: 1.5px solid #e5e7eb;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: #fafafa;
  transition: border-color 0.3s, box-shadow 0.3s;
  resize: vertical;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--purple);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(156,110,247,0.08);
}
.form-group input.error,
.form-group textarea.error { border-color: #ef4444; box-shadow: 0 0 0 4px rgba(239,68,68,0.08); }

.form-error { font-size: 0.8rem; color: #ef4444; min-height: 18px; }

.form-success {
  display: none;
  padding: 16px 20px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: var(--radius);
  color: #15803d;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Contact Info */
.contact-info { display: flex; flex-direction: column; gap: 20px; }

.contact-block {
  padding: 28px 28px;
  box-shadow: var(--shadow-sm);
}
.contact-block h3 { font-size: 1.05rem; margin-bottom: 10px; }
.contact-block p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 16px; }

.upi-info {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--purple-pale);
  border: 1px solid var(--purple-light);
  border-radius: 10px;
  padding: 12px 18px;
}
.upi-tag { font-size: 0.8rem; font-weight: 600; color: var(--purple); text-transform: uppercase; letter-spacing: 0.05em; }
.upi-info code {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  background: white;
  padding: 4px 12px;
  border-radius: 6px;
  border: 1px solid var(--purple-light);
}

/* ============================================================
   FOOTER
============================================================ */
.footer {
  background: var(--text);
  color: rgba(255,255,255,0.8);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .nav-logo { color: #fff; margin-bottom: 16px; display: inline-flex; }
.footer-brand p { font-size: 0.9rem; opacity: 0.7; line-height: 1.7; margin-bottom: 24px; }

.social-links { display: flex; gap: 12px; }
.social-link {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s var(--ease);
}
.social-link:hover { background: var(--pink); border-color: var(--pink); transform: translateY(-3px); }
.social-link svg { width: 18px; height: 18px; color: #fff; }

.footer-col h4 {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 0.88rem;
  opacity: 0.7;
  transition: opacity 0.2s, color 0.2s;
}
.footer-col a:hover { opacity: 1; color: var(--pink-light); }

.footer-bottom {
  padding: 24px 0;
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.5;
}

/* ─── BACK TO TOP ────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--grad-primary);
  color: #fff;
  font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-pink);
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: all 0.4s var(--ease);
  z-index: 999;
}
.back-to-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-4px); }

/* ============================================================
   RESPONSIVE — TABLET (≤1024px)
============================================================ */
@media (max-width: 1024px) {
  :root { --section-py: 80px; }

  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 140px;
  }
  .hero-content { display: flex; flex-direction: column; align-items: center; }
  .hero-sub { margin: 0 auto 36px; }
  .hero-visual { display: none; }

  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid   { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid    { grid-template-columns: repeat(2, 1fr); }

  .about-wrapper   { grid-template-columns: 1fr; gap: 40px; }
  .about-text .section-title { text-align: center; }
  .about-text .section-badge { display: block; text-align: center; }

  .contact-wrapper { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤640px)
============================================================ */
@media (max-width: 640px) {
  :root { --section-py: 60px; }

  /* Nav */
  .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(253,252,255,0.97);
    backdrop-filter: blur(24px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 36px;
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links .nav-link { font-size: 1.4rem; }

  .hamburger { display: flex; z-index: 1000; }
  .btn-nav   { display: none; }

  /* Hero */
  .hero { padding: 120px 20px 60px; }
  .hero-stats { justify-content: center; gap: 16px; }
  .stat-divider { height: 30px; }
  .hero-cta { flex-direction: column; align-items: center; }

  /* Grids → single col */
  .categories-grid { grid-template-columns: 1fr; }
  .products-grid   { grid-template-columns: 1fr; }
  .reviews-grid    { grid-template-columns: 1fr; }
  .footer-grid     { grid-template-columns: 1fr; }

  /* Product card */
  .product-footer { flex-direction: column; align-items: flex-start; }
  .btn-whatsapp { width: 100%; justify-content: center; }

  /* Contact */
  .contact-block h3 { font-size: 1rem; }
  .upi-info { flex-wrap: wrap; }

  .back-to-top { bottom: 20px; right: 20px; width: 42px; height: 42px; }
}

/* ─── ACCESSIBILITY: Reduce Motion ───────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
