/* ============================================================
   PATEL DENTAL DEPOT — Premium Design Overhaul
   premium.css  |  Loaded AFTER style.css
   ============================================================ */

/* ---- Override body top padding for new hero ---- */
body[data-page="home"] {
  padding-top: 0;
  background: #fff;
}

/* ================================================================
   HERO SECTION
   ================================================================ */
.prem-hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, #0a0f1e 0%, #0F172A 50%, #0d2a26 100%);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding-top: 72px; /* navbar height */
}

/* Animated blob shapes in background */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.25;
  animation: blobFloat 10s ease-in-out infinite alternate;
  pointer-events: none;
}

.hero-blob-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #0F766E, transparent 70%);
  top: -150px; left: -100px;
  animation-delay: 0s;
}

.hero-blob-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #14B8A6, transparent 70%);
  top: 30%; right: -100px;
  animation-delay: 3s;
}

.hero-blob-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, #5EEAD4, transparent 70%);
  bottom: 100px; left: 40%;
  animation-delay: 6s;
  opacity: 0.12;
}

@keyframes blobFloat {
  from { transform: scale(1) translate(0,0); }
  to   { transform: scale(1.15) translate(30px, 20px); }
}

/* Hero inner layout */
.prem-hero-inner {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  padding: 60px 24px 40px;
  position: relative;
  z-index: 2;
}

/* ---- Hero Text ---- */
.prem-hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(94,234,212,0.12);
  border: 1px solid rgba(94,234,212,0.25);
  color: #5EEAD4;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
  letter-spacing: 0.3px;
}

.prem-hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.08;
  color: #fff;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.prem-gradient-text {
  background: linear-gradient(135deg, var(--primary-light, #93c5fd) 0%, var(--primary, #2563eb) 50%, var(--accent, #60a5fa) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: var(--primary-light, #93c5fd);
}

.prem-hero-sub {
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}

.prem-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

/* Hero Buttons */
.prem-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 15px 32px;
  background: linear-gradient(135deg, #0F766E, #14B8A6);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(15,118,110,0.45);
  border: none;
  cursor: pointer;
}

.prem-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(15,118,110,0.6);
  color: #fff;
}

.prem-btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 15px 32px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(37,211,102,0.35);
}

.prem-btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(37,211,102,0.5);
  color: #fff;
}

/* Trust badges */
.prem-trust-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.prem-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.55);
  font-size: 0.82rem;
  font-weight: 500;
}

.prem-trust-item i {
  color: #5EEAD4;
  font-size: 0.78rem;
}

/* ---- Hero Visual (right side — now a slider) ---- */
.prem-hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 520px;
}

/* ================================================================
   PREMIUM HERO SLIDER
   ================================================================ */
.prem-hero-slider-wrap {
  width: 100%;
  height: 520px;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(94,234,212,0.15);
  position: relative;
  z-index: 2;
}

/* Slide track */
.prem-slider-track {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Individual slide */
.prem-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.85s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.85s cubic-bezier(0.4, 0, 0.2, 1);
  transform: scale(1.04);
  z-index: 1;
}

.prem-slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

.prem-slide.slide-out {
  opacity: 0;
  transform: scale(0.96);
  z-index: 1;
}

.prem-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Slide caption overlay */
.prem-slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 20px 14px;
  background: linear-gradient(to top, rgba(10,15,30,0.75) 0%, transparent 100%);
  color: rgba(255,255,255,0.9);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-align: center;
  z-index: 3;
}

/* Prev / Next arrows */
.prem-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 0.85rem;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  outline: none;
}

.prem-slider-arrow:hover {
  background: rgba(94,234,212,0.25);
  border-color: rgba(94,234,212,0.4);
  box-shadow: 0 0 16px rgba(94,234,212,0.3);
  transform: translateY(-50%) scale(1.1);
}

.prem-slider-prev { left: 12px; }
.prem-slider-next { right: 12px; }

/* Dot navigation */
.prem-slider-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
  z-index: 10;
}

.prem-slider-dot {
  width: 8px;
  height: 8px;
  min-width: 0;
  min-height: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: none;
  cursor: pointer;
  transition: all 0.35s ease;
  outline: none;
  padding: 0;
}

.prem-slider-dot.active {
  width: 24px;
  border-radius: 4px;
  background: #5EEAD4;
  box-shadow: 0 0 10px rgba(94,234,212,0.6);
}

.prem-slider-dot:hover:not(.active) {
  background: rgba(255,255,255,0.65);
}

/* Floating stat cards around the slider */
.prem-float-card {
  position: absolute;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 16px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 5;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  animation: floatCard 4s ease-in-out infinite alternate;
}

.prem-float-top    { top: 20px; right: -20px; animation-delay: 0s; }
.prem-float-bottom { bottom: 56px; right: -30px; animation-delay: 2s; }
.prem-float-left   { bottom: 140px; left: -30px; animation-delay: 1s; }

@keyframes floatCard {
  from { transform: translateY(0px); }
  to   { transform: translateY(-10px); }
}

.prem-float-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, #0F766E, #14B8A6);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1rem;
  flex-shrink: 0;
}

.prem-float-icon-gold { background: linear-gradient(135deg, #F59E0B, #D97706); }
.prem-float-icon-green { background: linear-gradient(135deg, #10B981, #059669); }

.prem-float-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.prem-float-lbl {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
  margin-top: 2px;
}

/* Scroll hint */
.prem-scroll-hint {
  display: flex;
  justify-content: center;
  padding: 20px 0 32px;
  position: relative;
  z-index: 2;
}

.prem-scroll-dot {
  width: 24px; height: 40px;
  border: 2px solid rgba(255,255,255,0.25);
  border-radius: 50px;
  position: relative;
}

.prem-scroll-dot::before {
  content: '';
  position: absolute;
  top: 6px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 8px;
  background: #5EEAD4;
  border-radius: 2px;
  animation: scrollBounce 1.5s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { top: 6px; opacity: 1; }
  50%       { top: 18px; opacity: 0.3; }
}

/* Hero entrance animations */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

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

.animate-hero-1 { animation: heroFadeUp 0.7s cubic-bezier(0.16,1,0.3,1) 0.1s both; }
.animate-hero-2 { animation: heroFadeUp 0.7s cubic-bezier(0.16,1,0.3,1) 0.2s both; }
.animate-hero-3 { animation: heroFadeUp 0.7s cubic-bezier(0.16,1,0.3,1) 0.35s both; }
.animate-hero-4 { animation: heroFadeUp 0.7s cubic-bezier(0.16,1,0.3,1) 0.5s both; }
.animate-hero-5 { animation: heroFadeUp 0.7s cubic-bezier(0.16,1,0.3,1) 0.65s both; }

.prem-hero-visual.animate-hero-2 {
  animation: heroFadeRight 0.9s cubic-bezier(0.16,1,0.3,1) 0.3s both;
}

/* ================================================================
   MARQUEE BRAND STRIP
   ================================================================ */
.prem-marquee-wrap {
  background: #0F172A;
  padding: 18px 0;
  display: flex;
  align-items: center;
  gap: 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.prem-marquee-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.3);
  padding: 0 24px;
  white-space: nowrap;
  flex-shrink: 0;
}

.prem-marquee-track {
  flex: 1;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
}

.prem-marquee-inner {
  display: flex;
  gap: 40px;
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
}

.prem-marquee-inner span {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: rgba(255,255,255,0.35);
  white-space: nowrap;
  letter-spacing: 0.5px;
  transition: color 0.3s;
  cursor: default;
}

.prem-marquee-inner span:hover {
  color: #5EEAD4;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ================================================================
   SECTIONS
   ================================================================ */
.prem-section {
  padding: 96px 0;
}

.prem-section-light { background: #f8fafc; }
.prem-section-dark  { background: linear-gradient(180deg, #0F172A 0%, #0d2a26 100%); }

.prem-section-head {
  text-align: center;
  margin-bottom: 56px;
}

.prem-section-tag {
  display: inline-block;
  background: rgba(15,118,110,0.08);
  color: #0F766E;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
  border: 1px solid rgba(15,118,110,0.15);
}

.prem-tag-light {
  background: rgba(94,234,212,0.1);
  color: #5EEAD4;
  border-color: rgba(94,234,212,0.2);
}

.prem-section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900;
  color: #0F172A;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
  line-height: 1.15;
}

.prem-title-light { color: #fff; }

.prem-section-sub {
  font-size: 1rem;
  color: #64748B;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

.prem-sub-light { color: rgba(255,255,255,0.55); }

/* ================================================================
   CATEGORY GRID (Premium Style)
   ================================================================ */
.prem-cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Override the default category card with premium style */
.prem-cat-grid .category-card {
  background: #fff;
  border: 1.5px solid #E2E8F0;
  border-radius: 20px;
  padding: 32px 20px;
  text-align: center;
  transition: all 0.35s cubic-bezier(0.16,1,0.3,1);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(15,23,42,0.04);
  position: relative;
  overflow: hidden;
}

.prem-cat-grid .category-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0F766E, #14B8A6);
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 0;
}

.prem-cat-grid .category-card:hover {
  transform: translateY(-8px);
  border-color: transparent;
  box-shadow: 0 20px 60px rgba(15,118,110,0.25);
}

.prem-cat-grid .category-card:hover::before { opacity: 1; }

.prem-cat-grid .category-card > * { position: relative; z-index: 1; }

.prem-cat-grid .category-card:hover h3,
.prem-cat-grid .category-card:hover p,
.prem-cat-grid .category-card:hover .cat-count { color: rgba(255,255,255,0.9); }

.prem-cat-grid .category-card:hover .category-icon-wrapper {
  background: rgba(255,255,255,0.2);
  color: #fff;
}

/* ================================================================
   BENTO GRID (Why Choose Us)
   ================================================================ */
.prem-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}

.prem-bento-card {
  border-radius: 24px;
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.prem-bento-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.15);
}

.prem-bento-large {
  grid-column: span 1;
  grid-row: span 2;
}

.prem-bento-wide {
  grid-column: span 2;
}

/* Card color variants */
.prem-bento-teal {
  background: linear-gradient(145deg, #0F766E 0%, #0d5c57 100%);
  color: #fff;
}

.prem-bento-navy {
  background: linear-gradient(145deg, #0F172A, #1E293B);
  color: #fff;
}

.prem-bento-white {
  background: #fff;
  border: 1.5px solid #E2E8F0;
  color: #0F172A;
  box-shadow: 0 2px 12px rgba(15,23,42,0.05);
}

.prem-bento-soft-teal {
  background: linear-gradient(135deg, #F0FDFA 0%, #CCFBF1 100%);
  border: 1.5px solid rgba(15, 118, 110, 0.2);
  color: #0F766E;
  box-shadow: 0 2px 12px rgba(15,23,42,0.05);
}

.prem-bento-soft-teal h3 {
  color: #0F766E !important;
}

.prem-bento-soft-teal p {
  color: #115E59 !important;
}

.prem-bento-soft-gold {
  background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
  border: 1.5px solid rgba(217, 119, 6, 0.2);
  color: #B45309;
  box-shadow: 0 2px 12px rgba(15,23,42,0.05);
}

.prem-bento-soft-gold h3 {
  color: #B45309 !important;
}

.prem-bento-soft-gold p {
  color: #78350F !important;
}

.prem-bento-gradient {
  background: linear-gradient(135deg, #0F766E 0%, #0F172A 100%);
  color: #fff;
}

.prem-bento-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 20px;
}

.prem-bento-icon-teal { background: rgba(15,118,110,0.1); color: #0F766E; }
.prem-bento-icon-gold { background: rgba(245,158,11,0.1); color: #F59E0B; }

.prem-bento-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: inherit;
}

.prem-bento-white h3 { color: #0F172A; }

.prem-bento-card p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.7);
}

.prem-bento-white p { color: #64748B; }

/* Decorative large character */
.prem-bento-deco {
  position: absolute;
  bottom: -20px; right: 20px;
  font-size: 8rem;
  font-weight: 900;
  color: rgba(255,255,255,0.07);
  line-height: 1;
  user-select: none;
}

/* Stat row inside bento */
.prem-bento-stat-row {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 16px;
  text-align: center;
}

.prem-bento-stat span {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: #5EEAD4;
  line-height: 1;
  margin-bottom: 4px;
}

.prem-bento-stat label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

/* ================================================================
   TESTIMONIALS
   ================================================================ */
.prem-testimonials {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
  align-items: start;
}

.prem-tcard {
  background: #fff;
  border: 1.5px solid #E2E8F0;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 2px 12px rgba(15,23,42,0.05);
  transition: all 0.3s ease;
  position: relative;
}

.prem-tcard:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(15,23,42,0.1);
  border-color: rgba(15,118,110,0.2);
}

.prem-tcard-featured {
  background: linear-gradient(145deg, #0F172A, #1E293B);
  border-color: transparent;
  transform: scale(1.04);
}

.prem-tcard-featured:hover {
  transform: scale(1.04) translateY(-6px);
}

.prem-tcard-featured p { color: rgba(255,255,255,0.75); }
.prem-tcard-featured strong { color: #fff; }
.prem-tcard-featured span { color: rgba(255,255,255,0.45); }

.prem-tcard-quote {
  position: absolute;
  top: 16px; right: 24px;
  font-size: 5rem;
  font-family: Georgia, serif;
  color: rgba(94,234,212,0.15);
  line-height: 1;
  user-select: none;
}

.prem-tcard-stars {
  color: #F59E0B;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.prem-tcard p {
  font-size: 0.92rem;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.prem-tcard-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.prem-tcard-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0F766E, #14B8A6);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.prem-tcard-avatar-teal {
  background: linear-gradient(135deg, #5EEAD4, #0F766E);
}

.prem-tcard-author strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 2px;
}

.prem-tcard-author span {
  font-size: 0.78rem;
  color: #94A3B8;
}

/* ================================================================
   CTA BANNER
   ================================================================ */
.prem-cta {
  background: linear-gradient(135deg, #0F766E 0%, #0F172A 60%, #0d2a26 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.prem-cta-glow {
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(94,234,212,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.prem-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.prem-cta-text h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.2;
}

.prem-cta-text p {
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
}

.prem-cta-actions {
  display: flex;
  gap: 14px;
  flex-shrink: 0;
}

.prem-btn-outline-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: transparent;
  border: 2px solid rgba(255,255,255,0.3);
  color: #fff;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
}

.prem-btn-outline-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
  transform: translateY(-2px);
  color: #fff;
}

.prem-btn-outline-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 30px;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.25);
  color: #fff;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.prem-btn-outline-cta:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-2px);
  color: #fff;
}

/* Section CTA */
.prem-section-cta {
  text-align: center;
  margin-top: 48px;
}

/* ================================================================
   NAVBAR — premium dark when on hero (home page only)
   ================================================================ */
body[data-page="home"] .navbar {
  background: rgba(10, 15, 30, 0.6);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

body[data-page="home"] .navbar.scrolled {
  background: rgba(10, 15, 30, 0.95);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
}

body[data-page="home"] .nav-links a {
  color: rgba(255,255,255,0.75);
}

body[data-page="home"] .nav-links a:hover,
body[data-page="home"] .nav-links a.active {
  color: #5EEAD4;
  background: rgba(94,234,212,0.1);
}

body[data-page="home"] .logo-text { color: #fff; }

body[data-page="home"] .nav-cart {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.8);
}

body[data-page="home"] .nav-cart:hover {
  background: rgba(94,234,212,0.15);
  color: #5EEAD4;
}

body[data-page="home"] .hamburger span { background: #fff; }

body[data-page="home"] .nav-search input {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.1);
  color: #fff;
}

body[data-page="home"] .nav-search input::placeholder { color: rgba(255,255,255,0.35); }
body[data-page="home"] .nav-search i { color: rgba(255,255,255,0.4); }

/* ================================================================
   MOBILE — Complete separate design ≤768px
   ================================================================ */
@media (max-width: 768px) {

  /* ---- Hero ---- */
  .prem-hero {
    min-height: auto;
    padding-top: 64px;
  }

  .prem-hero-inner {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 32px 20px 0;
    text-align: center;
  }

  .prem-hero-pill {
    font-size: 0.75rem;
    padding: 7px 14px;
    margin-bottom: 18px;
  }

  .prem-hero-title {
    font-size: 2.1rem;
    letter-spacing: -0.5px;
    margin-bottom: 14px;
    line-height: 1.15;
  }

  .prem-hero-sub {
    font-size: 0.9rem;
    margin-bottom: 24px;
    max-width: 100%;
    color: rgba(255,255,255,0.65);
    line-height: 1.6;
  }

  /* --- Hero Buttons: full width, clearly visible, big tap targets --- */
  .prem-hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
  }

  .prem-btn-primary {
    width: 100%;
    max-width: 340px;
    padding: 16px 28px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 14px;
    justify-content: center;
    background: linear-gradient(135deg, #0F766E, #14B8A6);
    color: #fff !important;
    box-shadow: 0 6px 24px rgba(15,118,110,0.5);
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    border: none;
    cursor: pointer;
  }

  .prem-btn-whatsapp {
    width: 100%;
    max-width: 340px;
    padding: 16px 28px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 14px;
    justify-content: center;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff !important;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(37,211,102,0.4);
  }

  .prem-btn-primary i,
  .prem-btn-whatsapp i {
    font-size: 1.1rem;
  }

  /* Trust badges */
  .prem-trust-row {
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 4px;
  }

  .prem-trust-item {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
  }

  /* ---- Hero Slider (mobile) ---- */
  .prem-hero-visual {
    width: 100%;
    height: auto;
    margin-top: 0;
    overflow: visible;
    position: relative;
  }

  .prem-hero-slider-wrap {
    width: calc(100% + 40px);
    margin-left: -20px;
    height: 320px; /* Taller rectangular aspect to show images fully */
    border-radius: 0;
    box-shadow: none;
    margin-top: 28px;
  }

  .prem-slide img {
    object-fit: cover;
    object-position: center top;
  }

  /* Arrow buttons — bigger tap target on mobile */
  .prem-slider-arrow {
    width: 36px;
    height: 36px;
    font-size: 0.85rem;
    background: rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.3);
  }

  .prem-slider-prev { left: 8px; }
  .prem-slider-next { right: 8px; }

  /* Dot indicator */
  .prem-slider-dot {
    width: 10px;
    height: 10px;
  }
  .prem-slider-dot.active {
    width: 28px;
    border-radius: 5px;
  }

  /* Floating cards inside slider */
  .prem-float-top {
    top: 10px;
    right: 10px;
    padding: 8px 12px;
    border-radius: 10px;
    gap: 8px;
  }

  .prem-float-bottom { display: none; }

  .prem-float-left {
    bottom: 36px;
    left: 10px;
    padding: 8px 12px;
    border-radius: 10px;
    gap: 8px;
  }

  .prem-float-num { font-size: 0.85rem; }
  .prem-float-lbl { font-size: 0.62rem; }
  .prem-float-icon { width: 28px; height: 28px; font-size: 0.78rem; border-radius: 6px; }

  .prem-scroll-hint { display: none !important; }

  /* ---- Marquee ---- */
  .prem-marquee-label { display: none; }
  .prem-marquee-inner { gap: 28px; animation-duration: 20s; }

  /* ---- Sections ---- */
  .prem-section { padding: 52px 0; }
  .prem-section-head { margin-bottom: 32px; }
  .prem-section-title { font-size: 1.65rem; }
  .prem-section-sub { font-size: 0.9rem; }

  /* ---- Featured Products: Mobile & Tablet Redesign (max-width: 768px) ---- */
  .product-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
    padding: 0 4px !important;
  }

  .ppc {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    height: 260px !important; /* Fixed height to guarantee identical height & 35-40% reduction */
    border-radius: 14px !important; /* 14px border radius */
    border: 1px solid rgba(0,0,0,0.06) !important; /* Thin light border */
    box-shadow: 0 4px 16px rgba(0,0,0,0.03), 0 1px 2px rgba(0,0,0,0.01) !important; /* Soft premium shadow */
    background: #ffffff !important; /* White background */
    overflow: hidden !important;
    position: relative !important;
    box-sizing: border-box !important;
  }

  .ppc-image-zone {
    height: 140px !important; /* ~54% of card height (approx 55%) */
    background: #ffffff !important;
    padding: 8px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative !important;
    box-sizing: border-box !important;
    flex-shrink: 0 !important;
  }

  .ppc-image-zone img {
    height: 100% !important;
    width: auto !important;
    max-width: 100% !important;
    object-fit: contain !important;
    mix-blend-mode: normal !important;
    transition: transform 0.3s ease !important;
  }

  .ppc-body {
    padding: 8px 10px 0 10px !important; /* Compact padding */
    display: flex !important;
    flex-direction: column !important;
    gap: 2px !important; /* Compact spacing */
    height: 120px !important; /* Remaining height: 260px - 140px = 120px */
    box-sizing: border-box !important;
    position: relative !important;
    flex-shrink: 0 !important;
  }

  .ppc-info-col {
    display: flex !important;
    flex-direction: column !important;
    gap: 2px !important;
    height: 72px !important; /* Fixed height for info col so price sits perfectly above button */
    justify-content: space-between !important;
  }

  .ppc-stock-status {
    display: none !important; /* Hide stock status inside card body to save vertical space */
  }

  .ppc-brand {
    display: none !important; /* Hide brand to keep it clean and elegant */
  }

  .ppc-name {
    font-size: 13px !important; /* 13px font size */
    font-weight: 500 !important; /* Medium weight */
    line-height: 1.3 !important; /* Proper line height */
    height: 34px !important; /* Max 2 lines */
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    margin: 0 !important;
  }

  .ppc-name a {
    color: #0f172a !important; /* Sleek dark color */
  }

  .ppc-stars {
    display: flex !important;
    align-items: center !important;
    gap: 4px !important;
    font-size: 11px !important; /* 11-12px rating */
    line-height: 1 !important;
    margin-top: 2px !important;
  }

  .ppc-stars-icons {
    font-size: 11px !important;
    color: #f59e0b !important;
  }

  .ppc-review-count {
    font-size: 11px !important;
    color: #64748b !important;
  }

  .ppc-variants-preview {
    font-size: 11px !important;
    color: #64748b !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    margin-top: 1px !important;
  }

  .ppc-price-row {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    margin-top: auto !important; /* Push to bottom of info col */
    padding-bottom: 2px !important;
  }

  .ppc-price {
    font-size: 15px !important; /* 15-16px bold price */
    font-weight: 700 !important;
    color: #0f172a !important;
  }

  .ppc-mrp {
    font-size: 11px !important; /* 11-12px gray price */
    color: #94a3b8 !important;
    text-decoration: line-through !important;
  }

  .ppc-save {
    display: none !important; /* Hide "Save ₹X" on mobile in favor of "% OFF" */
  }

  .ppc-discount-pct {
    font-size: 11px !important; /* 11-12px green discount */
    color: #16a34a !important;
    font-weight: 600 !important;
  }

  .ppc-actions {
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    margin: 0 !important;
  }

  .ppc-cart-btn, .ppc-notify-btn {
    height: 40px !important; /* 40px height */
    min-height: 40px !important;
    border-radius: 0 0 14px 14px !important; /* Rounded only at bottom to match card */
    border: none !important;
    background: #0f766e !important; /* Premium teal */
    color: #ffffff !important;
    font-size: 13px !important; /* 13-14px button text */
    font-weight: 600 !important;
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    cursor: pointer !important;
    transition: background 0.2s ease, opacity 0.2s ease !important;
  }

  .ppc-cart-btn:active, .ppc-notify-btn:active {
    opacity: 0.9 !important;
    background: #0d5c56 !important;
  }

  /* Wishlist Button in Top-Right */
  .ppc-wish-btn {
    position: absolute !important;
    top: 8px !important;
    right: 8px !important;
    width: 30px !important;
    height: 30px !important;
    border-radius: 50% !important;
    background: #ffffff !important; /* White circular background */
    box-shadow: 0 2px 8px rgba(0,0,0,0.08) !important; /* Subtle shadow */
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: none !important;
    color: #64748b !important;
    cursor: pointer !important;
    z-index: 5 !important;
    transition: transform 0.2s ease !important;
  }

  .ppc-wish-btn i {
    font-size: 14px !important;
  }

  /* Badges - Top-Left */
  .ppc-badges {
    position: absolute !important;
    top: 8px !important;
    left: 8px !important;
    display: flex !important;
    flex-direction: row !important; /* Horizontal row on mobile */
    gap: 4px !important;
    z-index: 5 !important;
  }

  .ppc-badge {
    font-size: 10px !important;
    padding: 0 !important;
    width: 22px !important;
    height: 22px !important;
    border-radius: 50% !important; /* Sleek circular icon on mobile */
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.15) !important;
  }

  .ppc-badge .badge-text {
    display: none !important; /* Hide text on mobile */
  }

  .ppc-badge i {
    margin: 0 !important;
    font-size: 10px !important;
  }

  .ppc-badge-new {
    background: #06b6d4 !important;
    color: #ffffff !important;
  }

  .ppc-badge-best {
    background: #eab308 !important;
    color: #ffffff !important;
  }

  .ppc-badge-hot {
    background: #ef4444 !important;
    color: #ffffff !important;
  }

  .ppc-discount-badge {
    display: none !important; /* Hide the top-left discount badge since it's now in the price row */
  }

  /* Section CTA button */
  .prem-section-cta { margin-top: 32px; }
  .prem-btn-outline-light {
    padding: 13px 28px;
    font-size: 0.92rem;
    border-radius: 12px;
    border-width: 2px;
  }

  /* ---- Categories — 2 column ---- */
  .prem-cat-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .prem-cat-grid .category-card {
    padding: 22px 14px;
    border-radius: 14px;
  }

  .prem-cat-grid .category-card .category-icon-wrapper {
    width: 56px;
    height: 56px;
    font-size: 1.3rem;
    margin-bottom: 12px;
  }

  /* ---- Bento grid — stack ---- */
  .prem-bento {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .prem-bento-large { grid-column: span 1; grid-row: span 1; }
  .prem-bento-wide  { grid-column: span 1; }

  .prem-bento-card {
    padding: 28px 22px;
    border-radius: 18px;
  }

  .prem-bento-stat-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .prem-bento-stat span {
    font-size: 1.9rem;
  }

  /* ---- Testimonials ---- */
  .prem-testimonials {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .prem-tcard-featured {
    transform: scale(1);
    order: -1;
  }

  .prem-tcard-featured:hover {
    transform: translateY(-4px);
  }

  /* ---- CTA Banner ---- */
  .prem-cta { padding: 52px 0; }

  .prem-cta-inner {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }

  .prem-cta-text h2 {
    font-size: 1.5rem;
    line-height: 1.25;
  }

  .prem-cta-text p { font-size: 0.88rem; }

  .prem-cta-actions {
    flex-direction: column;
    width: 100%;
    gap: 12px;
    align-items: center;
  }

  .prem-btn-outline-cta,
  .prem-cta-actions .prem-btn-whatsapp {
    width: 100%;
    max-width: 340px;
    justify-content: center;
    border-radius: 14px;
    padding: 16px 24px;
    font-size: 0.95rem;
  }
}

/* ================================================================
   SMALL MOBILE (≤480px)
   ================================================================ */
@media (max-width: 480px) {

  .prem-hero-inner {
    padding: 24px 16px 0;
  }

  .prem-hero-title { font-size: 1.85rem; }

  .prem-hero-slider-wrap { height: 260px; } /* Taller rectangular aspect to show images fully */

  .prem-bento-stat span { font-size: 1.7rem; }



  /* Chips wrapping on very small */
  .category-chips-inner {
    gap: 6px;
  }

  .chip {
    padding: 7px 14px;
    font-size: 0.78rem;
  }

  /* Float cards hide on very small screens */
  .prem-float-top,
  .prem-float-left { display: none; }
}

/* ================================================================
   VERY SMALL (≤360px)
   ================================================================ */
@media (max-width: 360px) {
  .prem-hero-title { font-size: 1.6rem; }
  .prem-btn-primary, .prem-btn-whatsapp { max-width: 100%; }
  .prem-bento-stat-row { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   PDD Redesign Additions: Custom Card Glows & Micro-Animations
   ============================================================ */

/* CTA Glow Section with subtle animated border */
.prem-cta {
  position: relative;
  background: linear-gradient(135deg, #0a0f1e 0%, #0F172A 50%, #082622 100%);
  border: 1px solid rgba(94, 234, 212, 0.1);
  overflow: hidden;
  border-radius: 32px;
  margin: 0 24px;
}

.prem-cta-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.1) 0%, transparent 60%);
  animation: ctaGlowMove 12s linear infinite;
  pointer-events: none;
}

@keyframes ctaGlowMove {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Micro-interactions on reviews */
.prem-tcard {
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.prem-tcard:hover {
  transform: translateY(-8px) scale(1.02) !important;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08) !important;
  border-color: rgba(94, 234, 212, 0.4) !important;
}

/* Modern skeleton grid layout */
.skeleton-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 991px) {
  .skeleton-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .skeleton-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   PREMIUM HORIZONTAL PRODUCT SLIDER
   ============================================================ */
.slider-section {
  padding: 60px 0;
  position: relative;
  overflow: hidden;
  background: #f8fafc;
}

.slider-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 24px;
}

.slider-header-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.slider-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.80rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0;
}

.slider-subtitle {
  font-size: 0.95rem;
  color: #64748b;
  margin: 0;
}

.slider-view-all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #0f766e;
  text-decoration: none;
  transition: color 0.2s;
}

.slider-view-all:hover {
  color: #0d5c56;
}

.slider-wrapper {
  position: relative;
  width: 100%;
}

.slider-track-container {
  overflow: hidden;
  width: 100%;
}

.slider-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none; /* Hide scrollbar Firefox */
  -webkit-overflow-scrolling: touch;
  padding: 10px 4px 20px 4px; /* Room for shadow */
  margin: 0 -4px;
}

.slider-track::-webkit-scrollbar {
  display: none; /* Hide scrollbar Chrome/Safari */
}

/* Slide item */
.slider-track .ppc {
  flex: 0 0 calc(16.666% - 13.3px); /* Default 6 items on large desktop */
  scroll-snap-align: start;
  box-sizing: border-box;
}

/* Slider Nav Buttons (Desktop only) */
.slider-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0f172a;
  font-size: 1rem;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s ease;
}

.slider-nav-btn:hover {
  background: #0f766e;
  color: #ffffff;
  border-color: #0f766e;
  box-shadow: 0 6px 16px rgba(15, 118, 110, 0.2);
}

.slider-nav-btn.prev {
  left: -22px;
}

.slider-nav-btn.next {
  right: -22px;
}

.slider-nav-btn:disabled {
  opacity: 0;
  pointer-events: none;
}

/* Dots for mobile pagination */
.slider-dots {
  display: none;
  justify-content: center;
  gap: 6px;
  margin-top: 10px;
}

.slider-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #cbd5e1;
  border: none;
  transition: all 0.2s ease;
  cursor: pointer;
}

.slider-dot.active {
  background: #0f766e;
  width: 16px;
  border-radius: 3px;
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 1440px) {
  .slider-track .ppc {
    flex: 0 0 calc(20% - 12.8px); /* 5 items */
  }
}

@media (max-width: 1024px) {
  .slider-track .ppc {
    flex: 0 0 calc(25% - 12px); /* 4 items */
  }
  .slider-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .slider-track .ppc {
    flex: 0 0 calc(33.333% - 10.6px); /* 3 items on tablet-small */
  }
  .slider-nav-btn {
    display: none; /* Hide arrows on tablet/mobile */
  }
  .slider-dots {
    display: flex; /* Show dots on mobile */
  }
}

@media (max-width: 576px) {
  .slider-track {
    gap: 12px;
  }
  .slider-track .ppc {
    /* Show 2 cards and partial 3rd card (e.g. width ~44%) */
    flex: 0 0 calc(44% - 6px) !important;
  }
  .slider-title {
    font-size: 1.3rem;
  }
  .slider-subtitle {
    font-size: 0.85rem;
  }
}

@media (max-width: 768px) {
  .ppc:hover {
    transform: none !important;
    box-shadow: 0 4px 16px rgba(0,0,0,0.03), 0 1px 2px rgba(0,0,0,0.01) !important;
    border-color: rgba(0,0,0,0.06) !important;
  }
  .ppc:hover .ppc-image-zone img {
    transform: none !important;
  }
}

/* ---------- Footer Responsive Restructuring ---------- */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 32px !important;
  }
  
  .footer-col:first-child {
    grid-column: 1 / -1 !important;
  }
  
  .footer-col:nth-child(2) {
    grid-column: span 1 !important;
  }
  
  .footer-col:nth-child(3) {
    grid-column: span 1 !important;
  }
  
  .footer-col:last-child {
    grid-column: 1 / -1 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    margin-top: 8px;
  }
}

@media (max-width: 576px) {
  .footer-grid {
    gap: 24px !important;
  }
  
  .footer-links {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }
  
  .footer-col h3 {
    margin-bottom: 12px !important;
    padding-bottom: 8px !important;
  }
  
  .footer-contact-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
