/* ==========================================================================
   UNISEX BODY SHAPER BELT - LUXURY E-COMMERCE STYLESHEET
   Optimized for High Conversion, Lightning Fast Performance & Pure Responsive Design
   ========================================================================== */

:root {
  --primary: #f43f5e;
  --primary-hover: #e11d48;
  --primary-light: rgba(244, 63, 94, 0.08);
  --primary-glow: rgba(244, 63, 94, 0.25);
  
  --secondary: #0f172a;
  --secondary-light: #1e293b;
  --accent-gold: #f59e0b;
  --accent-green: #10b981;
  --accent-green-light: rgba(16, 185, 129, 0.1);
  
  --bg-dark: #090d16;
  --bg-card-dark: #131b2e;
  --bg-light: #f8fafc;
  --bg-card: #ffffff;
  
  --text-main: #0f172a;
  --text-muted: #64748b;
  --text-light: #f8fafc;
  --text-light-muted: #94a3b8;
  
  --border-color: #e2e8f0;
  --border-dark: #27354f;
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 20px 35px -5px rgba(0, 0, 0, 0.12), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-glow: 0 10px 30px rgba(244, 63, 94, 0.35);

  --font-en: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-bn: 'Baloo Da 2', 'Hind Siliguri', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-en);
  background-color: var(--bg-light);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

html[lang="bn"] body {
  font-family: var(--font-bn);
  line-height: 1.7;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button, input, select, textarea {
  font: inherit;
}

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Top Announcement Banner */
.announcement-bar {
  background: linear-gradient(90deg, #111827 0%, #1f2937 50%, #111827 100%);
  color: #fff;
  padding: 10px 16px;
  font-size: 0.88rem;
  font-weight: 600;
  text-align: center;
  border-bottom: 1px solid rgba(244, 63, 94, 0.3);
  position: relative;
  z-index: 100;
}

.announcement-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.announcement-badge {
  background: var(--primary);
  color: #fff;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  animation: pulse-glow 2s infinite ease-in-out;
}

@keyframes pulse-glow {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.9; transform: scale(1.05); }
}

/* Site Header */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  z-index: 99;
  transition: all 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
  height: auto;
  padding: 8px 0;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--secondary);
  letter-spacing: -0.5px;
}

.brand-logo i {
  color: var(--primary);
  font-size: 1.4rem;
}

.brand-logo span {
  color: var(--primary);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.lang-switch-btn {
  padding: 6px 14px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-color);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--secondary);
  transition: all 0.2s ease;
  background: #fff;
}

.lang-switch-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-light);
}

.btn-header-order {
  background: var(--primary);
  color: #fff;
  padding: 9px 20px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
  box-shadow: 0 4px 15px rgba(244, 63, 94, 0.3);
}

.btn-header-order:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-glow);
}

/* Hero Section */
.hero-section {
  padding: 40px 0 60px;
  background: radial-gradient(circle at 10% 20%, rgba(244, 63, 94, 0.05) 0%, transparent 40%),
              radial-gradient(circle at 90% 80%, rgba(15, 23, 42, 0.03) 0%, transparent 40%);
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid #fecdd3;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  width: fit-content;
  box-shadow: var(--shadow-sm);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-hover);
}

.hero-pill-badge i {
  color: var(--primary);
}

.hero-title {
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--secondary);
  letter-spacing: -1px;
}

.hero-title .highlight {
  color: var(--primary);
  position: relative;
  display: inline-block;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: #475569;
  line-height: 1.65;
}

.hero-pricing-card {
  background: #fff;
  border: 2px dashed #fda4af;
  border-radius: var(--radius-md);
  padding: 16px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
  margin: 6px 0;
}

.price-box {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.current-price {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}

.regular-price {
  font-size: 1.2rem;
  color: #94a3b8;
  text-decoration: line-through;
  font-weight: 500;
}

.save-pill {
  background: #ecfdf5;
  color: #059669;
  border: 1px solid #a7f3d0;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 800;
}

.hero-badges-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.micro-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--secondary-light);
  background: rgba(255, 255, 255, 0.8);
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
}

.micro-badge i {
  color: var(--accent-green);
}

.hero-cta-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}

.btn-main-cta {
  background: linear-gradient(135deg, var(--primary) 0%, #db2777 100%);
  color: #fff;
  padding: 18px 36px;
  border-radius: var(--radius-md);
  font-size: 1.25rem;
  font-weight: 800;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: 0 10px 25px rgba(244, 63, 94, 0.4);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: none;
  cursor: pointer;
}

.btn-main-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 35px rgba(244, 63, 94, 0.5);
  filter: brightness(1.05);
}

.cta-guarantee-text {
  font-size: 0.85rem;
  color: #64748b;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* Gallery Showcase Column */
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.main-visual-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 12px;
  box-shadow: var(--shadow-lg);
  position: relative;
  border: 1px solid var(--border-color);
  overflow: hidden;
}

.main-visual-card img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: calc(var(--radius-lg) - 6px);
  transition: transform 0.4s ease;
}

.main-visual-card:hover img {
  transform: scale(1.02);
}

.visual-floating-tag {
  position: absolute;
  top: 24px;
  left: 24px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(8px);
  color: #fff;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: var(--shadow-md);
}

.visual-floating-tag i {
  color: var(--accent-gold);
}

.free-size-stamp {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: linear-gradient(135deg, #059669 0%, #10b981 100%);
  color: #fff;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 800;
  box-shadow: 0 6px 16px rgba(16, 185, 129, 0.4);
  display: flex;
  align-items: center;
  gap: 8px;
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.thumb-item {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: var(--shadow-sm);
}

.thumb-item.active {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px var(--primary-light);
}

.thumb-item img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: calc(var(--radius-md) - 4px);
}

/* Video Showcase Section */
.video-section {
  padding: 60px 0;
  background: #0f172a;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.video-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(244, 63, 94, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.section-header-dark {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 40px;
}

.section-tag {
  color: var(--primary);
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: inline-block;
  margin-bottom: 8px;
}

.section-title-dark {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 12px;
}

.section-subtitle-dark {
  color: var(--text-light-muted);
  font-size: 1.05rem;
}

.video-player-card {
  max-width: 720px;
  margin: 0 auto;
  background: #1e293b;
  border-radius: var(--radius-lg);
  border: 1px solid #334155;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  position: relative;
}

.video-player-card video {
  width: 100%;
  max-height: 520px;
  object-fit: contain;
  background: #000;
  display: block;
}

.video-features-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 800px;
  margin: 36px auto 0;
}

.video-feat-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  text-align: center;
  backdrop-filter: blur(6px);
}

.video-feat-item i {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 10px;
}

.video-feat-item h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.video-feat-item p {
  font-size: 0.85rem;
  color: var(--text-light-muted);
}

/* Dual Audience Showcase (Unisex - Men & Women) */
.unisex-section {
  padding: 80px 0;
  background: #fff;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 50px;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1.25;
  margin-bottom: 12px;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.unisex-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.unisex-card {
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.unisex-card:hover {
  transform: translateY(-4px);
}

.unisex-card.women-card {
  background: linear-gradient(145deg, #fff 0%, #fff1f2 100%);
  border-color: #fecdd3;
}

.unisex-card.men-card {
  background: linear-gradient(145deg, #fff 0%, #f0fdf4 100%);
  border-color: #bbf7d0;
}

.card-target-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.women-card .card-target-badge {
  background: #ffe4e6;
  color: #e11d48;
}

.men-card .card-target-badge {
  background: #dcfce7;
  color: #15803d;
}

.unisex-card h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 14px;
}

.benefits-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.benefits-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: #334155;
  font-weight: 500;
}

.benefits-checklist li i {
  margin-top: 3px;
  font-size: 1rem;
}

.women-card .benefits-checklist li i {
  color: #f43f5e;
}

.men-card .benefits-checklist li i {
  color: #10b981;
}

/* Free Size Advantage Bar */
.free-size-banner {
  margin-top: 48px;
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 30px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: var(--shadow-lg);
}

.free-size-info {
  display: flex;
  align-items: center;
  gap: 24px;
}

.free-size-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(244, 63, 94, 0.2);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  flex-shrink: 0;
}

.free-size-info h4 {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.free-size-info p {
  color: var(--text-light-muted);
  font-size: 0.95rem;
}

/* Key Features & Technology Grid */
.features-section {
  padding: 70px 0;
  background: #f8fafc;
}

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

.feature-box {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 26px 22px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  text-align: center;
}

.feature-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: #fda4af;
}

.feature-icon-wrap {
  width: 58px;
  height: 58px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.feature-box h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 8px;
}

.feature-box p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Social Proof & Customer Reviews */
.reviews-section {
  padding: 70px 0;
  background: #fff;
}

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

.review-card {
  background: #f8fafc;
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: var(--shadow-sm);
}

.reviewer-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--secondary-light);
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.reviewer-info h5 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--secondary);
}

.reviewer-info span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.review-stars {
  color: #f59e0b;
  font-size: 0.85rem;
}

.review-card p {
  font-size: 0.9rem;
  color: #334155;
  font-style: italic;
  line-height: 1.55;
}

/* Interactive Checkout Section */
.checkout-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #f8fafc 0%, #fff1f2 100%);
  position: relative;
}

.checkout-box {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid #fecdd3;
  box-shadow: 0 20px 40px -15px rgba(244, 63, 94, 0.15);
  padding: 40px;
  max-width: 960px;
  margin: 0 auto;
}

.checkout-header {
  text-align: center;
  margin-bottom: 36px;
}

.checkout-header h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 8px;
}

.checkout-header p {
  color: var(--text-muted);
  font-size: 1rem;
}

/* Package Selection Cards */
.packages-heading {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

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

.package-card {
  border: 2px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 20px 16px;
  cursor: pointer;
  transition: all 0.25s ease;
  position: relative;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.package-card.active {
  border-color: var(--primary);
  background: #fff1f2;
  box-shadow: 0 8px 20px rgba(244, 63, 94, 0.18);
  transform: translateY(-2px);
}

.package-top-badge {
  position: absolute;
  top: -11px;
  right: 12px;
  background: var(--primary);
  color: #fff;
  padding: 2px 10px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.package-card:nth-child(3) .package-top-badge {
  background: var(--accent-green);
}

.package-card input[type="radio"] {
  accent-color: var(--primary);
  width: 18px;
  height: 18px;
  margin-bottom: 10px;
}

.package-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 4px;
}

.package-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.package-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

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

.package-old-price {
  font-size: 0.95rem;
  color: #94a3b8;
  text-decoration: line-through;
}

/* Form Layout */
.form-layout-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 36px;
}

.form-inputs-block {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

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

.form-group label {
  font-size: 0.92rem;
  font-weight: 700;
  color: #1e293b;
}

.form-group label .req {
  color: var(--primary);
}

.form-control {
  width: 100%;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border-color);
  background: #f8fafc;
  color: var(--text-main);
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 4px var(--primary-light);
}

/* User-valid & User-invalid modern styles */
.form-control:user-invalid {
  border-color: #ef4444;
  background-color: #fffafb;
}

.form-control:user-valid {
  border-color: #10b981;
}

/* Delivery Area Radio Selector */
.delivery-zones-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.zone-option-card {
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f8fafc;
  transition: all 0.2s ease;
}

.zone-option-card:hover {
  border-color: #cbd5e1;
}

.zone-option-card input[type="radio"]:checked + .zone-text {
  font-weight: 700;
  color: var(--secondary);
}

.zone-option-card:has(input[type="radio"]:checked) {
  border-color: var(--primary);
  background: #fff1f2;
}

.zone-text {
  font-size: 0.88rem;
  color: #475569;
}

/* Color Swatches inside checkout */
.color-choice-row {
  display: flex;
  gap: 12px;
}

.color-swatch-btn {
  flex: 1;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border-color);
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  transition: all 0.2s ease;
}

.color-swatch-btn.active {
  border-color: var(--primary);
  background: #fff1f2;
  color: var(--primary-hover);
}

.color-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: inline-block;
}

.color-dot.black {
  background: #111827;
}

.color-dot.nude {
  background: #e2b49a;
  border: 1px solid #cbd5e1;
}

/* Order Summary Box */
.summary-container {
  background: #f8fafc;
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  gap: 18px;
  height: fit-content;
}

.summary-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--secondary);
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 12px;
}

.summary-table {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.92rem;
  color: #475569;
}

.summary-row strong {
  color: var(--secondary);
}

.summary-row.total-row {
  border-top: 1.5px dashed var(--border-color);
  padding-top: 14px;
  margin-top: 6px;
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--secondary);
}

.summary-row.total-row .grand-total-val {
  color: var(--primary);
  font-size: 1.6rem;
}

.cod-assurance-pill {
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: #065f46;
  font-weight: 600;
}

.cod-assurance-pill i {
  font-size: 1.2rem;
  color: #10b981;
}

.btn-place-order {
  background: linear-gradient(135deg, var(--primary) 0%, #db2777 100%);
  color: #fff;
  border: none;
  padding: 16px 24px;
  border-radius: var(--radius-md);
  font-size: 1.15rem;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 8px 20px rgba(244, 63, 94, 0.35);
  transition: all 0.25s ease;
  width: 100%;
}

.btn-place-order:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(244, 63, 94, 0.45);
}

/* FAQ Accordion Section */
.faq-section {
  padding: 70px 0;
  background: #fff;
}

.accordion-wrap {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.accordion-item {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.2s ease;
}

.accordion-header {
  padding: 18px 22px;
  background: #f8fafc;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--secondary);
}

.accordion-header:hover {
  background: #f1f5f9;
}

.accordion-icon {
  color: var(--primary);
  transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
}

.accordion-content {
  display: none;
  padding: 20px 22px;
  background: #fff;
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.65;
  border-top: 1px solid var(--border-color);
}

.accordion-item.active .accordion-content {
  display: block;
}

/* Site Footer */
.site-footer {
  background: #0f172a;
  color: #94a3b8;
  padding: 40px 0 90px;
  text-align: center;
  font-size: 0.88rem;
  border-top: 1px solid #1e293b;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.footer-brand {
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
}

.footer-brand span {
  color: var(--primary);
}

/* Sticky Bottom Order Bar for Mobile */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 12px 16px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  border-top: 1px solid var(--border-color);
  z-index: 98;
}

.sticky-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 500px;
  margin: 0 auto;
}

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

.sticky-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
}

.sticky-price-val {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}

.sticky-order-btn {
  background: linear-gradient(135deg, var(--primary) 0%, #db2777 100%);
  color: #fff;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-size: 1rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(244, 63, 94, 0.35);
  flex-grow: 1;
  justify-content: center;
}

/* Floating Quick Support Button */
.floating-call-btn {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  z-index: 90;
  transition: all 0.3s ease;
}

.floating-call-btn:hover {
  transform: scale(1.1);
}

/* Thank You & Receipt Page */
.thankyou-wrapper {
  padding: 60px 0;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.receipt-card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg);
  max-width: 650px;
  margin: 0 auto;
  padding: 40px;
  position: relative;
}

.receipt-success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #ecfdf5;
  color: #10b981;
  font-size: 2.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.receipt-heading {
  text-align: center;
  margin-bottom: 28px;
}

.receipt-heading h1 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 6px;
}

.receipt-heading p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.receipt-details-list {
  background: #f8fafc;
  border-radius: var(--radius-md);
  padding: 20px;
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.receipt-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.92rem;
  color: #475569;
}

.receipt-row strong {
  color: var(--secondary);
}

.receipt-row.total-line {
  border-top: 1.5px dashed var(--border-color);
  padding-top: 12px;
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--secondary);
}

.receipt-row.total-line span:last-child {
  color: var(--primary);
  font-size: 1.4rem;
}

.receipt-actions {
  display: flex;
  gap: 14px;
}

.btn-receipt-action {
  flex: 1;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.95rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}

.btn-receipt-action.primary {
  background: var(--primary);
  color: #fff;
}

.btn-receipt-action.outline {
  border-color: var(--border-color);
  background: #fff;
  color: var(--secondary);
}

.btn-receipt-action:hover {
  opacity: 0.92;
}

/* OTP Modal */
.otp-modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(4px);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.otp-modal-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  max-width: 420px;
  width: 90%;
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.otp-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #ffe4e6;
  color: var(--primary);
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.otp-modal-card h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 6px;
}

.otp-modal-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.otp-input-field {
  width: 100%;
  padding: 12px;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-size: 1.4rem;
  text-align: center;
  letter-spacing: 6px;
  font-weight: 800;
  margin-bottom: 16px;
}

.btn-otp-submit {
  width: 100%;
  padding: 12px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
}

/* Responsive Media Queries */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  
  .hero-content {
    text-align: center;
    align-items: center;
  }
  
  .hero-pill-badge {
    margin: 0 auto;
  }
  
  .hero-pricing-card {
    max-width: 450px;
    width: 100%;
  }
  
  .hero-badges-row {
    justify-content: center;
  }
  
  .form-layout-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  
  .unisex-split-grid {
    grid-template-columns: 1fr;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .header-container {
    min-height: 68px;
    padding: 6px 0;
  }
  
  .brand-logo-img {
    height: 52px;
    width: 52px;
  }
  .hero-title {
    font-size: 2.1rem;
  }
  
  .section-title, .section-title-dark {
    font-size: 1.75rem;
  }
  
  .packages-grid {
    grid-template-columns: 1fr;
  }
  
  .delivery-zones-wrap {
    grid-template-columns: 1fr;
  }
  
  .free-size-banner {
    flex-direction: column;
    text-align: center;
    padding: 24px;
  }
  
  .free-size-info {
    flex-direction: column;
    text-align: center;
  }
  
  .video-features-row {
    grid-template-columns: 1fr;
  }
  
  .mobile-sticky-bar {
    display: block;
  }
  
  .floating-call-btn {
    bottom: 85px;
  }
  
  .checkout-box {
    padding: 24px 16px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.8rem;
  }
  
  .current-price {
    font-size: 1.9rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .receipt-card {
    padding: 24px 16px;
  }
  
  .receipt-actions {
    flex-direction: column;
  }
}


.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--secondary);
  letter-spacing: -0.5px;
  text-decoration: none;
}

.brand-logo-img {
  height: 70px;
  width: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #ea580c;
  box-shadow: 0 2px 10px rgba(234, 88, 12, 0.25);
  display: block;
  flex-shrink: 0;
}

.brand-logo span {
  color: var(--secondary);
  font-weight: 800;
  font-size: 1.15rem;
}

.brand-logo span strong {
  color: #ea580c;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.footer-brand-img {
  height: 64px;
  width: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 2.5px solid #ea580c;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.4);
}

.footer-brand-title {
  font-size: 1.22rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.3px;
}

.footer-brand-title strong {
  color: #ea580c;
}
