/* =============================================
   UJOOBA BEAUTY - AI Theme CSS
   Primary: #b42763 | Secondary: #660831
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,600&family=Jost:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
  --primary: #b42763;
  --primary-light: #d4568a;
  --primary-dark: #8a1e4c;
  --secondary: #660831;
  --dark: #262A36;
  --white: #ffffff;
  --black: #000000;
  --pastel-pink: #fce8f0;
  --pastel-rose: #fdf0f5;
  --pastel-peach: #fef5ee;
  --glass-bg: rgba(255,255,255,0.65);
  --glass-border: rgba(180,39,99,0.15);
  --glass-shadow: 0 8px 32px rgba(102,8,49,0.12);
  --text-main: #262A36;
  --text-muted: #7a7a8c;
  --text-light: #b0afc0;
  --gradient-main: linear-gradient(135deg, #b42763 0%, #660831 100%);
  --gradient-soft: linear-gradient(135deg, #fce8f0 0%, #fdf0f5 100%);
  --gradient-hero: linear-gradient(135deg, rgba(180,39,99,0.85) 0%, rgba(102,8,49,0.90) 100%);
  --shadow-sm: 0 2px 12px rgba(180,39,99,0.10);
  --shadow-md: 0 8px 30px rgba(180,39,99,0.15);
  --shadow-lg: 0 20px 60px rgba(102,8,49,0.18);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  --font-display: 'Cormorant Garamond', serif;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Jost', sans-serif;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ---- AI Particle Background ---- */
.ai-particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.ai-particles span {
  position: absolute;
  display: block;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.04;
  animation: floatParticle linear infinite;
}

@keyframes floatParticle {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 0.06; }
  90% { opacity: 0.06; }
  100% { transform: translateY(-10vh) scale(1.5); opacity: 0; }
}

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--pastel-rose); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 10px; }

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); line-height: 1.2; color: var(--dark); }
h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }
p { line-height: 1.75; color: var(--text-muted); }
a { text-decoration: none; color: inherit; transition: var(--transition); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: var(--transition-bounce);
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  transform: translateX(-100%);
  transition: var(--transition);
}
.btn:hover::before { transform: translateX(0); }

.btn-primary {
  background: var(--gradient-main);
  color: var(--white);
  box-shadow: 0 6px 25px rgba(180,39,99,0.35);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(180,39,99,0.45);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
}

.btn-white {
  background: var(--white);
  color: var(--primary);
  box-shadow: 0 6px 25px rgba(0,0,0,0.15);
}
.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.2);
}

.btn-sm { padding: 9px 20px; font-size: 0.8rem; }
.btn-lg { padding: 16px 44px; font-size: 1rem; }

/* ---- Glass Card ---- */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  box-shadow: var(--glass-shadow);
}

/* ---- Section Utilities ---- */
.section { padding: 90px 0; }
.section-sm { padding: 60px 0; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 20px; }
.container-fluid { max-width: 100%; padding: 0 40px; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--pastel-pink);
  color: var(--primary);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-tag svg { width: 14px; height: 14px; }

.section-header { margin-bottom: 50px; }
.section-header.center { text-align: center; }
.section-header h2 { margin-bottom: 14px; }
.section-header p { max-width: 560px; }
.section-header.center p { margin: 0 auto; }

/* Divider line */
.section-divider {
  width: 60px;
  height: 3px;
  background: var(--gradient-main);
  border-radius: 10px;
  margin: 14px 0 20px;
}
.center .section-divider { margin: 14px auto 20px; }

/* ---- Animations ---- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes slideLeft {
  from { transform: translateX(60px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}
@keyframes slideRight {
  from { transform: translateX(-60px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}
@keyframes scaleIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes pulse-ring {
  0% { transform: scale(0.8); opacity: 1; }
  100% { transform: scale(2); opacity: 0; }
}
@keyframes rotateGlow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
@keyframes morphBg {
  0%, 100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
  50% { border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%; }
}

.animate-fadeUp { animation: fadeUp 0.7s ease forwards; }
.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }
.animate-delay-5 { animation-delay: 0.5s; }

[data-aos] { opacity: 0; transition: opacity 0.7s ease, transform 0.7s ease; }
[data-aos="fade-up"] { transform: translateY(30px); }
[data-aos="fade-left"] { transform: translateX(30px); }
[data-aos="fade-right"] { transform: translateX(-30px); }
[data-aos].aos-animate { opacity: 1; transform: none; }

/* ============================
   NAVBAR
   ============================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(180,39,99,0.12);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.navbar-logo img {
  height: 52px;
  transition: var(--transition);
  filter: drop-shadow(0 2px 8px rgba(180,39,99,0.2));
}
.navbar.scrolled .navbar-logo img { height: 44px; }

.navbar-nav {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 6px;
}

.navbar-nav .nav-item { position: relative; }

.navbar-nav .nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--dark);
  border-radius: 8px;
  transition: var(--transition);
  letter-spacing: 0.02em;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary);
  background: var(--pastel-pink);
}
.navbar-nav .nav-link svg { width: 14px; height: 14px; transition: var(--transition); }
.navbar-nav .nav-item:hover .nav-link svg { transform: rotate(180deg); }

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 200px;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--glass-border);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  padding: 10px;
  z-index: 100;
}

.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  font-size: 0.875rem;
  color: var(--dark);
  border-radius: 8px;
  transition: var(--transition);
  font-weight: 500;
}
.nav-dropdown a:hover {
  background: var(--pastel-pink);
  color: var(--primary);
  padding-left: 20px;
}

.navbar-cta { display: flex; align-items: center; gap: 12px; }

/* Mobile Menu Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.mobile-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--dark);
  border-radius: 4px;
  transition: var(--transition);
}
.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(30px);
  z-index: 999;
  padding: 80px 30px 30px;
  transition: var(--transition);
  overflow-y: auto;
  box-shadow: -10px 0 40px rgba(0,0,0,0.15);
}
.mobile-menu.open { right: 0; }
.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 998;
  backdrop-filter: blur(4px);
}
.mobile-menu-overlay.open { display: block; }

.mobile-menu .nav-link {
  display: block;
  padding: 12px 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
  border-bottom: 1px solid var(--pastel-pink);
}
.mobile-menu .nav-link:hover { color: var(--primary); padding-left: 10px; }

.mobile-sub-links { padding: 8px 0 8px 20px; }
.mobile-sub-links a {
  display: block;
  padding: 7px 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.mobile-sub-links a:hover { color: var(--primary); }

/* ============================
   HERO SLIDER
   ============================ */
.hero-slider {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
}
.hero-slide.active { opacity: 1; z-index: 2; }

.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  transition: transform 7s ease;
}
.hero-slide.active .hero-slide-bg { transform: scale(1); }

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(102,8,49,0.85) 0%, rgba(180,39,99,0.55) 50%, rgba(0,0,0,0.1) 100%);
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 650px;
  color: var(--white);
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease 0.3s, transform 0.6s ease 0.3s;
}
.hero-slide.active .hero-tag { opacity: 1; transform: translateY(0); }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 18px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease 0.5s, transform 0.7s ease 0.5s;
}
.hero-slide.active .hero-title { opacity: 1; transform: translateY(0); }

.hero-subtitle {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.88);
  margin-bottom: 34px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease 0.7s, transform 0.7s ease 0.7s;
}
.hero-slide.active .hero-subtitle { opacity: 1; transform: translateY(0); }

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease 0.9s, transform 0.7s ease 0.9s;
}
.hero-slide.active .hero-btns { opacity: 1; transform: translateY(0); }

/* Slider Controls */
.slider-controls {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 12px;
}
.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50px;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.slider-dot.active {
  background: var(--white);
  width: 30px;
}

.slider-arrows {
  position: absolute;
  top: 50%;
  width: 100%;
  left: 0;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  justify-content: space-between;
  padding: 0 30px;
  pointer-events: none;
}

.slider-arrow {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  pointer-events: all;
}
.slider-arrow:hover {
  background: var(--primary);
  border-color: var(--primary);
}
.slider-arrow svg { width: 20px; height: 20px; }

/* Floating stats */
.hero-stats {
  position: absolute;
  bottom: 50px;
  right: 60px;
  z-index: 10;
  display: flex;
  gap: 20px;
}
.hero-stat {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  text-align: center;
  color: white;
}
.hero-stat-number {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  font-family: var(--font-heading);
}
.hero-stat-label {
  font-size: 0.75rem;
  opacity: 0.85;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ============================
   FEATURED PRODUCTS
   ============================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  border: 1px solid rgba(180,39,99,0.06);
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.product-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--pastel-rose);
}
.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.product-card:hover .product-card-img img { transform: scale(1.08); }

.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--gradient-main);
  color: white;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  z-index: 2;
}

.product-actions {
  position: absolute;
  right: 14px;
  top: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transform: translateX(20px);
  transition: var(--transition);
}
.product-card:hover .product-actions {
  opacity: 1;
  transform: translateX(0);
}
.product-action-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  color: var(--dark);
}
.product-action-btn:hover {
  background: var(--primary);
  color: white;
  transform: scale(1.1);
}
.product-action-btn svg { width: 16px; height: 16px; }

.product-card-body { padding: 20px; }

.product-category-tag {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.product-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-quantity {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.product-quantity svg { width: 13px; height: 13px; }

.product-prices {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.price-current {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
  font-family: var(--font-heading);
}
.price-old {
  font-size: 0.85rem;
  color: var(--text-light);
  text-decoration: line-through;
}

.product-card-footer {
  display: flex;
  gap: 8px;
}
.product-card-footer .btn { flex: 1; justify-content: center; font-size: 0.8rem; padding: 9px 14px; }

/* ============================
   CATEGORIES SECTION
   ============================ */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 20px;
}

.category-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  transition: var(--transition);
}
.category-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

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

.category-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(102,8,49,0.85) 0%, rgba(180,39,99,0.2) 60%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  transition: var(--transition);
}
.category-card:hover .category-card-overlay {
  background: linear-gradient(to top, rgba(102,8,49,0.92) 0%, rgba(180,39,99,0.5) 60%, transparent 100%);
}

.category-card-name {
  font-family: var(--font-heading);
  color: white;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3;
}

/* Placeholder background for categories without images */
.cat-placeholder-1 { background: linear-gradient(135deg, #fce8f0, #f9c5d9); }
.cat-placeholder-2 { background: linear-gradient(135deg, #fef0f5, #fdd6e7); }
.cat-placeholder-3 { background: linear-gradient(135deg, #fff0f5, #fce4ef); }
.cat-placeholder-4 { background: linear-gradient(135deg, #fdf5ee, #fde8d5); }
.cat-placeholder-5 { background: linear-gradient(135deg, #f5eefb, #e8d5fb); }
.cat-placeholder-6 { background: linear-gradient(135deg, #eef5fb, #d5e8fb); }

/* ============================
   WHY CHOOSE US
   ============================ */
.why-choose-section {
  background: var(--gradient-soft);
  position: relative;
  overflow: hidden;
}
.why-choose-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(180,39,99,0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-text-content { }

.why-features { margin-top: 36px; display: flex; flex-direction: column; gap: 22px; }

.why-feature {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.why-feature-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: var(--gradient-main);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 20px rgba(180,39,99,0.3);
}
.why-feature-icon svg { width: 24px; height: 24px; color: white; }

.why-feature-text h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
  font-family: var(--font-heading);
}

.why-image-wrap {
  position: relative;
}
.why-image-main {
  width: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 0.85;
}
.why-image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.why-image-float {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 18px 24px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 220px;
}
.why-image-float-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--gradient-main);
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-image-float-icon svg { width: 22px; height: 22px; color: white; }
.why-image-float-text strong { display: block; font-size: 1.2rem; color: var(--primary); font-family: var(--font-heading); }
.why-image-float-text span { font-size: 0.8rem; color: var(--text-muted); }

/* ============================
   CTA FORM SECTION
   ============================ */
.cta-section {
  position: relative;
  background-image: url('../img/hero/ban1.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.cta-section-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(102,8,49,0.92) 0%, rgba(180,39,99,0.85) 100%);
}
.cta-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.cta-text h2 { color: white; }
.cta-text p { color: rgba(255,255,255,0.85); }

.cta-form {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.cta-form h3 { color: white; font-size: 1.5rem; margin-bottom: 24px; }

.form-group { margin-bottom: 18px; }
.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  margin-bottom: 7px;
  letter-spacing: 0.03em;
}
.form-control {
  width: 100%;
  padding: 12px 18px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.12);
  color: white;
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: var(--transition);
  outline: none;
}
.form-control::placeholder { color: rgba(255,255,255,0.5); }
.form-control:focus {
  border-color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.18);
}

textarea.form-control {
  border-radius: var(--radius-sm);
  resize: none;
  min-height: 100px;
}

/* Contact form (non-overlay) */
.form-control-light {
  width: 100%;
  padding: 12px 18px;
  border-radius: 50px;
  border: 1.5px solid rgba(180,39,99,0.2);
  background: var(--pastel-rose);
  color: var(--dark);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: var(--transition);
  outline: none;
}
.form-control-light:focus {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(180,39,99,0.1);
}
textarea.form-control-light {
  border-radius: var(--radius-sm);
  resize: none;
  min-height: 130px;
}
.form-label-dark {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 7px;
  letter-spacing: 0.03em;
}
select.form-control-light { cursor: pointer; }

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

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-brand p { color: rgba(255,255,255,0.6); margin: 16px 0 24px; font-size: 0.9rem; }
.footer-logo { height: 48px; filter: brightness(10); }
.footer-socials { display: flex; gap: 10px; }
.footer-social {
  width: 38px;
  height: 38px;
  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;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}
.footer-social:hover { background: var(--primary); border-color: var(--primary); color: white; transform: translateY(-3px); }
.footer-social svg { width: 16px; height: 16px; }

.footer-heading {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: white;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links li a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-links li a::before {
  content: '';
  width: 6px;
  height: 1px;
  background: var(--primary);
  flex-shrink: 0;
  transition: width 0.3s ease;
}
.footer-links li a:hover { color: var(--primary-light); }
.footer-links li a:hover::before { width: 12px; }

.footer-contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
  color: rgba(255,255,255,0.65);
  font-size: 0.875rem;
}
.footer-contact-item svg {
  width: 16px;
  height: 16px;
  color: var(--primary-light);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}
.footer-copyright { font-size: 0.85rem; color: rgba(255,255,255,0.5); }

.payment-icons { display: flex; align-items: center; gap: 8px; }
.payment-icon {
  height: 26px;
  background: rgba(255,255,255,0.1);
  border-radius: 5px;
  padding: 3px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.05em;
}
.payment-icon img { height: 18px; filter: brightness(5); opacity: 0.7; }

/* ============================
   FLOATING ELEMENTS
   ============================ */
.whatsapp-float {
  position: fixed;
  bottom: 90px;
  right: 28px;
  z-index: 500;
}
.whatsapp-float a {
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 25px rgba(37,211,102,0.45);
  transition: var(--transition-bounce);
  position: relative;
}
.whatsapp-float a:hover { transform: scale(1.12) translateY(-4px); }
.whatsapp-float a svg { width: 28px; height: 28px; color: white; }
.whatsapp-float a::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: #25D366;
  opacity: 0.4;
  animation: pulse-ring 1.8s ease infinite;
}

.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 500;
  width: 46px;
  height: 46px;
  background: var(--gradient-main);
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(180,39,99,0.35);
  transition: var(--transition-bounce);
  opacity: 0;
  transform: translateY(20px);
}
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { transform: translateY(-4px) scale(1.08); }
.scroll-top svg { width: 18px; height: 18px; color: white; }

/* ============================
   BREADCRUMB
   ============================ */
.breadcrumb-section {
  padding: 100px 0 50px;
  background: var(--gradient-soft);
  position: relative;
  overflow: hidden;
}
.breadcrumb-section::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--white);
  border-radius: 40px 40px 0 0;
}
.breadcrumb-content { position: relative; z-index: 2; }
.breadcrumb-title { font-size: clamp(1.8rem, 4vw, 2.5rem); margin-bottom: 12px; }
.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
}
.breadcrumb-nav a { color: var(--text-muted); }
.breadcrumb-nav a:hover { color: var(--primary); }
.breadcrumb-nav span { color: var(--primary); font-weight: 600; }
.breadcrumb-nav svg { width: 13px; height: 13px; color: var(--text-light); }

/* ============================
   ABOUT PAGE
   ============================ */
.about-section { }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-video-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 0.85;
}
.about-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(180,39,99,0.2);
  transition: var(--transition);
}
.about-video-overlay:hover { background: rgba(180,39,99,0.1); }
.play-btn {
  width: 70px;
  height: 70px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
  transition: var(--transition-bounce);
}
.play-btn:hover { transform: scale(1.1); background: white; }
.play-btn svg { width: 26px; height: 26px; color: var(--primary); margin-left: 4px; }

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 36px;
}
.about-stat-item {
  padding: 20px;
  background: var(--pastel-rose);
  border-radius: var(--radius-md);
  text-align: center;
}
.about-stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 4px;
}
.about-stat-label { font-size: 0.82rem; color: var(--text-muted); font-weight: 500; }

.cta-banner {
  padding: 80px 0;
  background: var(--gradient-main);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -40px;
  width: 250px;
  height: 250px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}
.cta-banner h2 { color: white; margin-bottom: 14px; }
.cta-banner p { color: rgba(255,255,255,0.85); max-width: 560px; margin: 0 auto 30px; }

/* ============================
   PRODUCTS PAGE
   ============================ */
.products-filters {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(180,39,99,0.08);
  margin-bottom: 36px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.filter-search {
  flex: 1;
  min-width: 200px;
  position: relative;
}
.filter-search svg {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  color: var(--text-muted);
}
.filter-search input {
  width: 100%;
  padding: 10px 14px 10px 42px;
  border-radius: 50px;
  border: 1.5px solid rgba(180,39,99,0.15);
  background: var(--pastel-rose);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition);
}
.filter-search input:focus {
  border-color: var(--primary);
  background: var(--white);
}

.filter-select {
  padding: 10px 18px;
  border-radius: 50px;
  border: 1.5px solid rgba(180,39,99,0.15);
  background: var(--pastel-rose);
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--dark);
  outline: none;
  cursor: pointer;
  transition: var(--transition);
  min-width: 160px;
}
.filter-select:focus {
  border-color: var(--primary);
  background: var(--white);
}

.filter-count {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}
.filter-count span { color: var(--primary); font-weight: 700; }

/* ============================
   PRODUCT DETAILS
   ============================ */
.product-detail-section { padding: 60px 0 80px; }

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
}

.product-images-wrap { position: sticky; top: 100px; }

.product-main-img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--pastel-rose);
  margin-bottom: 14px;
  cursor: zoom-in;
}
.product-main-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.product-main-img:hover img { transform: scale(1.05); }

.product-thumbs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.product-thumb {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  background: var(--pastel-rose);
}
.product-thumb:hover, .product-thumb.active { border-color: var(--primary); }
.product-thumb img { width: 100%; height: 100%; object-fit: cover; }

.product-info { }
.product-info .product-category-tag { font-size: 0.82rem; display: block; margin-bottom: 10px; }
.product-info h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 16px;
  line-height: 1.25;
}

.product-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.product-ml-badge {
  background: var(--pastel-pink);
  color: var(--primary);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
}
.product-stock-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #27a85a;
}
.stock-dot { width: 8px; height: 8px; background: #27a85a; border-radius: 50%; animation: pulse 1.5s ease infinite; }

.product-price-block { margin-bottom: 24px; }
.product-current-price {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 4px;
}
.product-old-price {
  font-size: 1rem;
  color: var(--text-light);
  text-decoration: line-through;
  margin-right: 10px;
}
.product-save-badge {
  background: #fff3cd;
  color: #856404;
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
}

.product-desc { margin-bottom: 28px; font-size: 0.95rem; color: var(--text-muted); line-height: 1.8; }

.product-actions-wrap {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.product-actions-wrap .btn { flex: 1; min-width: 160px; justify-content: center; }

.product-share {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 22px;
  border-top: 1px solid rgba(180,39,99,0.08);
}
.product-share span { font-size: 0.85rem; font-weight: 600; color: var(--dark); }
.share-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--pastel-rose);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  transition: var(--transition);
}
.share-btn:hover { background: var(--primary); color: white; }
.share-btn svg { width: 15px; height: 15px; }

/* Related Products scroll */
.related-scroll-wrapper { overflow: hidden; position: relative; }
.related-products-track {
  display: flex;
  gap: 22px;
  animation: scrollTrack 25s linear infinite;
  width: max-content;
}
.related-products-track:hover { animation-play-state: paused; }
@keyframes scrollTrack {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.related-products-track .product-card { width: 240px; flex-shrink: 0; }

/* ============================
   CONTACT PAGE
   ============================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}

.contact-info-cards { display: flex; flex-direction: column; gap: 20px; }
.contact-card {
  padding: 28px;
  border-radius: var(--radius-md);
  background: var(--pastel-rose);
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: var(--transition);
}
.contact-card:hover { transform: translateX(6px); box-shadow: var(--shadow-sm); }
.contact-card-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  background: var(--gradient-main);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-card-icon svg { width: 22px; height: 22px; color: white; }
.contact-card-content h4 { margin-bottom: 6px; font-size: 1rem; }
.contact-card-content p, .contact-card-content a { font-size: 0.9rem; color: var(--text-muted); }
.contact-card-content a:hover { color: var(--primary); }

.contact-form-card {
  padding: 44px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(180,39,99,0.08);
}

/* ============================
   ENQUIRY PAGE
   ============================ */
.enquiry-section {
  padding: 60px 0 90px;
}
.enquiry-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: start;
}
.enquiry-form-wrap {
  padding: 44px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(180,39,99,0.08);
  background: var(--white);
}
.enquiry-product-preview {
  background: var(--pastel-rose);
  border-radius: var(--radius-lg);
  padding: 30px;
  position: sticky;
  top: 100px;
}
.enquiry-product-preview h3 { margin-bottom: 20px; font-size: 1.2rem; }
.enquiry-product-img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 16px;
  background: white;
}
.enquiry-product-img img { width: 100%; height: 100%; object-fit: cover; }
.enquiry-product-name { font-family: var(--font-heading); font-weight: 600; margin-bottom: 8px; font-size: 1.1rem; }
.enquiry-product-price { color: var(--primary); font-weight: 700; font-size: 1.2rem; }

/* ============================
   404 PAGE
   ============================ */
.page-404 {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 20px;
}
.page-404-number {
  font-family: var(--font-display);
  font-size: clamp(8rem, 20vw, 16rem);
  font-weight: 700;
  line-height: 0.9;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
}
.page-404 h2 { margin-bottom: 14px; }
.page-404 p { max-width: 420px; margin: 0 auto 36px; }

/* ============================
   THANK YOU PAGE
   ============================ */
.thank-you-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 20px;
}
.thank-you-icon {
  width: 90px;
  height: 90px;
  background: var(--gradient-main);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 26px;
  animation: scaleIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 10px 35px rgba(180,39,99,0.35);
}
.thank-you-icon svg { width: 42px; height: 42px; color: white; }
.thank-you-page h1 { margin-bottom: 14px; }
.thank-you-page p { max-width: 450px; margin: 0 auto 34px; }

/* ============================
   AI Glow Effects
   ============================ */
.ai-glow {
  position: relative;
}
.ai-glow::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  padding: 2px;
  background: var(--gradient-main);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s;
}
.ai-glow:hover::before { opacity: 1; }

/* ============================
   LOADING SKELETON
   ============================ */
.skeleton {
  background: linear-gradient(90deg, #f5e8ee 25%, #fde8f0 50%, #f5e8ee 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius-sm);
}

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .why-grid { gap: 40px; }
  .about-grid { gap: 40px; }
}

@media (max-width: 768px) {
  .navbar-nav, .navbar-cta { display: none; }
  .mobile-toggle { display: flex; }
  .mobile-menu { display: block; }

  .hero-stats { display: none; }
  .hero-slide-overlay {
    background: linear-gradient(to bottom, rgba(102,8,49,0.7) 0%, rgba(180,39,99,0.85) 100%);
  }
  .hero-content { max-width: 100%; }

  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .why-image-wrap { order: -1; }
  .why-image-float { min-width: 160px; }

  .cta-inner { grid-template-columns: 1fr; gap: 40px; }

  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { justify-content: center; text-align: center; }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .enquiry-grid { grid-template-columns: 1fr; gap: 36px; }
  .product-detail-grid { grid-template-columns: 1fr; gap: 40px; }
  .product-images-wrap { position: static; }

  .products-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; }
  .categories-grid { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: 14px; }

  .section { padding: 60px 0; }
  .cta-form { padding: 28px; }
  .contact-form-card, .enquiry-form-wrap { padding: 28px; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .categories-grid { grid-template-columns: 1fr 1fr 1fr; gap: 10px; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { text-align: center; justify-content: center; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .product-actions-wrap { flex-direction: column; }
  .product-actions-wrap .btn { min-width: unset; }
}
