/* Premium Design System and Style Rules for T. R Wald's Product */

:root {
  /* Colors */
  --primary: #7c3aed;
  --primary-hover: #6d28d9;
  --primary-light: #f3e8ff;
  --primary-glow: rgba(124, 58, 237, 0.15);
  
  --accent: #ff6550; /* Match logo's coral color */
  --accent-hover: #e04e3b;
  --accent-glow: rgba(255, 101, 80, 0.25);
  
  --secondary: #475569;
  --bg-base: #fbf9ff; /* Soft lavender white */
  --bg-card: #ffffff;
  --bg-dark: #120e2e;
  
  --text-dark: #0f0a2c;
  --text-medium: #334155;
  --text-light: #64748b;
  --text-white: #ffffff;
  
  --success: #10b981;
  --success-light: #ecfdf5;
  --danger: #ef4444;
  --border: #e2d9f3;
  --border-focus: #a78bfa;
  
  /* Shadows & Radius */
  --shadow-sm: 0 4px 12px rgba(124, 58, 237, 0.04);
  --shadow-md: 0 10px 30px rgba(124, 58, 237, 0.08);
  --shadow-lg: 0 20px 50px rgba(124, 58, 237, 0.15);
  
  --radius-sm: 0.5rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
  --radius-full: 9999px;
  
  /* Fonts */
  --font-bn: 'Hind Siliguri', sans-serif;
  --font-en: 'Poppins', sans-serif;
  
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-bn);
  background-color: var(--bg-base);
  color: var(--text-medium);
  line-height: 1.6;
  overflow-x: hidden;
  background-image: 
    radial-gradient(at 0% 0%, rgba(124, 58, 237, 0.03) 0px, transparent 50%),
    radial-gradient(at 100% 100%, rgba(255, 101, 80, 0.03) 0px, transparent 50%);
  background-attachment: fixed;
}

/* Typography settings */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-bn);
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.3;
}

p {
  color: var(--text-medium);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Helper Class: Font Poppins */
.font-poppins {
  font-family: var(--font-en);
}

.text-purple {
  color: var(--primary) !important;
}

.text-emerald {
  color: var(--success) !important;
}

.text-green {
  color: var(--success) !important;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-bn);
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
  border: 1px solid transparent;
  padding: 0.75rem 1.75rem;
  font-size: 1rem;
  border-radius: var(--radius-md);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.btn i {
  font-size: 1.2rem;
  line-height: 1;
  transition: transform 0.3s ease;
}

.btn:hover i {
  transform: scale(1.15);
}

.btn-primary {
  background-color: var(--primary);
  color: var(--text-white);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px var(--primary-glow);
}

.btn-secondary {
  background-color: var(--primary-light);
  color: var(--primary);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  background-color: var(--primary);
  color: var(--text-white);
  transform: translateY(-2px);
}

.btn-accent {
  background-color: var(--accent);
  color: var(--text-white);
  box-shadow: 0 6px 15px var(--accent-glow);
}

.btn-accent:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px var(--accent-glow);
}

.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 1.15rem;
  border-radius: var(--radius-md);
}

.btn-block {
  display: flex;
  width: 100%;
}

/* Sticky Navigation Bar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-logo {
  height: 48px;
  width: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary);
}

.logo-text {
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--text-dark);
  letter-spacing: -0.5px;
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-text small {
  font-size: 0.7rem;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 2px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.menu-link {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-medium);
  padding: 0.5rem 0.1rem;
  position: relative;
  transition: var(--transition);
}

.menu-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 3px;
  background-color: var(--primary);
  border-radius: var(--radius-full);
  transition: var(--transition);
}

.menu-link:hover, .menu-link.active {
  color: var(--primary);
}

.menu-link:hover::after, .menu-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-en);
  font-weight: 700;
  color: var(--primary);
  font-size: 1.15rem;
  background-color: var(--primary-light);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
}

.nav-phone i {
  color: var(--accent);
}

/* Animations */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 101, 80, 0.4);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(255, 101, 80, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 101, 80, 0);
  }
}

.pulse-animation {
  animation: pulse 2s infinite;
}

/* Hero Section */
.hero-section {
  position: relative;
  padding: 5rem 0 4rem;
  background: radial-gradient(circle at 80% 20%, rgba(124, 58, 237, 0.08) 0%, transparent 60%);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.hero-blob {
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  filter: blur(120px);
  z-index: 1;
  opacity: 0.15;
  pointer-events: none;
}

.blob-1 {
  background-color: var(--primary);
  top: -10%;
  right: 10%;
  animation: pulse-blob 8s ease-in-out infinite alternate;
}

.blob-2 {
  background-color: var(--accent);
  bottom: 10%;
  left: 5%;
  animation: pulse-blob 10s ease-in-out infinite alternate-reverse;
}

@keyframes pulse-blob {
  0% { transform: scale(1) translate(0px, 0px); }
  100% { transform: scale(1.25) translate(20px, -20px); }
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Balanced columns */
  gap: 3.5rem; /* Tighter gap */
  align-items: center;
}

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

.offer-tag {
  display: inline-block;
  background-color: var(--accent-glow);
  color: var(--accent-hover);
  font-weight: 700;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  margin-bottom: 1rem; /* Reduced from 1.5rem */
  border: 1px dashed var(--accent);
}

.hero-title {
  font-size: 2.5rem; /* Reduced from 2.75rem */
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.25;
  margin-bottom: 1rem; /* Reduced from 1.5rem */
}

.highlight-text {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.hero-subtitle {
  font-size: 1.1rem; /* Slightly smaller text */
  color: var(--text-medium);
  margin-bottom: 1.25rem; /* Reduced from 2rem */
  line-height: 1.5;
}

.trust-list {
  list-style: none;
  margin-bottom: 1.5rem; /* Reduced from 2rem */
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.trust-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem; /* Reduced from 1.05rem */
  font-weight: 600;
  color: var(--text-dark);
}

.trust-list li i {
  color: var(--success);
  font-size: 1.2rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

/* Countdown Timer */
.countdown-wrapper {
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-md);
  padding: 1rem 1.5rem; /* Reduced from 1.25rem 1.75rem */
  margin-bottom: 1.75rem; /* Reduced from 2rem */
  box-shadow: var(--shadow-sm);
  max-width: 440px; /* Reduced from 480px */
}

.countdown-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.countdown-timer {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.timer-box {
  background: linear-gradient(135deg, #1e1b4b 0%, #0f0c2d 100%);
  color: var(--text-white);
  padding: 0.65rem 1rem;
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 75px;
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.timer-box span {
  font-family: var(--font-en);
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--accent);
}

.timer-box small {
  font-size: 0.75rem;
  font-weight: 500;
  opacity: 0.8;
  margin-top: 0.2rem;
}

.timer-divider {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--bg-dark);
}

/* Hero Visual Graphic */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-img-card {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 3px; /* This represents the border width */
  background: transparent;
  box-shadow: var(--shadow-lg);
  transform: rotate(-3deg);
  transition: var(--transition);
  z-index: 2;
  overflow: hidden;
  max-width: 460px; /* Increased from 420px to balance left side column height */
  width: 100%;
  display: flex;
}

.hero-img-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    from 0deg,
    transparent 20%,
    var(--primary) 40%,
    var(--accent) 60%,
    transparent 80%
  );
  animation: rotate-border 4s linear infinite;
  z-index: -2;
}

.hero-img-inner {
  background: #ffffff;
  border-radius: calc(var(--radius-lg) - 3px);
  padding: 0.75rem;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  position: relative;
  overflow: hidden;
}

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

.hero-img-card:hover {
  transform: rotate(0deg) scale(1.03);
  box-shadow: 0 25px 60px rgba(124, 58, 237, 0.25);
}

.card-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-img {
  width: 100%;
  height: auto;
  border-radius: calc(var(--radius-lg) - 0.75rem);
  object-fit: cover;
  transition: var(--transition);
}

/* Hero Dynamic Product Slider */
.hero-slider-track-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: calc(var(--radius-lg) - 0.75rem);
  user-select: none;
  touch-action: pan-y;
}

.hero-slider-track {
  display: flex;
  width: 100%;
  transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  cursor: grab;
}

.hero-slider-track:active {
  cursor: grabbing;
}

.hero-slide {
  flex: 0 0 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slide img {
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: cover;
  border-radius: calc(var(--radius-lg) - 0.75rem);
  display: block;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

.hero-slider-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 10;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(6px);
  padding: 5px 12px;
  border-radius: 20px;
}

.hero-slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.hero-slider-dot.active {
  width: 20px;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
}

.floating-badge {
  position: absolute;
  top: -20px;
  left: 20px;
  background: linear-gradient(135deg, var(--accent) 0%, #ff4b33 100%);
  color: var(--text-white);
  padding: 1.15rem;
  border-radius: 50%;
  height: 95px;
  width: 95px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-shadow: 0 10px 25px var(--accent-glow);
  transform: rotate(-12deg);
  animation: float-badge 4s ease-in-out infinite;
  border: 2px dashed rgba(255, 255, 255, 0.5);
}

@keyframes float-badge {
  0% { transform: translateY(0px) rotate(-12deg); }
  50% { transform: translateY(-8px) rotate(-12deg); }
  100% { transform: translateY(0px) rotate(-12deg); }
}

.badge-number {
  font-family: var(--font-en);
  font-weight: 900;
  font-size: 1.5rem;
  line-height: 1;
}

.badge-label {
  font-size: 0.75rem;
  font-weight: 700;
  white-space: nowrap;
}



.hero-promo-card {
  position: absolute;
  bottom: -20px;
  right: 10px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
  padding: 0.9rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.8);
  z-index: 10;
  animation: float-promo 5s ease-in-out infinite;
}

@keyframes float-promo {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0px); }
}

.hero-promo-card i {
  color: var(--primary);
  font-size: 2rem;
  background-color: var(--primary-light);
  padding: 0.5rem;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-promo-card h4 {
  font-size: 0.95rem;
  margin-bottom: 0.1rem;
}

.hero-promo-card p {
  font-size: 0.75rem;
  color: var(--text-light);
}

.hero-price-wrap {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.15rem;
}

.hero-price-tag {
  font-size: 1.1rem;
  font-weight: 800;
  color: #10b981;
}

.hero-old-price {
  font-size: 0.8rem;
  color: #ef4444;
  text-decoration: line-through;
  opacity: 0.85;
}

.hero-save-tag {
  font-size: 0.65rem;
  font-weight: 700;
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  padding: 2px 6px;
  border-radius: 4px;
  border: 1px solid rgba(239, 68, 68, 0.25);
  white-space: nowrap;
}

/* Features Grid */
.features-section {
  padding: 4rem 0;
  background-color: var(--bg-card);
  border-bottom: 1px solid var(--border);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.feature-card {
  padding: 1.5rem;
  border-radius: var(--radius-md);
  background-color: var(--bg-base);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-focus);
}

.feature-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.bg-purple-light {
  background-color: #f3e8ff;
  color: #7c3aed;
}

.bg-emerald-light {
  background-color: #d1fae5;
  color: #10b981;
}

.bg-coral-light {
  background-color: var(--accent-glow);
  color: var(--accent-hover);
}

.bg-blue-light {
  background-color: #dbeafe;
  color: #2563eb;
}

.feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* Sections Header */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-subtitle {
  display: inline-block;
  color: var(--primary);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--text-dark);
}

.section-divider {
  width: 60px;
  height: 4px;
  background-color: var(--accent);
  margin: 0.75rem auto 0;
  border-radius: var(--radius-full);
}

/* Product Showcase Grid */
.products-section {
  padding: 5rem 0;
}

.products-container {
  width: 100%;
  max-width: 1360px; /* Wider container for 4 columns */
  margin: 0 auto;
  padding: 0 1.5rem;
}

.products-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem; /* Clean card spacing gap */
}

.product-card {
  background-color: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  width: calc(25% - 1.15rem); /* Expanded card width */
  min-width: 260px; /* Responsive safety limit */
  flex-grow: 0;
  flex-shrink: 0;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-focus);
}

.product-img-wrapper {
  position: relative;
  aspect-ratio: 1 / 1;
  background-color: #f8fafc;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.product-card:hover .product-img {
  transform: scale(1.05);
}

.discount-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: var(--danger);
  color: var(--text-white);
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.85rem;
  font-family: var(--font-bn);
  z-index: 2;
  box-shadow: 0 4px 10px rgba(239, 68, 68, 0.3);
  animation: pulse-danger 2s infinite;
}

@keyframes pulse-danger {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.product-info {
  padding: 1.25rem; /* Clean interior padding */
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}

.rating i {
  color: #fbbf24;
  font-size: 0.85rem;
}

.rating span {
  font-family: var(--font-en);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-light);
  margin-left: 0.25rem;
}

.product-name {
  font-size: 1.15rem; /* Smaller compact heading size */
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.35;
  min-height: 3.2rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-desc {
  font-size: 0.85rem; /* Optimized descriptions text */
  color: var(--text-light);
  margin-bottom: 1rem;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex-grow: 1;
}

.price-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  padding: 0.25rem 0; /* Clean inline layout without backgrounds */
}

.current-price {
  font-family: var(--font-en);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--primary);
}

.regular-price {
  font-family: var(--font-en);
  font-size: 0.95rem;
  color: var(--text-light);
  text-decoration: line-through;
}

.product-actions {
  margin-top: auto;
}

.product-actions .btn {
  width: 100%;
}

/* Product Focus Feature Detail Section */
.focus-section {
  padding: 5rem 0;
  background-color: var(--bg-dark);
  color: var(--text-white);
  position: relative;
  overflow: hidden;
}

.focus-section h2 {
  color: var(--text-white);
}

.focus-container {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

.focus-image-panel {
  display: flex;
  justify-content: center;
}

.focus-img {
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  max-width: 400px;
  width: 100%;
  border: 4px solid rgba(255, 255, 255, 0.1);
}

.badge-highlight {
  display: inline-block;
  background-color: var(--accent);
  color: var(--text-white);
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.focus-content-panel h2 {
  font-size: 2.25rem;
  margin-bottom: 1.25rem;
}

.focus-content-panel > p {
  color: #94a3b8;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.focus-points {
  margin-bottom: 2.5rem;
}

.focus-point {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.point-number {
  background-color: var(--primary);
  color: var(--text-white);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.point-text h4 {
  color: var(--text-white);
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
}

.point-text p {
  color: #94a3b8;
  font-size: 0.95rem;
}

/* Reviews Testimonials Section */
.reviews-section {
  padding: 6rem 0;
  background-color: var(--bg-card);
  background-image: radial-gradient(var(--border) 1.5px, transparent 1.5px);
  background-size: 24px 24px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

/* Background gradient blobs to add depth */
.reviews-section::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.05) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
}

.reviews-slider-container {
  width: 100%;
  max-width: 1200px; /* Expanded for 3-card layout */
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.reviews-slider-track {
  display: flex;
  gap: 2rem; /* Clear card spacing gap */
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  width: 100%;
}

.slider-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
  position: relative;
  z-index: 3;
}

.slider-btn {
  background-color: #ffffff;
  color: var(--primary);
  border: 1px solid var(--border);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.slider-btn:hover {
  background-color: var(--primary);
  color: var(--text-white);
  border-color: var(--primary);
  transform: scale(1.08);
}

.slider-dots {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--border-focus);
  cursor: pointer;
  transition: var(--transition);
  opacity: 0.5;
}

.slider-dot.active {
  background-color: var(--primary);
  opacity: 1;
  transform: scale(1.2);
  width: 20px; /* Elegant pill-shaped active dot */
  border-radius: 5px;
}

.review-card {
  flex: 0 0 calc(33.333% - 1.34rem); /* 3 cards visible on desktop, accounting for 2rem track gaps! */
  width: calc(33.333% - 1.34rem);
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2.25rem 2.25rem 2.25rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

@media (max-width: 992px) {
  .review-card {
    flex: 0 0 calc(50% - 1rem); /* 2 cards visible on tablets, accounting for 2rem track gaps! */
    width: calc(50% - 1rem);
  }
}

@media (max-width: 600px) {
  .review-card {
    flex: 0 0 100%; /* 1 card visible on mobile viewports */
    width: 100%;
  }
}

/* Elegant Double Quote Background Overlay - shifted outside slightly for editorial depth */
.review-card::after {
  content: "“";
  position: absolute;
  top: -15px;
  right: 25px;
  font-size: 6.5rem;
  font-family: var(--font-en);
  font-weight: 900;
  color: rgba(124, 58, 237, 0.07);
  line-height: 1;
  pointer-events: none;
}

.review-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 50px rgba(124, 58, 237, 0.1);
  border-color: rgba(124, 58, 237, 0.3);
  background: #ffffff;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.reviewer-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  object-fit: cover;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.review-card:hover .reviewer-avatar {
  transform: scale(1.08) rotate(3deg);
  border-color: var(--accent);
}

.reviewer-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  display: flex;
  align-items: center;
}

.verified-badge {
  color: #3b82f6; /* Verified check blue color */
  font-size: 0.95rem;
  margin-left: 0.35rem;
}

.reviewer-location {
  font-size: 0.8rem;
  color: var(--text-light);
  display: block;
  margin-top: 0.2rem;
}

.rating-stars {
  color: #fbbf24;
  text-shadow: 0 0 5px rgba(251, 191, 36, 0.45); /* Glowing stars */
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
  display: flex;
  gap: 0.15rem;
}

.review-text {
  font-style: normal;
  font-size: 1rem;
  line-height: 1.6;
  color: #334155;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.review-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px dashed var(--border);
}

.review-date {
  font-size: 0.75rem;
  color: var(--text-light);
  font-family: var(--font-bn);
}

.verified-purchase {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--success);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background-color: rgba(16, 185, 129, 0.08);
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  width: fit-content;
}

/* One-Page Checkout Area */
.order-section {
  padding: 5.5rem 0;
  background-color: #f5f2fc;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.checkout-only-section {
  padding: 2rem 0 5.5rem 0; /* Reduced top padding for dedicated checkout page */
}

@media (max-width: 768px) {
  .checkout-only-section {
    padding: 1.25rem 0 3.5rem 0; /* Even tighter spacing on mobile viewports */
  }
}

.order-container {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 3rem;
  align-items: start;
}

.order-form-wrapper {
  background-color: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  padding: 2.5rem;
}

.order-form-header {
  border-bottom: 1px solid var(--border);
  padding-bottom: 1.5rem;
  margin-bottom: 2rem;
}

.order-form-header h2 {
  font-size: 1.75rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.order-form-header p {
  color: var(--text-light);
  font-size: 0.95rem;
}

.form-section {
  margin-bottom: 2.25rem;
  border-bottom: 1px dashed var(--border);
  padding-bottom: 1.75rem;
}

.form-section:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}

.form-sec-title {
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-left: 4px solid var(--primary);
  padding-left: 0.75rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.required {
  color: var(--danger);
  font-weight: 700;
}

.form-group input, 
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  font-family: var(--font-bn);
  font-size: 1rem;
  color: var(--text-dark);
  transition: var(--transition);
  background-color: var(--bg-base);
}

.form-group select,
.form-select {
  width: 100%;
  height: 48px;
  padding: 0.75rem 2.2rem 0.75rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  font-family: var(--font-bn);
  font-size: 1rem;
  color: var(--text-dark);
  background-color: #ffffff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%237c3aed' viewBox='0 0 16 16'><path d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 14px 14px;
}

.form-group input:focus, 
.form-group textarea:focus,
.form-group select:focus,
.form-select:focus {
  outline: none;
  border-color: var(--primary);
  background-color: var(--bg-card);
  box-shadow: 0 0 0 3px var(--primary-glow);
}

.form-group select:disabled,
.form-select:disabled {
  background-color: #f1f5f9;
  color: #94a3b8;
  cursor: not-allowed;
  opacity: 0.75;
}

.input-hint {
  display: block;
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 0.35rem;
}

/* Product Selection custom cards */
.product-selector-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.selector-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  cursor: pointer;
  background-color: var(--bg-base);
  transition: var(--transition);
  user-select: none;
  position: relative;
}

.selector-card:hover {
  border-color: var(--border-focus);
  background-color: var(--bg-card);
}

.selector-card input[type="radio"] {
  width: 20px;
  height: 20px;
  accent-color: var(--primary);
  cursor: pointer;
  margin-right: 0.5rem;
}

.selector-card img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid var(--border);
}

.selector-details {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.sel-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.sel-price {
  font-family: var(--font-en);
  font-weight: 700;
  color: var(--primary);
  font-size: 0.95rem;
}

.sel-price del {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-left: 0.5rem;
}

.selector-card.active {
  border-color: var(--primary);
  background-color: var(--primary-light);
  box-shadow: var(--shadow-sm);
}

/* Quantity selector */
.quantity-controller {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.25rem;
  padding: 1rem;
  background-color: var(--bg-base);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

.quantity-controller label {
  font-weight: 600;
  color: var(--text-dark);
}

.qty-btn-group {
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background-color: var(--bg-card);
  overflow: hidden;
}

.qty-btn {
  border: none;
  background: none;
  color: var(--primary);
  width: 36px;
  height: 36px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: var(--transition);
}

.qty-btn:hover {
  background-color: var(--primary-light);
}

.qty-btn-group input {
  border: none;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  width: 50px;
  height: 36px;
  text-align: center;
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-dark);
}

.qty-btn-group input:focus {
  outline: none;
}

/* Shipping custom checkboxes */
.shipping-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.shipping-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1rem;
  cursor: pointer;
  background-color: var(--bg-base);
  transition: var(--transition);
  display: flex;
  align-items: center;
}

.shipping-card input[type="radio"] {
  width: 20px;
  height: 20px;
  accent-color: var(--primary);
  cursor: pointer;
  margin-right: 0.75rem;
}

.shipping-card.active {
  border-color: var(--primary);
  background-color: var(--primary-light);
  box-shadow: var(--shadow-sm);
}

.shipping-details {
  display: flex;
  flex-direction: column;
}

.ship-zone {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.ship-charge {
  font-size: 0.85rem;
  color: var(--primary);
  font-weight: 600;
}

/* Summary Dashboard Box */
.order-summary-box {
  background-color: var(--bg-base);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.summary-title {
  font-size: 1.1rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.75rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.summary-line {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
  margin-bottom: 0.65rem;
  color: var(--text-medium);
}

.summary-line span:last-child {
  font-family: var(--font-en);
  font-weight: 700;
}

.summary-divider {
  border-top: 1px dashed var(--border);
  margin: 1rem 0;
}

.total-line {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0;
}

.total-line span:last-child {
  font-size: 1.45rem;
  color: var(--accent);
}

/* Pulsing Submit Button */
.order-submit-btn {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  padding: 1.15rem 2rem;
  background-color: var(--accent);
  color: var(--text-white);
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 8px 25px var(--accent-glow);
  position: relative;
  overflow: hidden;
}

.order-submit-btn::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(30deg);
  animation: shine 4s infinite linear;
}

@keyframes shine {
  0% { transform: translate(-100%, -100%) rotate(30deg); }
  100% { transform: translate(100%, 100%) rotate(30deg); }
}

.order-submit-btn:hover {
  background-color: var(--accent-hover);
  transform: scale(1.02);
  box-shadow: 0 12px 30px var(--accent-glow);
}

.btn-main-text {
  font-size: 1.35rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.pulse-icon {
  animation: pulse-icon 1s infinite alternate;
}

@keyframes pulse-icon {
  from { transform: scale(1); }
  to { transform: scale(1.2); }
}

.btn-sub-text {
  font-size: 0.8rem;
  font-weight: 500;
  opacity: 0.9;
  letter-spacing: 0.5px;
}

.secure-checkout-badge {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}

.secure-checkout-badge i {
  color: var(--primary);
}

/* Sidebar Info Panel */
.order-info-sidebar {
  background-color: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  padding: 2rem;
  position: sticky;
  top: 100px;
}

.info-sidebar-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1.5rem;
}

.info-sidebar-logo img {
  height: 70px;
  width: 70px;
  border-radius: 50%;
  border: 3px solid var(--primary);
  margin-bottom: 0.75rem;
}

.info-sidebar-logo h3 {
  font-family: var(--font-en);
  font-size: 1.1rem;
  letter-spacing: -0.5px;
}

.promo-box {
  background-color: var(--primary-light);
  border: 1px dashed var(--primary);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  margin-bottom: 2rem;
}

.promo-box h3 {
  color: var(--primary);
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.promo-box p {
  font-size: 0.85rem;
  color: var(--text-medium);
  margin-bottom: 1rem;
}

.contact-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition);
}

.contact-btn.phone {
  background-color: var(--primary);
  color: var(--text-white);
  font-family: var(--font-en);
}

.contact-btn.phone:hover {
  background-color: var(--primary-hover);
}

.contact-btn.whatsapp {
  background-color: #25d366;
  color: var(--text-white);
}

.contact-btn.whatsapp:hover {
  background-color: #20ba5a;
}

.policy-box {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.policy-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.policy-item i {
  font-size: 1.15rem;
  margin-top: 0.15rem;
}

.policy-item h4 {
  font-size: 0.95rem;
  margin-bottom: 0.15rem;
  color: var(--text-dark);
}

.policy-item p {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.4;
}

/* FAQ Accordion Styles */
/* FAQ Accordion Styles */
.faq-section {
  padding: 6rem 0;
  background-color: var(--bg-base);
  position: relative;
  overflow: hidden;
}

.faq-container-split {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 4rem;
  align-items: start;
}

/* Left Panel Style */
.faq-info-card {
  position: sticky;
  top: 100px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.04) 0%, rgba(255, 101, 80, 0.02) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-sm);
}

.faq-badge {
  background-color: var(--primary-light);
  color: var(--primary);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.faq-info-card h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.faq-info-card p {
  color: var(--text-medium);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 2.25rem;
}

.faq-support-box {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.support-btn {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-family: var(--font-bn);
  font-weight: 700;
  transition: var(--transition);
  border: 1px solid transparent;
}

.support-btn i {
  font-size: 1.5rem;
}

.support-btn div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
}

.support-btn div small {
  font-size: 0.75rem;
  font-weight: 500;
  opacity: 0.8;
}

.support-btn div span {
  font-size: 1.1rem;
}

.support-btn.phone {
  background-color: var(--primary);
  color: var(--text-white);
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.2);
}

.support-btn.phone:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(124, 58, 237, 0.3);
}

.support-btn.whatsapp {
  background-color: #25d366;
  color: var(--text-white);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
}

.support-btn.whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

/* Right Panel: Accordions */
.faq-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  width: 100%;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background-color: #ffffff;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.01);
}

.faq-question {
  width: 100%;
  padding: 1.5rem;
  border: none;
  background: none;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-bn);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text-dark);
  cursor: pointer;
  transition: var(--transition);
  gap: 1.5rem;
}

.faq-question:hover {
  color: var(--primary);
}

.faq-icon-wrapper {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
}

.faq-icon-wrapper i {
  font-size: 0.85rem;
  transition: transform 0.4s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border-top: 1px solid transparent;
}

.faq-answer p {
  padding: 0 1.5rem 1.5rem 1.5rem;
  font-size: 0.95rem;
  color: var(--text-medium);
  line-height: 1.65;
}

/* Active Accordion Item styling */
.faq-item.active {
  border-color: rgba(124, 58, 237, 0.3);
  box-shadow: 0 15px 35px rgba(124, 58, 237, 0.06);
}

.faq-item.active .faq-question {
  color: var(--primary);
}

.faq-item.active .faq-icon-wrapper {
  background-color: var(--accent);
  color: var(--text-white);
  transform: rotate(180deg);
  box-shadow: 0 4px 10px rgba(255, 101, 80, 0.3);
}

.faq-item.active .faq-answer {
  border-top-color: rgba(0, 0, 0, 0.03);
}

@media (max-width: 992px) {
  .faq-container-split {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .faq-info-card {
    position: static;
    padding: 2.25rem 1.75rem;
  }
  
  /* Hide links and order CTA in navbar to prevent line overlaps */
  .nav-menu,
  .nav-cta-btn {
    display: none !important;
  }
  
  /* Stack hero section vertically on tablets and mobile screens */
  .hero-container {
    grid-template-columns: 1fr !important;
    gap: 3rem;
  }
  
  .hero-visual {
    order: -1; /* Display image card above texts */
    margin-bottom: 2rem;
  }
}

/* Footer Section */
.main-footer {
  background-color: var(--bg-dark);
  color: #94a3b8;
  padding: 5rem 0 0;
  border-top: 4px solid var(--primary);
}

.footer-container {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 1.1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-col-about .footer-logo {
  height: 60px;
  width: 60px;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.footer-brand-title {
  color: var(--text-white);
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: #94a3b8;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
}

.footer-socials a {
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--text-white);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.footer-socials a:hover {
  background-color: var(--primary);
  transform: translateY(-3px);
}

.footer-col-links h3, 
.footer-col-contact h3 {
  color: var(--text-white);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-col-links h3::after, 
.footer-col-contact h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2.5px;
  background-color: var(--accent);
  border-radius: var(--radius-full);
}

.footer-col-links ul {
  list-style: none;
}

.footer-col-links ul li {
  margin-bottom: 0.75rem;
}

.footer-col-links ul li a {
  font-size: 0.95rem;
  color: #94a3b8;
}

.footer-col-links ul li a:hover {
  color: var(--text-white);
  padding-left: 0.35rem;
}

.footer-col-contact p {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  color: #94a3b8;
}

.footer-col-contact p i {
  color: var(--primary);
}

.footer-col-contact a:hover {
  color: var(--text-white);
}

.payment-partners {
  margin-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.25rem;
}

.payment-partners h5 {
  color: var(--text-white);
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
}

.payment-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.payment-badge {
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--text-white);
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem 0;
}

.footer-bottom-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: #64748b;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom-container a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.footer-bottom-container a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

/* Permanent ThemeFlex Branding Protection */
.themeflex-developer-credit,
.footer-bottom-container p:last-child {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* Modals Overlay Base */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 999999;
  background-color: rgba(18, 14, 46, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 1.5rem;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-box {
  background-color: var(--bg-card);
  border-radius: var(--radius-lg);
  max-width: 520px;
  width: 100%;
  padding: 2.5rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
  border: 1px solid var(--border);
  text-align: center;
  transform: translateY(30px);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-overlay.active .modal-box {
  transform: translateY(0);
}

.modal-success-icon {
  font-size: 4rem;
  color: var(--success);
  margin-bottom: 1.25rem;
}

.modal-box h2 {
  font-size: 1.65rem;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.modal-subtext {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.modal-order-details {
  background-color: var(--bg-base);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  text-align: left;
  margin-bottom: 1.5rem;
}

.modal-detail-line {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.modal-detail-line:last-child {
  margin-bottom: 0;
  border-top: 1px dashed var(--border);
  padding-top: 0.5rem;
  margin-top: 0.5rem;
}

.modal-detail-line strong {
  color: var(--text-dark);
}

.modal-notice {
  background-color: #fffbeb;
  border: 1px solid #fef3c7;
  border-radius: var(--radius-sm);
  padding: 1rem;
  font-size: 0.85rem;
  color: #92400e;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  text-align: left;
  margin-bottom: 2rem;
}

.modal-notice i {
  font-size: 1.2rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.modal-box .btn {
  width: 100%;
}

/* Policy Modal overrides */
.policy-box-modal {
  max-width: 700px;
  text-align: left;
  position: relative;
}

.modal-close-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--text-light);
  transition: var(--transition);
}

.modal-close-btn:hover {
  color: var(--text-dark);
}

.policy-box-modal h2 {
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.75rem;
  margin-bottom: 1.25rem;
  color: var(--primary);
}

.policy-content-body {
  max-height: 350px;
  overflow-y: auto;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  color: var(--text-medium);
  line-height: 1.6;
}

.policy-content-body h4 {
  margin-top: 1rem;
  margin-bottom: 0.25rem;
  color: var(--text-dark);
}

.policy-content-body ul {
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}

/* Mobile Sticky Float Checkout Button */
.mobile-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 0.75rem 1.5rem;
  border-top: 1px solid var(--border);
  box-shadow: 0 -8px 25px rgba(0, 0, 0, 0.08);
  z-index: 90;
  display: none;
  align-items: center;
  justify-content: space-between;
}

.sticky-cta-price {
  display: flex;
  flex-direction: column;
}

.sticky-cta-price span:first-child {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1;
}

.sticky-cta-price span:last-child {
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--accent);
}

.mobile-sticky-cta .btn {
  padding: 0.65rem 1.5rem;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
}

/* Responsive Media Queries */

/* Tablet (1024px) */
@media (max-width: 1024px) {
  .hero-container {
    gap: 2rem;
  }
  
  .hero-title {
    font-size: 2.25rem;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .products-grid {
    gap: 1.5rem;
  }
  
  .product-card {
    width: calc(50% - 1rem); /* 2 columns layout on tablets */
  }
  
  .order-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .order-info-sidebar {
    position: static;
  }
  
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  
  .footer-col-about {
    grid-column: span 2;
  }
}

/* Mobile Only Order Button Under Title */
.hero-title-mobile-cta {
  display: none !important;
}

/* Mobile Devices (768px) */
@media (max-width: 768px) {
  .hero-title-mobile-cta {
    display: block !important;
    margin: 14px 0 16px 0;
    width: 100%;
  }

  #hero-order-btn,
  .hero-buttons #hero-order-btn,
  .hero-buttons .btn-accent {
    display: none !important;
  }

  .hero-title-mobile-cta .btn {
    display: flex !important;
    width: 100% !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 10px;
    font-size: 1.15rem;
    font-weight: 700;
    padding: 14px 20px;
    border-radius: 12px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff4757 100%) !important;
    color: #ffffff !important;
    box-shadow: 0 8px 25px rgba(255, 71, 87, 0.45) !important;
    text-align: center;
    text-decoration: none;
  }

  html {
    font-size: 15px;
  }
  
  .navbar {
    padding: 0.25rem 0;
  }

  .feature-card h3 {
    font-size: calc(1.2rem - 5px);
  }
  
  .nav-phone {
    font-size: 0.95rem;
    padding: 0.4rem 0.75rem;
  }
  
  .hero-img-card {
    max-width: 320px;
    margin: 0 auto;
  }
  
  /* Scaled down badges for Mobile hero section */
  .floating-badge {
    width: 65px;
    height: 65px;
    padding: 0.25rem;
    top: -10px;
    left: 5px;
  }
  
  .badge-number {
    font-size: 1.05rem;
  }
  
  .badge-label {
    font-size: 0.55rem;
  }

  .hero-promo-card {
    padding: 0.45rem 0.75rem;
    gap: 0.5rem;
    bottom: -12px;
    right: 5px;
    border-radius: var(--radius-sm);
  }

  .hero-promo-card i {
    width: 32px;
    height: 32px;
    font-size: 1.1rem;
    padding: 0.25rem;
  }

  .hero-promo-card h4 {
    font-size: 0.75rem;
    margin-bottom: 0;
  }

  .hero-price-wrap {
    gap: 0.35rem;
    margin-top: 0.05rem;
  }

  .hero-price-tag {
    font-size: 0.85rem;
  }

  .hero-old-price {
    font-size: 0.65rem;
  }

  .hero-save-tag {
    font-size: 0.55rem;
    padding: 1px 4px;
  }
  
  .focus-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .focus-img {
    max-width: 320px;
  }
  
  .shipping-options {
    grid-template-columns: 1fr;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
  }
  
  .footer-col-about {
    grid-column: span 1;
  }
  
  .mobile-sticky-cta {
    display: flex;
  }
  
  body {
    padding-bottom: 70px; /* Make room for sticky mobile cta */
  }
  
  /* Keep 2 columns for products on tablets */
  .product-card {
    width: calc(50% - 1rem);
  }
}

/* Small Mobile (600px) */
@media (max-width: 600px) {
  .products-grid {
    gap: 0.75rem; /* Compact card spacing */
    padding: 0 0.25rem;
  }
  
  .product-card {
    width: calc(50% - 0.375rem); /* 2 columns on mobile */
    min-width: unset;
    border-radius: var(--radius-md);
  }

  .discount-badge {
    top: 8px;
    left: 8px;
    font-size: 0.7rem;
    padding: 0.2rem 0.45rem;
    border-radius: 4px;
  }

  .product-card:last-child:nth-child(odd) {
    width: 100%; /* Spans full width if odd at the bottom */
  }

  .product-info {
    padding: 0.75rem;
  }

  .product-name {
    font-size: 0.9rem;
    min-height: 2.4rem;
    margin-bottom: 0.35rem;
    -webkit-line-clamp: 2;
  }

  .product-desc {
    display: none; /* Hide description in 2-column cards */
  }

  .rating {
    margin-bottom: 0.25rem;
  }

  .rating span {
    font-size: 0.7rem;
  }

  .price-container {
    gap: 0.5rem;
    margin-bottom: 0.75rem;
  }

  .current-price {
    font-size: 1.15rem;
  }

  .regular-price {
    font-size: 0.85rem;
  }

  .product-actions .btn {
    font-size: 0.85rem;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  /* Make CTA buttons full-width on mobile to align with the countdown box and improve tap target accessibility */
  .hero-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 440px; /* Match countdown-wrapper width */
    gap: 0.85rem;
  }

  #hero-order-btn,
  .hero-buttons .btn-accent,
  .hero-buttons #hero-order-btn {
    display: none !important;
  }
  
  .hero-buttons .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  
  .countdown-timer {
    gap: 0.5rem;
  }
  
  .timer-box {
    min-width: 65px;
    padding: 0.5rem 0.75rem;
  }
  
  .timer-box span {
    font-size: 1.4rem;
  }
  
  .timer-divider {
    font-size: 1.4rem;
  }
  
  .order-form-wrapper {
    padding: 1.5rem;
  }
  
  .selector-card {
    padding: 0.65rem 0.85rem;
    gap: 0.75rem;
  }
  
  .selector-card img {
    width: 44px;
    height: 44px;
  }
}

/* Extra Small Mobile (480px) */
@media (max-width: 480px) {
  .hero-title {
    font-size: 1.8rem;
  }
  
  .timer-box {
    min-width: 58px;
    padding: 0.4rem 0.5rem;
  }
  
  .timer-box span {
    font-size: 1.25rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .selector-card {
    padding: 0.5rem 0.75rem;
    gap: 0.5rem;
  }
  
  .selector-card img {
    width: 40px;
    height: 40px;
  }
}

/* Mobile Bottom Sticky Navigation */
.mobile-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--primary);
  display: none;
  justify-content: space-around;
  align-items: center;
  padding: 0.65rem 0.5rem;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.15);
  z-index: 1000;
}

.mobile-bottom-nav .nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.75rem;
  font-family: var(--font-bn);
  gap: 0.25rem;
  transition: var(--transition);
  flex: 1;
}

.mobile-bottom-nav .nav-item i {
  font-size: 1.25rem;
}

.mobile-bottom-nav .nav-item span {
  font-weight: 500;
}

.mobile-bottom-nav .nav-item.active,
.mobile-bottom-nav .nav-item:hover {
  color: var(--text-white);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .mobile-bottom-nav {
    display: flex;
  }
  body {
    padding-bottom: 80px !important; /* Make room for sticky mobile nav */
  }
}

/* Product Card Details Button & Actions Alignment */
.product-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: auto;
}

.details-btn {
  background-color: #f8fafc;
  color: var(--primary);
  border: 1.5px solid var(--primary-light, #c084fc);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 0.55rem 0.8rem;
  border-radius: var(--radius-md);
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  cursor: pointer;
  width: 100%;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

.details-btn:hover,
.details-btn:active {
  background-color: rgba(124, 58, 237, 0.08);
  border-color: var(--primary);
  color: var(--primary-dark);
  transform: translateY(-1px);
}

/* Product Details Popup Modal */
.modal-card {
  background: #ffffff;
  border-radius: 1.25rem;
  max-width: 800px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35);
  transform: scale(0.92);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active .modal-card {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f1f5f9;
  border: none;
  font-size: 1.4rem;
  line-height: 1;
  color: #475569;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.modal-close-btn:hover {
  background: #e2e8f0;
  color: #0f172a;
}

.modal-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 1.5rem;
  padding: 1.5rem;
}

@media (max-width: 768px) {
  .modal-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding: 1.25rem;
  }
}

.gallery-container {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.main-image-box {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 0.85rem;
  overflow: hidden;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.2s ease;
}

.thumbs-strip {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 0.25rem;
}

.thumb-item {
  width: 62px;
  height: 62px;
  border-radius: 0.6rem;
  border: 2px solid #e2e8f0;
  overflow: hidden;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.thumb-item.active {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(124, 58, 237, 0.25);
}

.thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-details {
  display: flex;
  flex-direction: column;
}

.modal-product-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.35;
  margin-bottom: 0.4rem;
}

.modal-price-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.85rem;
}

.modal-price {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--primary);
}

.modal-regular-price {
  font-size: 1rem;
  color: #94a3b8;
  text-decoration: line-through;
}

.modal-badge {
  background: #ff4757;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.2rem 0.55rem;
  border-radius: 20px;
}

.modal-features-list {
  list-style: none;
  padding: 0;
  margin: 0.6rem 0 1rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.modal-features-list li {
  font-size: 0.88rem;
  color: #334155;
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  line-height: 1.4;
}

.modal-features-list li i {
  color: #10b981;
  font-size: 0.95rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.modal-desc-box {
  background: #f8fafc;
  padding: 0.75rem 0.9rem;
  border-radius: 0.65rem;
  border-left: 3px solid var(--primary);
  font-size: 0.85rem;
  color: #475569;
  line-height: 1.45;
  margin-bottom: 0.85rem;
}

.modal-action-btn {
  margin-top: auto;
  width: 100%;
}
