﻿/*
Theme Name: Giftora
Theme URI: http://giftora.local
Author: WebDev Services
Author URI: https://webdevservices-dun.vercel.app
Description: Ecommerce gift shop theme for selling clothes, toys, flowers and cakes.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: giftora
*/
:root {
  --primary: #7c3aed;
  --primary-dark: #5b21b6;
  --primary-light: #d8b4fe;
  --accent: #f5b301;
  --accent-dark: #d97706;
  --cream: #fdf6f8;
  --surface: #ffffff;
  --text: #241a30;
  --text-muted: #6d5b7d;
  --border: #e7d8f0;
  --shadow-sm: 0 2px 8px rgba(45, 31, 61, 0.08);
  --shadow-md: 0 12px 32px rgba(45, 31, 61, 0.14);
  --shadow-lg: 0 20px 50px rgba(45, 31, 61, 0.22);
  --radius: 16px;
  --font-head: "Fraunces", serif;
  --font-body: "Poppins", sans-serif;
  --font-script: "Dancing Script", cursive;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }
input, textarea { font-family: inherit; }

.container { width: min(1180px, 92%); margin-inline: auto; }

.text-gradient {
  background: linear-gradient(120deg, #7c3aed 0%, #a855f7 50%, #f59e0b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(124, 58, 237, 0.14);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.section-header { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section-header h2 { font-family: var(--font-head); font-size: clamp(1.9rem, 4vw, 2.7rem); line-height: 1.15; margin-bottom: 12px; }
.section-header p { color: var(--text-muted); }

/* ---------- Navbar ---------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: linear-gradient(180deg, rgba(255,250,246,0.94), rgba(255,247,242,0.78));
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.3s, border-color 0.3s;
}
.navbar.scrolled {
  box-shadow: 0 10px 30px rgba(124,58,237,0.14);
  border-color: rgba(124,58,237,0.15);
}
.nav-container { display: flex; align-items: center; justify-content: space-between; height: 96px; }
.logo {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-size: 1.85rem; font-weight: 800; color: var(--text);
  text-shadow: 0 2px 12px rgba(124,58,237,0.15);
  transition: transform 0.25s;
}
.logo-mark { width: 84px; height: 71px; flex: none; }
.logo:hover { transform: scale(1.05) rotate(-2deg); }
.logo span {
  color: var(--accent); font-family: var(--font-script); font-size: 1.35em; font-weight: 700;
  text-shadow: 0 2px 14px rgba(245,179,1,0.45);
}
.nav-links { display: flex; gap: 34px; perspective: 800px; }
.nav-links a {
  display: inline-block;
  font-size: 1.08rem; font-weight: 600; color: #4b3a5c;
  position: relative;
  text-shadow: 0 1px 0 rgba(255,255,255,0.7);
  transition: color 0.25s, transform 0.25s, text-shadow 0.25s;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px;
  width: 0; height: 3px; border-radius: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  box-shadow: 0 2px 8px rgba(124,58,237,0.45);
  transition: width 0.3s ease;
}
.nav-links a:hover {
  color: var(--primary);
  transform: perspective(800px) translateY(-3px) scale(1.1) rotateX(14deg);
  text-shadow: 0 6px 20px rgba(124,58,237,0.45), 0 2px 6px rgba(124,58,237,0.2);
}
.nav-links a:hover::after { width: 100%; }
.nav-links a.nav-highlight {
  background: linear-gradient(120deg, var(--primary), var(--accent-dark));
  color: #fff;
  padding: 10px 20px;
  border-radius: 999px;
  text-shadow: 0 1px 3px rgba(0,0,0,0.25);
  box-shadow: 0 4px 14px rgba(124,58,237,0.35);
  vertical-align: middle;
}
.nav-links a.nav-highlight::after { display: none; }
.nav-links a.nav-highlight:hover {
  color: #fff;
  transform: perspective(800px) translateY(-3px) scale(1.08) rotateX(14deg);
  box-shadow: 0 10px 26px rgba(124,58,237,0.55);
}
.nav-dropdown { position: relative; }
.nav-dropdown > a::after {
  content: ""; position: absolute; left: 0; bottom: -6px;
  width: 0; height: 3px; border-radius: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  box-shadow: 0 2px 8px rgba(124,58,237,0.45);
  transition: width 0.3s ease;
}
.nav-dropdown > a:hover::after { width: 100%; }
.dropdown-menu {
  position: absolute; top: 100%; left: 50%;
  transform: perspective(700px) rotateX(-18deg) translateX(-50%);
  transform-origin: top center;
  background: rgba(255,255,255,0.97);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 24px 50px rgba(43,31,61,0.22);
  padding: 10px;
  min-width: 200px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.28s, transform 0.28s;
  margin-top: 16px;
}
.nav-dropdown:hover .dropdown-menu, .nav-dropdown.open .dropdown-menu {
  opacity: 1; pointer-events: auto;
  transform: perspective(700px) rotateX(0deg) translateX(-50%);
}
.dropdown-menu a {
  display: block; padding: 10px 16px;
  font-size: 0.98rem; font-weight: 600;
  color: #4b3a5c; border-radius: 10px;
  transition: background 0.2s, color 0.2s, transform 0.2s, padding-left 0.2s;
}
.dropdown-menu a:hover {
  background: linear-gradient(90deg, rgba(124,58,237,0.12), rgba(245,179,1,0.12));
  color: var(--primary);
  transform: translateX(6px);
}
.nav-actions { display: flex; align-items: center; gap: 14px; }
.cart-btn {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  width: 46px; height: 46px;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 50%;
  color: var(--text);
  transition: all 0.25s;
}
.cart-btn:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.cart-badge {
  position: absolute; top: -4px; right: -4px;
  min-width: 20px; height: 20px;
  display: flex; align-items: center; justify-content: center;
  background: var(--primary); color: #fff;
  font-size: 0.7rem; font-weight: 700;
  border-radius: 999px; padding: 0 5px;
}
.cart-badge.hidden { display: none; }
.menu-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 8px; }
.menu-toggle span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.3s; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #fdf6f8 0%, #f3e9ff 45%, #fff4e2 100%);
}
.hero-pattern {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 80% 20%, rgba(124,58,237,0.12) 0%, transparent 40%),
                    radial-gradient(circle at 20% 80%, rgba(245,179,1,0.16) 0%, transparent 40%);
}
.hero-content { position: relative; z-index: 1; max-width: 680px; }
.hero-badge {
  display: inline-block;
  font-size: 0.85rem; font-weight: 700;
  color: var(--text);
  background: rgba(255,255,255,0.92);
  border: 2px solid var(--accent);
  box-shadow: 0 2px 14px rgba(245,179,1,0.35);
  padding: 8px 18px;
  border-radius: 999px;
  margin-bottom: 24px;
}
.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.6rem, 7vw, 4.4rem);
  line-height: 1.08;
  margin-bottom: 20px;
}
.hero p { font-size: 1.12rem; color: var(--text-muted); max-width: 520px; margin-bottom: 32px; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  font-size: 0.95rem; font-weight: 600;
  padding: 14px 28px;
  border-radius: 999px;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.btn-primary {
  background: linear-gradient(120deg, #5b21b6, #8b5cf6);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 10px 26px rgba(124,58,237,0.38);
}
.btn-primary:hover {
  background: linear-gradient(120deg, #4c1d95, #7c3aed);
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(124,58,237,0.50);
}
.btn-outline {
  background: rgba(255,255,255,0.65);
  color: var(--text);
  font-weight: 600;
  border: 2px solid rgba(45,31,61,0.30);
}
.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(124,58,237,0.08);
  transform: translateY(-2px);
}
.btn-block { width: 100%; }

.hero-stats { display: flex; gap: 48px; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; }
.stat-number { font-family: var(--font-head); font-size: 2rem; font-weight: 700; color: var(--accent-dark); }
.stat-label { font-size: 0.88rem; color: var(--text-muted); }

/* ---------- Categories ---------- */
.categories { padding: 96px 0 40px; }
.categories-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.category-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  overflow: hidden;
}
.category-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0); transform-origin: left; transition: transform 0.35s;
}
.category-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.category-card:hover::before { transform: scaleX(1); }
.category-emoji { font-size: 2.8rem; margin-bottom: 16px; }
.category-card h3 { font-family: var(--font-head); font-size: 1.3rem; margin-bottom: 8px; }
.category-card p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 16px; }
.category-count { font-size: 0.85rem; font-weight: 600; color: var(--primary); }

/* ---------- Shop ---------- */
.shop { padding: 80px 0; }
.shop-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 36px; flex-wrap: wrap; }
.search-box {
  flex: 1; max-width: 340px;
  display: flex; align-items: center; gap: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 12px 20px;
  color: var(--text-muted);
}
.search-box input { border: none; outline: none; background: none; width: 100%; font-size: 0.95rem; color: var(--text); }
.filter-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.filter-btn {
  font-size: 0.9rem; font-weight: 600;
  padding: 10px 22px;
  border-radius: 999px;
  border: 1.5px solid #dcc8ea;
  background: var(--surface);
  color: #5a4870;
  transition: all 0.2s;
}
.filter-btn:hover { border-color: var(--primary); color: var(--primary); }
.filter-btn.active { background: var(--primary); border-color: var(--primary); color: #fff; }

.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.product-media {
  position: relative;
  aspect-ratio: 1 / 1;
  display: flex; align-items: center; justify-content: center;
}
.product-emoji { font-size: 4.2rem; filter: drop-shadow(0 8px 16px rgba(0,0,0,0.10)); transition: transform 0.3s; }
.product-card:hover .product-emoji { transform: scale(1.12); }
.product-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.product-card:hover .product-img { transform: scale(1.05); }
.product-badge {
  position: absolute; top: 14px; left: 14px;
  font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: #3a2a00;
  background: var(--accent);
  box-shadow: 0 2px 10px rgba(245,179,1,0.45);
  padding: 5px 12px;
  border-radius: 999px;
}
.product-badge.premium { background: var(--text); color: #fff; box-shadow: none; }
.product-info { padding: 20px; display: flex; flex-direction: column; flex: 1; gap: 6px; }
.product-category { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); }
.product-name { font-family: var(--font-head); font-weight: 600; font-size: 1.08rem; line-height: 1.35; }
.product-desc {
  font-size: 0.85rem; color: var(--text-muted); line-height: 1.5;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.product-price { display: flex; align-items: baseline; gap: 8px; margin-top: auto; padding-top: 10px; }
.product-price .price { font-family: var(--font-head); font-size: 1.25rem; font-weight: 700; color: var(--primary); }
.product-price .old-price { font-size: 0.9rem; color: var(--text-muted); text-decoration: line-through; }
.add-to-cart {
  margin-top: 14px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px;
  border: none; border-radius: 999px;
  background: linear-gradient(90deg, #6d28d9, #8b5cf6);
  color: #fff; font-weight: 600; font-size: 0.92rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.add-to-cart:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(124,58,237,0.42); }

.empty-state { text-align: center; padding: 60px 0; color: var(--text-muted); font-size: 1.05rem; }

/* ---------- Features ---------- */
.features { padding: 60px 0; background: var(--surface); border-block: 1px solid var(--border); }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.feature { text-align: center; }
.feature-icon {
  width: 62px; height: 62px;
  margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  background: rgba(124,58,237,0.12);
  border-radius: 50%;
}
.feature h4 { font-size: 1.05rem; margin-bottom: 6px; }
.feature p { font-size: 0.9rem; color: var(--text-muted); }

/* ---------- Testimonials ---------- */
.testimonials { padding: 96px 0; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}
.stars { color: var(--accent-dark); letter-spacing: 2px; margin-bottom: 14px; }
.testimonial-card blockquote { font-size: 0.98rem; color: var(--text-muted); font-style: italic; margin-bottom: 20px; }
.author { display: flex; flex-direction: column; }
.author strong { font-size: 0.98rem; }
.author span { font-size: 0.85rem; color: var(--text-muted); }

/* ---------- Contact ---------- */
.contact { padding: 60px 0 96px; }
.contact-wrapper {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px;
  box-shadow: var(--shadow-sm);
}
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-icon {
  width: 46px; height: 46px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  background: rgba(124,58,237,0.12);
  border-radius: 50%;
}
.contact-item strong { display: block; font-size: 0.85rem; color: var(--text-muted); margin-bottom: 2px; }
.contact-item a { color: var(--text); font-weight: 600; }
.contact-item a:hover { color: var(--primary); }
.contact-item span { font-weight: 500; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.88rem; font-weight: 600; }
.form-group input, .form-group textarea, .form-group select {
  padding: 13px 16px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--cream);
  font-size: 0.95rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  resize: vertical;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(124,58,237,0.15);
}
.contact-form .btn { align-self: flex-start; }

/* ---------- Vendor page ---------- */
.vendor-hero { padding-top: 150px; }
.benefits { padding: 96px 0; }
.benefits .feature {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s;
}
.benefits .feature:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

/* ---------- Category pages ---------- */
.category-hero {
  position: relative;
  padding: 150px 0 60px;
  background: linear-gradient(135deg, #fdf6f8 0%, #f3e9ff 45%, #fff4e2 100%);
  overflow: hidden;
  text-align: center;
}
.category-hero .hero-emoji { font-size: 4rem; display: block; margin-bottom: 14px; }
.category-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.1;
  margin-bottom: 14px;
}
.category-hero p { font-size: 1.05rem; color: var(--text-muted); max-width: 620px; margin-inline: auto; }
.category-hero .breadcrumb { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 16px; }
.category-hero .breadcrumb a { color: var(--primary); font-weight: 600; }
.category-hero .breadcrumb a:hover { text-decoration: underline; }

/* ---------- Page header (about/contact) ---------- */
.page-hero {
  position: relative;
  padding: 150px 0 60px;
  background: linear-gradient(135deg, #fdf6f8 0%, #f3e9ff 45%, #fff4e2 100%);
  overflow: hidden;
  text-align: center;
}
.page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.1;
  margin-bottom: 14px;
}
.page-hero p { font-size: 1.05rem; color: var(--text-muted); max-width: 620px; margin-inline: auto; }
.page-body { padding: 70px 0 96px; }
.page-body .section-tag { margin-bottom: 14px; }
.page-body h2 { font-family: var(--font-head); font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 14px; }
.page-body p { color: var(--text-muted); max-width: 720px; margin-bottom: 20px; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.value-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
}
.value-card .value-icon { font-size: 2.4rem; display: block; margin-bottom: 12px; }
.value-card h3 { font-family: var(--font-head); font-size: 1.2rem; margin-bottom: 8px; }
.value-card p { font-size: 0.9rem; color: var(--text-muted); }
.about-story { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; margin-bottom: 40px; }
.about-story p { margin-bottom: 14px; }
@media (max-width: 820px) {
  .values-grid { grid-template-columns: 1fr; }
  .about-story { grid-template-columns: 1fr; gap: 24px; }
}

/* ---------- Category sub-nav ---------- */
.category-nav {
  display: flex; justify-content: center; gap: 12px; flex-wrap: wrap;
  padding: 40px 0 8px;
}
.category-nav a {
  font-size: 0.9rem; font-weight: 600;
  padding: 10px 22px;
  border-radius: 999px;
  border: 1.5px solid #dcc8ea;
  background: var(--surface);
  color: #5a4870;
  transition: all 0.2s;
}
.category-nav a:hover, .category-nav a.active { background: var(--primary); border-color: var(--primary); color: #fff; }

/* ---------- Festival offer ---------- */
.festival-banner { padding: 104px 0 0; }
.festival-banner-inner {
  display: flex; align-items: center; gap: 36px; flex-wrap: wrap;
  background: linear-gradient(120deg, #6d28d9 0%, #a855f7 45%, #f59e0b 100%);
  color: #fff; border-radius: 28px; padding: 44px 52px;
  box-shadow: var(--shadow-lg); position: relative; overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}
.festival-banner-inner::before {
  content: ""; position: absolute; top: -60%; right: -15%;
  width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.28) 0%, rgba(255,255,255,0) 70%);
  pointer-events: none;
}
.festival-banner-inner::after {
  content: ""; position: absolute; top: 0; left: -80%;
  width: 45%; height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,0.5), transparent);
  transform: skewX(-20deg);
  pointer-events: none;
  animation: festivalShine 3.4s ease-in-out infinite;
}
@keyframes festivalShine {
  0% { left: -80%; }
  55%, 100% { left: 140%; }
}
.festival-banner-inner:hover { transform: translateY(-4px) scale(1.01); box-shadow: var(--shadow-lg); }
.festival-banner-float {
  position: absolute; font-size: 2.4rem; opacity: 0.35;
  pointer-events: none; animation: festivalFloat 6s ease-in-out infinite;
}
.festival-banner-float.f1 { top: 14%; left: 20%; }
.festival-banner-float.f2 { bottom: 16%; right: 16%; font-size: 1.9rem; animation-delay: 1.6s; }
.festival-banner-float.f3 { top: 32%; right: 32%; font-size: 1.5rem; animation-delay: 3.1s; }
@keyframes festivalFloat {
  0%, 100% { transform: translateY(0) rotate(-8deg); }
  50% { transform: translateY(-16px) rotate(10deg); }
}
.festival-banner-media {
  width: 190px; height: 190px; border-radius: 26px; overflow: hidden; flex-shrink: 0;
  background: rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 6.2rem;
}
.festival-banner-media img { width: 100%; height: 100%; object-fit: cover; }
.festival-banner-copy { flex: 1; min-width: 260px; display: flex; flex-direction: column; gap: 10px; position: relative; }
.festival-flag {
  font-size: 0.95rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  background: rgba(255,255,255,0.22); padding: 7px 18px; border-radius: 999px;
  align-self: flex-start;
}
.festival-banner-title { font-family: var(--font-head); font-size: clamp(1.9rem, 3.6vw, 2.7rem); font-weight: 800; line-height: 1.15; }
.festival-banner-subtitle { font-size: 1.15rem; opacity: 0.95; transition: opacity 0.4s, transform 0.4s; }
.festival-banner-subtitle.swap { opacity: 0; transform: translateY(8px); }
.festival-banner-discount {
  display: flex; align-items: baseline; gap: 6px;
  background: rgba(255,255,255,0.95); color: #6d28d9;
  border-radius: 22px; padding: 22px 30px; font-weight: 800;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
  animation: festivalPulse 2.6s ease-in-out infinite;
}
@keyframes festivalPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 8px 24px rgba(0,0,0,0.18); }
  50% { transform: scale(1.06); box-shadow: 0 14px 36px rgba(255,255,255,0.35); }
}
.festival-banner-discount strong { font-size: 3.4rem; line-height: 1; }
.festival-banner-discount span { font-size: 1.35rem; font-weight: 800; }
.festival-banner-cta {
  font-weight: 700; background: #fff; color: #6d28d9;
  padding: 20px 38px; border-radius: 999px; font-size: 1.15rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
  transition: transform 0.2s, background 0.2s, color 0.2s;
}
.festival-banner-inner:hover .festival-banner-cta { transform: translateX(6px); }
.festival-banner-inner:hover .festival-banner-cta { background: #6d28d9; color: #fff; }

.festival-countdown {
  display: inline-flex; align-items: center; gap: 6px; flex-wrap: wrap;
  font-weight: 700; color: #fff;
  background: linear-gradient(120deg, #7c3aed, #a855f7);
  border: 1px solid rgba(255,255,255,0.35);
  padding: 9px 16px; border-radius: 999px; font-size: 1rem;
  box-shadow: 0 6px 18px rgba(124,58,237,0.35);
  width: fit-content;
}
.festival-countdown .cd-label { opacity: 0.9; font-weight: 600; }
.festival-countdown .cd-num {
  display: inline-block; min-width: 30px; text-align: center;
  background: #fff; color: #6d28d9; border-radius: 8px; padding: 2px 6px;
  font-variant-numeric: tabular-nums; font-size: 0.95rem;
}
.festival-countdown .cd-note { font-size: 0.95rem; }

.wa-btn {
  position: fixed; right: 22px; bottom: 94px; z-index: 9000;
  width: 60px; height: 60px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: #25d366; color: #fff;
  box-shadow: 0 8px 24px rgba(37,211,102,0.45);
  transition: transform 0.2s, box-shadow 0.2s;
}
.wa-btn:hover { transform: scale(1.1); box-shadow: 0 12px 30px rgba(37,211,102,0.6); }

.rakhi-banner { padding: 0 0 10px; }
.rakhi-banner-inner {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 28px; align-items: center;
  background: linear-gradient(120deg, #fdf6f8, #f3e9ff 50%, #fff4e2);
  border: 1px solid var(--border); border-radius: 24px; padding: 22px;
  box-shadow: var(--shadow-md);
}
.rakhi-banner-media {
  border-radius: 18px; overflow: hidden; min-height: 220px;
  background: linear-gradient(135deg, #f5b301, #7c3aed);
}
.rakhi-banner-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.rakhi-banner-copy { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.rakhi-banner-copy h2 { font-family: var(--font-head); font-size: clamp(1.5rem, 3vw, 2.1rem); line-height: 1.15; }
.rakhi-banner-copy p { color: var(--text-muted); max-width: 480px; }
.rakhi-banner-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-top: 4px; }
.rakhi-banner-code { font-size: 0.95rem; font-weight: 600; color: var(--primary); }
.rakhi-banner-code strong { color: var(--accent-dark); }
@media (max-width: 760px) {
  .rakhi-banner-inner { grid-template-columns: 1fr; }
  .rakhi-banner-media { min-height: 180px; }
}

.festival-hero {
  padding: 150px 0 40px;
  background: linear-gradient(135deg, #fdf6f8 0%, #f3e9ff 45%, #fff4e2 100%);
  overflow: hidden;
}
.festival-hero .breadcrumb { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 24px; }
.festival-hero .breadcrumb a { color: var(--primary); font-weight: 600; }
.festival-hero .breadcrumb a:hover { text-decoration: underline; }
.festival-hero-inner {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 48px; align-items: center;
}
.festival-hero-media {
  border-radius: 24px; overflow: hidden; background: #fff; box-shadow: var(--shadow-lg);
  min-height: 340px; display: flex; align-items: center; justify-content: center;
  font-size: 7rem; border: 1px solid var(--border);
}
.festival-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.festival-hero-copy { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }
.festival-hero-copy h1 { font-family: var(--font-head); font-size: clamp(2rem, 4.5vw, 3.1rem); line-height: 1.12; }
.festival-subtitle { font-size: 1.05rem; color: var(--text-muted); max-width: 520px; }
.festival-discount {
  display: flex; align-items: baseline; gap: 6px;
  background: linear-gradient(120deg, #7c3aed, #f59e0b);
  color: #fff; padding: 10px 22px; border-radius: 999px; font-weight: 700;
}
.festival-discount strong { font-size: 1.9rem; line-height: 1; }
.festival-discount span { font-size: 1rem; }
.festival-note { font-size: 0.92rem; color: var(--text-muted); }
.festival-note strong { color: var(--primary); }
@media (max-width: 820px) {
  .festival-hero-inner { grid-template-columns: 1fr; gap: 28px; }
  .festival-hero-media { min-height: 220px; font-size: 5rem; }
  .festival-banner-discount { display: none; }
  .festival-banner-inner { padding: 26px 22px; gap: 18px; }
  .festival-banner-media { width: 110px; height: 110px; font-size: 3.6rem; border-radius: 18px; }
  .festival-banner-title { font-size: 1.5rem; }
  .festival-banner-subtitle { font-size: 0.95rem; }
  .festival-banner-cta { padding: 13px 24px; font-size: 0.95rem; }
}

/* ---------- Footer ---------- */
.footer { background: var(--text); color: #f5ece9; padding-top: 72px; }
.footer-container { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; padding-bottom: 56px; }
.footer-brand { max-width: 320px; }
.footer-brand .logo { color: #fff; }
.footer-brand p { font-size: 0.9rem; color: rgba(245,236,233,0.6); margin-top: 14px; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(245,236,233,0.1); color: #f5ece9;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.footer-social a:hover { background: var(--primary); color: #fff; transform: translateY(-2px); }
.footer-links { display: flex; gap: 72px; flex-wrap: wrap; }
.footer-col h4 { font-family: var(--font-head); font-size: 1.1rem; margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 0.92rem; color: rgba(245,236,233,0.6); transition: color 0.2s; }
.footer-col a:hover { color: var(--primary-light); }
.footer-bottom { border-top: 1px solid rgba(245,236,233,0.12); padding: 20px 0; }
.footer-bottom p { font-size: 0.85rem; color: rgba(245,236,233,0.5); text-align: center; }

/* ---------- Cart Drawer ---------- */
.cart-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(43,31,34,0.5);
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.cart-overlay.open { opacity: 1; pointer-events: auto; }
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 210;
  width: min(420px, 92vw);
  background: var(--cream);
  box-shadow: -20px 0 60px rgba(43,31,34,0.2);
  transform: translateX(105%);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex; flex-direction: column;
}
.cart-drawer.open { transform: translateX(0); }
.cart-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 24px;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.cart-header h3 { font-family: var(--font-head); font-size: 1.3rem; }
.cart-close { font-size: 1.8rem; line-height: 1; background: none; border: none; color: var(--text-muted); transition: color 0.2s, transform 0.2s; }
.cart-close:hover { color: var(--primary); transform: rotate(90deg); }
.cart-items { flex: 1; overflow-y: auto; padding: 16px 24px; display: flex; flex-direction: column; gap: 14px; }
.cart-empty { text-align: center; color: var(--text-muted); padding: 60px 0; }
.cart-empty .cart-empty-icon { font-size: 3rem; display: block; margin-bottom: 12px; }
.cart-item {
  display: flex; gap: 14px; align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px;
}
.cart-item-thumb {
  width: 64px; height: 64px; flex-shrink: 0;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem;
}
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name { font-size: 0.92rem; font-weight: 600; line-height: 1.3; }
.cart-item-price { font-size: 0.85rem; color: var(--primary); font-weight: 600; margin-top: 2px; }
.cart-item-qty { display: flex; align-items: center; gap: 10px; margin-top: 8px; }
.qty-btn {
  width: 26px; height: 26px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border); border-radius: 8px;
  background: var(--cream); color: var(--text);
  font-size: 1rem; font-weight: 700;
  transition: all 0.2s;
}
.qty-btn:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.cart-item-qty span { font-size: 0.9rem; font-weight: 600; min-width: 20px; text-align: center; }
.cart-item-remove { background: none; border: none; color: var(--text-muted); font-size: 1.2rem; padding: 6px; transition: color 0.2s; }
.cart-item-remove:hover { color: var(--primary); }
.cart-footer { padding: 20px 24px; border-top: 1px solid var(--border); background: var(--surface); }
.cart-total { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.cart-total strong { font-family: var(--font-head); font-size: 1.4rem; color: var(--primary); }
.cart-discount {
  font-size: 0.85rem; font-weight: 600; color: #16a34a;
  background: rgba(22,163,74,0.1); border-radius: 8px;
  padding: 8px 12px; margin-bottom: 14px;
}

/* ---------- Toast ---------- */
.toast {
  position: fixed; bottom: 28px; left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--text); color: #fff;
  padding: 14px 26px;
  border-radius: 999px;
  font-size: 0.92rem; font-weight: 500;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transition: transform 0.35s, opacity 0.35s;
  z-index: 300;
  pointer-events: none;
  max-width: 90vw; text-align: center;
}
.toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .categories-grid, .products-grid { grid-template-columns: repeat(3, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 820px) {
  .nav-links {
    position: fixed; top: 84px; right: 0; bottom: 0;
    width: min(300px, 80vw);
    flex-direction: column; gap: 8px;
    background: var(--surface);
    padding: 32px;
    box-shadow: -20px 0 60px rgba(43,31,34,0.15);
    transform: translateX(105%);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1.1rem; padding: 10px 0; }
  .nav-dropdown { position: static; }
  .dropdown-menu {
    position: static; transform: none;
    opacity: 1; pointer-events: auto;
    box-shadow: none; border: none;
    padding: 0 0 4px 16px; margin: 0;
    min-width: 0;
  }
  .dropdown-menu a { font-size: 1rem; padding: 8px 0; }
  .menu-toggle { display: flex; }
  .categories-grid, .products-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-wrapper { grid-template-columns: 1fr; padding: 32px; }
  .hero { min-height: auto; padding-top: 120px; }
  .hero-stats { gap: 28px; }
}
@media (max-width: 520px) {
  .categories-grid, .products-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .shop-toolbar { flex-direction: column; align-items: stretch; }
  .search-box { max-width: 100%; }
}

/* ---------- WordPress admin bar fix ---------- */
body.admin-bar .navbar { top: 32px; }
@media (max-width: 782px) { body.admin-bar .navbar { top: 46px; } }

/* ---------- Checkout modal ---------- */
.checkout-overlay {
  position: fixed; inset: 0; z-index: 220;
  background: rgba(36, 26, 48, 0.6);
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.checkout-overlay.open { opacity: 1; pointer-events: auto; }
.checkout-modal {
  position: fixed; top: 50%; left: 50%; z-index: 230;
  width: min(520px, 92vw);
  max-height: 90vh;
  overflow-y: auto;
  background: var(--cream);
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(36, 26, 48, 0.4);
  transform: translate(-50%, -48%) scale(0.96);
  opacity: 0; pointer-events: none;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s;
}
.checkout-modal.open { transform: translate(-50%, -50%) scale(1); opacity: 1; pointer-events: auto; }
.checkout-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 26px;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  border-radius: 20px 20px 0 0;
}
.checkout-header h3 { font-family: var(--font-head); font-size: 1.4rem; }
.checkout-body { padding: 26px; }
.order-summary {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px 18px;
  margin-bottom: 20px;
  font-size: 0.92rem;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.order-summary .os-row { display: flex; justify-content: space-between; gap: 12px; }
.order-summary .os-name { font-weight: 600; }
.order-summary .os-muted { color: var(--text-muted); }
.checkout-form { display: flex; flex-direction: column; gap: 14px; }
.checkout-total {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 6px;
}
.checkout-total span { font-size: 0.92rem; color: var(--text-muted); }
.checkout-total strong { font-family: var(--font-head); font-size: 1.5rem; color: var(--primary); }
.checkout-success { text-align: center; padding: 20px 0 6px; }
.checkout-success-icon { font-size: 3.4rem; display: block; margin-bottom: 12px; }
.checkout-success h4 { font-family: var(--font-head); font-size: 1.4rem; margin-bottom: 8px; }
.checkout-success p { color: var(--text-muted); margin-bottom: 20px; }
#placeOrderBtn:disabled { opacity: 0.6; cursor: wait; }

.form-section-title {
  font-family: var(--font-head);
  font-size: 1rem;
  margin: 6px 0 0;
  color: var(--text);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.payment-methods { display: flex; flex-direction: column; gap: 8px; }
.payment-option {
  display: flex; align-items: center; gap: 10px;
  border: 1.5px solid var(--border, #e2e8f0);
  border-radius: 10px; padding: 10px 12px;
  cursor: pointer; transition: border-color .2s, background .2s;
}
.payment-option:hover { border-color: var(--primary); }
.payment-option input { accent-color: var(--primary); }
.payment-option.selected { border-color: var(--primary); background: color-mix(in srgb, var(--primary) 6%, transparent); }
.payment-option:has(input:checked) { border-color: var(--primary); background: color-mix(in srgb, var(--primary) 6%, transparent); }
.midnight-option span { font-size: 0.88rem; font-weight: 600; }
.midnight-option .midnight-note { font-size: 0.8rem; font-weight: 400; color: var(--muted, #64748b); margin-top: 2px; }
@media (max-width: 520px) {
  .form-row { grid-template-columns: 1fr; }
}

/* ---------- Product detail pages ---------- */
.product-card-link { color: inherit; }
.product-card-link:hover .product-name { color: var(--primary); }
.product-media a { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; }

.product-hero { text-align: left; }
.product-detail {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 48px; align-items: center;
  text-align: left; margin-top: 30px;
}
.product-detail-media {
  aspect-ratio: 1 / 1;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  position: relative;
}
.product-detail-emoji { font-size: 7rem; filter: drop-shadow(0 12px 22px rgba(0,0,0,0.14)); }
.product-detail-img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius); }
.product-detail-info h1 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1.15;
  margin: 8px 0 14px;
}
.product-detail-desc { color: var(--text-muted); margin-bottom: 18px; }
.product-detail-actions { display: flex; align-items: center; gap: 14px; margin-top: 20px; flex-wrap: wrap; }
.qty-selector {
  display: flex; align-items: center; gap: 4px;
  border: 1.5px solid var(--border);
  border-radius: 999px; padding: 4px;
  background: var(--surface);
}
.qty-selector button {
  width: 36px; height: 36px; border: none; border-radius: 50%;
  background: var(--cream); font-size: 1.15rem; font-weight: 700;
  cursor: pointer; transition: background 0.2s;
}
.qty-selector button:hover { background: var(--primary); color: #fff; }
.qty-selector span { min-width: 32px; text-align: center; font-weight: 700; }
.product-detail-actions .add-to-cart { margin-top: 0; padding: 12px 28px; font-size: 1rem; }
.product-detail-actions .btn-outline { margin-top: 0; padding: 12px 24px; }
.product-perks {
  display: flex; flex-wrap: wrap; gap: 16px;
  margin-top: 26px; padding-top: 22px;
  border-top: 1px solid var(--border);
  font-size: 0.88rem; color: var(--text-muted);
}
.product-perks span { display: flex; align-items: center; gap: 6px; }

.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px 24px;
}
.faq-item summary {
  cursor: pointer; font-weight: 600; font-size: 1rem;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.4rem; color: var(--primary); transition: transform 0.2s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { color: var(--text-muted); margin-top: 12px; font-size: 0.94rem; }

@media (max-width: 820px) {
  .product-detail { grid-template-columns: 1fr; gap: 28px; }
  .product-detail-media { max-width: 420px; margin-inline: auto; }
}

/* Cookie consent banner */
.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 9999;
  max-width: 680px;
  margin-inline: auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 18px 20px;
  transform: translateY(calc(100% + 24px));
  opacity: 0;
  transition: transform 0.45s ease, opacity 0.45s ease;
  pointer-events: none;
}
.cookie-banner.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.cookie-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-banner-text {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  flex: 1 1 300px;
}
.cookie-banner-icon { font-size: 1.4rem; line-height: 1.3; }
.cookie-banner-text p { font-size: 0.9rem; color: var(--text-muted); }
.cookie-banner-text a { color: var(--primary); font-weight: 600; }
.cookie-banner-actions { display: flex; gap: 10px; }
.cookie-btn {
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 999px;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.cookie-btn-primary { background: var(--primary); color: #fff; }
.cookie-btn-primary:hover { background: var(--primary-dark); }
.cookie-btn-ghost { background: transparent; color: var(--text); border-color: var(--border); }
.cookie-btn-ghost:hover { background: var(--cream); }

@media (max-width: 520px) {
  .cookie-banner-inner { flex-direction: column; align-items: stretch; text-align: center; }
  .cookie-banner-text { justify-content: center; }
  .cookie-banner-actions { justify-content: center; }
}

/* ---------- Stock, sizes, online payments ---------- */
.product-buy { display: flex; align-items: center; gap: 10px; margin-top: 4px; }
.product-buy .add-to-cart { margin-top: 0; flex: 1; }
.add-to-cart:disabled { background: #cbd5e1; color: #64748b; cursor: not-allowed; transform: none; box-shadow: none; }
.product-size {
  padding: 9px 8px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  background: #fff;
  color: var(--text);
  cursor: pointer;
}
.stock-note { font-size: 0.78rem; font-weight: 600; color: #b45309; }
.stock-line { font-size: 0.85rem; font-weight: 600; margin-top: 10px; }
.stock-line.ok { color: #15803d; }
.stock-line.low { color: #b45309; }
.stock-line.out { color: #b91c1c; }
.size-selector { display: flex; align-items: center; gap: 8px; margin-top: 16px; flex-wrap: wrap; }
.size-label { font-size: 0.85rem; font-weight: 600; color: var(--text-muted); }
.size-btn {
  padding: 8px 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  background: #fff;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s;
}
.size-btn:hover { border-color: var(--primary); color: var(--primary); }
.size-btn.selected { background: var(--primary); border-color: var(--primary); color: #fff; }
.size-btn .size-btn-price { display: block; font-size: 0.72rem; font-weight: 600; opacity: 0.75; margin-top: 2px; }
.size-btn.selected .size-btn-price { opacity: 0.9; }
.cart-item-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.cart-item-size {
  padding: 5px 6px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 0.8rem;
  font-family: inherit;
  font-weight: 600;
  background: #fff;
  cursor: pointer;
}
.payment-option.disabled { opacity: 0.55; }
.payment-option.disabled input { cursor: not-allowed; }
.payment-note { font-size: 0.78rem; color: #b91c1c; font-weight: 500; width: 100%; }

.upi-body { text-align: center; }
.upi-qr-wrap {
  display: inline-block;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 10px;
  margin-bottom: 16px;
}
.upi-qr-wrap img { display: block; width: 220px; height: 220px; border-radius: 6px; }
.upi-official-wrap { margin-top: 4px; }
.upi-official-wrap .upi-sub { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 8px; }
.upi-official-wrap .upi-qr-wrap { padding: 8px; margin-bottom: 8px; }
.upi-official-wrap #upiOfficialQr { width: 170px; height: 170px; }
.upi-id { font-size: 0.95rem; margin: 6px 0 4px; }
.upi-note { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 16px; }

/* ---------- International (Send Gifts to India) ---------- */
.intl-flag { font-size: 2.6rem; line-height: 1; }
.country-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; margin-top: 8px; }
.country-card {
  display: block;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 26px 22px;
  text-align: center;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.country-card:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(124, 58, 237, 0.12); border-color: var(--primary); }
.country-card .intl-flag { display: block; margin-bottom: 12px; }
.country-card h3 { margin: 0 0 6px; color: var(--text); }
.country-card p { margin: 0; font-size: 0.85rem; color: var(--text-muted); }
.occasion-slider { position: relative; margin-top: 10px; }
.slider-viewport { overflow: hidden; border-radius: 24px; box-shadow: var(--shadow-lg); }
.slider-track { display: flex; transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1); }
.slide { position: relative; flex: 0 0 100%; min-width: 100%; display: block; text-decoration: none; }
.slide img { width: 100%; height: 100%; display: block; object-fit: cover; aspect-ratio: 21 / 9; }
.slide-overlay {
  position: absolute; inset: auto 0 0 0; padding: 30px 34px;
  background: linear-gradient(to top, rgba(15, 10, 35, 0.82), rgba(15, 10, 35, 0.25) 55%, transparent);
  color: #fff; display: flex; flex-direction: column; gap: 4px; align-items: flex-start;
}
.slide-overlay .slide-emoji { font-size: 1.6rem; line-height: 1; }
.slide-overlay h3 { margin: 0; font-family: var(--font-head); font-size: clamp(1.4rem, 3vw, 2.1rem); color: #fff; }
.slide-overlay p { margin: 0; font-size: 0.95rem; color: rgba(255, 255, 255, 0.85); }
.slider-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 44px; height: 44px; border-radius: 50%; border: none; cursor: pointer;
  background: rgba(255, 255, 255, 0.9); color: var(--text);
  font-size: 1.4rem; line-height: 1; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25); transition: background 0.2s, color 0.2s;
}
.slider-arrow:hover { background: var(--primary); color: #fff; }
.slider-arrow.slider-prev { left: 14px; }
.slider-arrow.slider-next { right: 14px; }
.slider-dots { display: flex; justify-content: center; gap: 8px; margin-top: 16px; }
.slider-dot {
  width: 10px; height: 10px; border-radius: 50%; border: none; cursor: pointer;
  background: rgba(124, 58, 237, 0.3); transition: background 0.2s, transform 0.2s; padding: 0;
}
.slider-dot.active { background: var(--primary); transform: scale(1.3); }
@media (max-width: 640px) {
  .slide img { aspect-ratio: 16 / 10; }
  .slide-overlay { padding: 18px; }
  .slide-overlay h3 { font-size: 1.2rem; }
  .slider-arrow { width: 36px; height: 36px; font-size: 1.1rem; }
}
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 18px; margin-top: 8px; }
.step-card { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 24px 20px 20px; }
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 12px;
}
.step-card h4 { margin: 0 0 6px; }
.step-card p { margin: 0; font-size: 0.88rem; color: var(--text-muted); }
.faq-list { max-width: 860px; margin: 0 auto; display: grid; gap: 12px; }
.faq-item { background: #fff; border: 1px solid var(--border); border-radius: 14px; overflow: hidden; }
.faq-item summary { cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 10px; padding: 16px 18px; font-weight: 600; font-size: 0.95rem; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.3rem; color: var(--primary); transition: transform 0.2s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { margin: 0; padding: 0 18px 16px; font-size: 0.88rem; color: var(--text-muted); }
.intl-banner {
  margin-top: 70px;
  padding: 70px 0;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
}
.intl-banner .container { display: grid; gap: 18px; text-align: center; justify-items: center; }
.intl-banner h2 { margin: 0; font-size: clamp(1.6rem, 3vw, 2.3rem); }
.intl-banner p { margin: 0; max-width: 640px; opacity: 0.92; }

/* Chatbot widget */
.chatbot-fab {
  position: fixed; right: 22px; bottom: 22px; z-index: 9999;
  width: 58px; height: 58px; border-radius: 50%; border: none; cursor: pointer;
  background: var(--primary, #7c3aed); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 28px rgba(124, 58, 237, 0.45);
  transition: transform 0.2s, box-shadow 0.2s;
}
.chatbot-fab:hover { transform: translateY(-3px) scale(1.04); }
.chatbot-fab svg { width: 26px; height: 26px; }
.chatbot-fab.active svg { display: none; }
.chatbot-fab.active::after { content: "\00d7"; font-size: 1.6rem; line-height: 1; }
.chatbot-fab .fab-badge {
  position: absolute; top: 2px; right: 2px; width: 12px; height: 12px;
  border-radius: 50%; background: #22c55e; border: 2px solid #fff;
}
.chatbot-widget {
  position: fixed; right: 22px; bottom: 94px; z-index: 10000;
  width: 360px; max-width: calc(100vw - 32px); height: 480px; max-height: calc(100vh - 120px);
  background: #fff; border: 1px solid var(--border, #e5e7eb); border-radius: 18px;
  display: flex; flex-direction: column; overflow: hidden;
  box-shadow: 0 24px 60px rgba(15, 10, 35, 0.25);
  opacity: 0; visibility: hidden; transform: translateY(16px) scale(0.98);
  transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
}
.chatbot-widget.open { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.chatbot-header {
  display: flex; align-items: center; gap: 10px; padding: 14px 16px;
  background: linear-gradient(135deg, var(--primary, #7c3aed), #a855f7); color: #fff;
}
.chatbot-avatar {
  width: 38px; height: 38px; border-radius: 50%; background: rgba(255, 255, 255, 0.22);
  display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1.05rem;
}
.chatbot-title { flex: 1; display: flex; flex-direction: column; line-height: 1.2; }
.chatbot-title strong { font-size: 0.95rem; }
.chatbot-status { font-size: 0.75rem; opacity: 0.92; display: flex; align-items: center; gap: 5px; }
.chatbot-status i {
  width: 8px; height: 8px; border-radius: 50%; background: #4ade80;
  box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7); animation: chatPulse 1.6s infinite;
}
@keyframes chatPulse {
  0% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7); }
  70% { box-shadow: 0 0 0 7px rgba(74, 222, 128, 0); }
  100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}
.chatbot-close {
  background: transparent; border: none; color: #fff; font-size: 1.5rem; line-height: 1;
  cursor: pointer; padding: 4px; border-radius: 8px;
}
.chatbot-close:hover { background: rgba(255, 255, 255, 0.2); }
.chatbot-body {
  flex: 1; overflow-y: auto; padding: 16px; display: flex; flex-direction: column; gap: 10px;
  background: #faf9fe;
}
.chat-msg { display: flex; }
.chat-msg.user { justify-content: flex-end; }
.chat-msg.bot { justify-content: flex-start; }
.chat-bubble {
  max-width: 82%; padding: 10px 14px; border-radius: 16px;
  font-size: 0.88rem; line-height: 1.5; word-break: break-word;
}
.chat-msg.user .chat-bubble { background: var(--primary, #7c3aed); color: #fff; border-bottom-right-radius: 4px; }
.chat-msg.bot .chat-bubble { background: #fff; color: var(--text, #1f2937); border: 1px solid var(--border, #e5e7eb); border-bottom-left-radius: 4px; }
.chat-link {
  display: inline-block; margin-top: 4px; padding: 8px 14px; border-radius: 10px;
  background: var(--primary, #7c3aed); color: #fff; text-decoration: none; font-size: 0.85rem; font-weight: 600;
}
.chat-link:hover { background: #6d28d9; }
.chat-msg.bot.typing .chat-bubble { display: flex; gap: 5px; align-items: center; padding: 14px; }
.chat-msg.bot.typing .chat-bubble span {
  width: 7px; height: 7px; border-radius: 50%; background: #c4b5fd; animation: chatBlink 1.2s infinite;
}
.chat-msg.bot.typing .chat-bubble span:nth-child(2) { animation-delay: 0.2s; }
.chat-msg.bot.typing .chat-bubble span:nth-child(3) { animation-delay: 0.4s; }
@keyframes chatBlink { 0%, 100% { opacity: 0.3; } 50% { opacity: 1; } }
.chatbot-quick {
  display: flex; flex-wrap: wrap; gap: 8px; padding: 8px 14px 4px; border-top: 1px solid var(--border, #e5e7eb); background: #fff;
}
.chat-chip {
  border: 1px solid var(--primary, #7c3aed); color: var(--primary, #7c3aed); background: #fff;
  border-radius: 999px; padding: 6px 12px; font-size: 0.78rem; font-weight: 600; cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.chat-chip:hover { background: var(--primary, #7c3aed); color: #fff; }
.chatbot-input { display: flex; gap: 8px; padding: 12px 14px; border-top: 1px solid var(--border, #e5e7eb); background: #fff; }
.chatbot-input input {
  flex: 1; border: 1px solid var(--border, #e5e7eb); border-radius: 10px; padding: 10px 12px; font-size: 0.88rem; outline: none;
}
.chatbot-input input:focus { border-color: var(--primary, #7c3aed); }
.chatbot-input button {
  background: var(--primary, #7c3aed); color: #fff; border: none; border-radius: 10px;
  padding: 0 16px; font-weight: 600; cursor: pointer; font-size: 0.85rem;
}
.chatbot-input button:hover { background: #6d28d9; }
@media (max-width: 640px) {
  .chatbot-fab { right: 16px; bottom: 16px; width: 54px; height: 54px; }
  .wa-btn { right: 16px; bottom: 80px; width: 54px; height: 54px; }
  .chatbot-widget { right: 12px; bottom: 80px; width: calc(100vw - 24px); height: min(480px, 70vh); }
}

/* Blog */
.blog-meta { font-size: 0.8rem; color: var(--text-muted); display: flex; gap: 6px; flex-wrap: wrap; align-items: center; margin-top: 12px; }
.blog-card .blog-meta { justify-content: center; }
.blog-hero { padding: 48px 0 10px; }
.blog-article { padding: 40px 0 10px; background: #fff; }
.blog-article-container { max-width: 780px; }
.blog-article p { font-size: 1rem; line-height: 1.8; color: var(--text); margin: 0 0 18px; }
.blog-article h2 { font-family: var(--font-head); font-size: clamp(1.4rem, 2.5vw, 1.9rem); margin: 34px 0 14px; color: var(--text); }
.blog-article h3 { font-size: 1.15rem; margin: 24px 0 10px; color: var(--text); }
.blog-article ul { margin: 0 0 18px; padding-left: 22px; }
.blog-article ul li { font-size: 1rem; line-height: 1.8; color: var(--text); margin-bottom: 8px; }
.blog-article .steps-grid { margin-bottom: 24px; }
.blog-article .faq { margin-top: 34px; }
.blog-article .faq .section-header { margin-bottom: 22px; }

/* ---------- Ratings & reviews ---------- */
.product-rating { display: flex; align-items: center; gap: 6px; margin: 6px 0 8px; font-size: 0.85rem; }
.stars { display: inline-flex; gap: 1px; color: var(--accent); }
.star { font-size: 0.95rem; }
.star-off { color: #d9cfe3; }
.rating-num { font-weight: 700; color: var(--text); }
.rating-count { color: var(--text-muted); font-size: 0.8rem; }
.reviews-wrap { max-width: 760px; margin: 0 auto; display: grid; gap: 28px; }
.review-score {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 22px; flex-wrap: wrap;
}
.review-big { font-family: var(--font-head); font-size: 2.4rem; font-weight: 800; color: var(--text); }
.review-score .stars { font-size: 1.2rem; }
.review-count { color: var(--text-muted); font-size: 0.85rem; width: 100%; text-align: center; }
.review-list { display: grid; gap: 14px; }
.review-item {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 14px; padding: 18px 20px;
}
.review-head { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.review-avatar {
  width: 40px; height: 40px; border-radius: 50%; flex: none;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--accent)); color: #fff;
  font-weight: 700; font-size: 1rem;
}
.review-head > div { display: flex; flex-direction: column; gap: 2px; flex: 1; }
.review-head > div strong { font-size: 0.95rem; }
.review-head .stars { font-size: 0.8rem; }
.review-date { color: var(--text-muted); font-size: 0.78rem; }
.review-item p { color: var(--text-muted); font-size: 0.92rem; line-height: 1.6; }
.review-form {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px;
  display: flex; flex-direction: column; gap: 14px;
}
.review-form h3 { font-family: var(--font-head); font-size: 1.15rem; }
.review-form input, .review-form select, .review-form textarea {
  width: 100%; padding: 12px 14px;
  border: 1.5px solid var(--border); border-radius: 12px;
  font-family: inherit; font-size: 0.95rem; color: var(--text); background: #fff;
}
.review-form textarea { resize: vertical; }
.review-form .btn { align-self: flex-start; }

/* ---------- Wishlist ---------- */
.wish-heart {
  position: absolute; top: 10px; right: 10px; z-index: 2;
  width: 38px; height: 38px; border-radius: 50%;
  border: none; cursor: pointer;
  background: rgba(255, 255, 255, 0.92); color: var(--text-muted);
  font-size: 1.1rem; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(43, 31, 34, 0.18);
  transition: transform 0.2s, color 0.2s, background 0.2s;
}
.wish-heart:hover { transform: scale(1.12); color: #e11d48; }
.wish-heart.active { color: #fff; background: #e11d48; }
.wish-heart-lg {
  position: static; width: 46px; height: 46px;
  font-size: 1.25rem; border: 1.5px solid var(--border);
  background: var(--surface);
}
.wish-add { padding: 8px 14px; font-size: 0.8rem; flex: 1; justify-content: center; }
.wish-drawer .cart-item { align-items: center; }
.wish-btn {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  width: 46px; height: 46px;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 50%;
  color: var(--text);
  transition: all 0.25s;
}
.wish-btn svg { transition: fill 0.2s; }
.wish-btn:hover { background: #e11d48; border-color: #e11d48; }
.wish-badge {
  position: absolute; top: -4px; right: -4px;
  min-width: 20px; height: 20px;
  display: flex; align-items: center; justify-content: center;
  background: #e11d48; color: #fff;
  font-size: 0.68rem; font-weight: 700;
  border-radius: 50%; padding: 0 4px;
}
.wish-badge:empty { display: none; }

/* ---------- Order tracking ---------- */
.track-form {
  display: flex; gap: 12px; flex-wrap: wrap;
  max-width: 560px; margin: 0 auto 28px;
}
.track-form input {
  flex: 1; min-width: 220px; padding: 14px 16px;
  border: 1.5px solid var(--border); border-radius: 12px;
  font-family: inherit; font-size: 1rem; color: var(--text); background: #fff;
}
.track-form .btn { padding: 14px 28px; }
.track-card {
  max-width: 620px; margin: 0 auto;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm);
}
.track-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; margin-bottom: 20px; }
.track-head h3 { font-family: var(--font-head); font-size: 1.3rem; }
.track-meta { color: var(--text-muted); font-size: 0.85rem; margin-top: 4px; }
.track-status {
  background: rgba(124, 58, 237, 0.12); color: var(--primary);
  font-weight: 700; font-size: 0.8rem; padding: 6px 14px; border-radius: 999px; white-space: nowrap;
}
.track-steps { display: flex; align-items: center; margin-bottom: 18px; }
.track-step {
  flex: 1; display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: var(--text-muted); font-size: 0.75rem; font-weight: 600; text-align: center; position: relative;
}
.track-step::before {
  content: ""; position: absolute; top: 16px; left: -50%; right: 50%;
  height: 2px; background: var(--border); z-index: 0;
}
.track-step:first-child::before { display: none; }
.track-step.done { color: var(--primary); }
.track-step.done::before { background: var(--primary); }
.track-step-icon {
  position: relative; z-index: 1;
  width: 32px; height: 32px; border-radius: 50%;
  background: #fff; border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center; font-size: 0.95rem;
}
.track-step.done .track-step-icon { border-color: var(--primary); background: rgba(124, 58, 237, 0.08); }
.track-note { color: var(--text-muted); font-size: 0.92rem; }
.track-none {
  max-width: 620px; margin: 0 auto; text-align: center; color: var(--text-muted);
  background: var(--surface); border: 1px dashed var(--border);
  border-radius: var(--radius); padding: 26px;
}
@media (max-width: 520px) {
  .track-steps { flex-direction: column; gap: 10px; align-items: stretch; }
  .track-step::before { display: none; }
  .track-step { flex-direction: row; justify-content: flex-start; gap: 10px; }
}


/* =========================================================
   Mobile UX — Android & iOS
   ========================================================= */
:root { --mnav-h: 60px; }

/* Kill tap-highlight flash and double-tap-zoom lag on touch */
a, button, .menu-toggle, .cart-btn, .qty-selector button, .size-btn,
.slider-arrow, .slider-dot, .cookie-btn, .mnav-item, .chatbot-fab, .wa-btn {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

/* Anchor targets clear the fixed navbar when navigated to */
main [id], .hero [id] { scroll-margin-top: 120px; }

/* ---------- Mobile bottom navigation bar ---------- */
.mnav {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 200;
  display: none;
  height: calc(var(--mnav-h) + env(safe-area-inset-bottom));
  padding-bottom: env(safe-area-inset-bottom);
  background: rgba(255, 255, 255, 0.97);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--border);
  box-shadow: 0 -8px 24px rgba(43, 31, 34, 0.08);
}
.mnav-inner { display: flex; align-items: stretch; height: var(--mnav-h); }
.mnav-item {
  position: relative;
  flex: 1;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px;
  font-size: 0.72rem; font-weight: 600; color: var(--text-muted);
}
.mnav-item svg { width: 22px; height: 22px; }
.mnav-item:active { color: var(--primary); }
.mnav-badge {
  position: absolute; top: 6px; right: calc(50% - 26px);
  min-width: 18px; height: 18px;
  display: flex; align-items: center; justify-content: center;
  background: var(--primary); color: #fff;
  font-size: 0.65rem; font-weight: 700; border-radius: 999px; padding: 0 4px;
}
.mnav-badge.hidden { display: none; }

@media (max-width: 640px) {
  .mnav { display: block; }
  body { padding-bottom: calc(var(--mnav-h) + env(safe-area-inset-bottom)); }

  /* Tighter navbar so content gets more screen space */
  .navbar { padding-top: env(safe-area-inset-top); }
  .nav-container { height: 68px; }
  .logo { font-size: 1.5rem; }
  .logo-mark { width: 56px; height: 47px; }
  .cart-btn { width: 42px; height: 42px; }
  .nav-links { top: calc(68px + env(safe-area-inset-top)); padding-bottom: calc(var(--mnav-h) + env(safe-area-inset-bottom) + 16px); }
  .menu-toggle span { width: 26px; height: 3px; }
  .hero { padding-top: 96px; }

  /* iOS zooms in when a form control is focused if its font-size < 16px */
  input, select, textarea { font-size: 16px; }
  .chatbot-input input { font-size: 16px; }
  .product-size, .cart-item-size { min-height: 44px; font-size: 16px; }

  /* Touch targets: at least 44x44px */
  .qty-selector button { width: 44px; height: 44px; }
  .qty-selector { padding: 6px; }
  .size-btn { min-width: 44px; min-height: 44px; padding: 10px 16px; }
  .slider-dot { width: 14px; height: 14px; }

  /* Keep fixed widgets above the bottom nav */
  .chatbot-fab { right: 16px; bottom: calc(var(--mnav-h) + 12px + env(safe-area-inset-bottom)); width: 54px; height: 54px; }
  .chatbot-widget { right: 12px; bottom: calc(var(--mnav-h) + 12px + env(safe-area-inset-bottom)); width: calc(100vw - 24px); height: min(480px, calc(70vh - var(--mnav-h))); }
  .wa-btn { display: none; }
  .cookie-banner { bottom: calc(var(--mnav-h) + 12px + env(safe-area-inset-bottom)); }
  .toast { bottom: calc(var(--mnav-h) + 20px + env(safe-area-inset-bottom)); }

  /* Product detail actions take full width on small screens */
  .product-detail-actions .add-to-cart { flex: 1; justify-content: center; }
}

