/* ==========================================================================
   ThemeFlex Ladies 3-Piece Landing Page Stylesheet (Ultra Luxury & Mobile Polish)
   ========================================================================== */

:root {
  /* Primary & Accent Color Palette */
  --primary: #800033; /* Deep Royal Magenta / Burgundy */
  --primary-dark: #500020;
  --primary-hover: #600026;
  --primary-light: #fff0f5;
  --accent-gold: #d4af37; /* Metallic Gold Accent */
  --accent-gold-dark: #aa861c;
  --accent-gold-light: #fff9e6;
  --dark-heading: #1e1e24;
  --text-body: #4a4a52;
  --light-bg: #fdfaf7;
  --white: #ffffff;
  --border-color: #ebdcd0;
  
  /* Additional Accents */
  --emerald: #0b6623;
  --emerald-hover: #084d1a;
  --emerald-light: #e8f5e9;
  --peach: #ff7043;
  --danger: #d32f2f;
  
  /* Layout Shadows & Radius */
  --shadow-sm: 0 4px 12px rgba(128, 0, 51, 0.06);
  --shadow-md: 0 8px 24px rgba(128, 0, 51, 0.12);
  --shadow-lg: 0 16px 36px rgba(128, 0, 51, 0.18);
  --glow-primary: 0 0 20px rgba(128, 0, 51, 0.4);
  --glow-gold: 0 0 15px rgba(212, 175, 55, 0.5);
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-full: 50px;

  /* Fonts */
  --font-bengali: 'Hind Siliguri', sans-serif;
}

/* Base Resets */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font-bengali);
  -webkit-tap-highlight-color: transparent;
}

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

body {
  background-color: var(--light-bg);
  color: var(--text-body);
  line-height: 1.6;
  overflow-x: hidden;
  padding-bottom: 76px; /* Space for sticky mobile bar */
}

@media (min-width: 992px) {
  body {
    padding-bottom: 0;
  }
}

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

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

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

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

/* ==========================================================================
   Top Announcement Bar (Ultra Mobile Polish)
   ========================================================================== */
.announcement-bar {
  background: linear-gradient(90deg, #42001a 0%, #800033 50%, #590024 100%);
  color: #fff;
  text-align: center;
  padding: 8px 12px;
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.4);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 101;
}

.announcement-bar span.anno-text {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.2px;
}

.announcement-badge {
  background: linear-gradient(135deg, var(--accent-gold) 0%, #f3e098 100%);
  color: #3d2b00;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 0.72rem;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  border: 1px solid #fff;
}

@media (max-width: 576px) {
  .announcement-bar {
    font-size: 0.78rem;
    padding: 6px 8px;
    flex-wrap: nowrap;
    justify-content: space-between;
  }
  .announcement-bar span.anno-text {
    font-size: 0.75rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .announcement-badge {
    font-size: 0.68rem;
    padding: 2px 6px;
    flex-shrink: 0;
  }
}

/* ==========================================================================
   Main Header Navigation
   ========================================================================== */
.main-header {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 18px rgba(128, 0, 51, 0.06);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-color);
}

.header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.brand-logo .logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary) 0%, #a60042 100%);
  color: var(--accent-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 4px 12px rgba(128, 0, 51, 0.3);
  transition: transform 0.3s ease;
}

.brand-logo:hover .logo-icon {
  transform: rotate(15deg) scale(1.08);
}

.brand-logo h1 {
  font-size: 1.3rem;
  color: var(--primary);
  letter-spacing: -0.5px;
}

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

.header-contacts {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hotline-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 7px 14px;
  border: 1.5px solid var(--primary);
  background: var(--primary-light);
  border-radius: var(--radius-full);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(128, 0, 51, 0.1);
}

.hotline-btn i {
  animation: phone-ring 3s infinite;
}

.hotline-btn:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(128, 0, 51, 0.25);
}

@media (max-width: 767px) {
  .header-contacts .header-order-btn {
    display: none;
  }
}

@keyframes phone-ring {
  0%, 100% { transform: rotate(0deg); }
  10%, 30% { transform: rotate(-15deg); }
  20%, 40% { transform: rotate(15deg); }
  50% { transform: rotate(0deg); }
}

/* ==========================================================================
   BUTTON DESIGN SYSTEM & SHADOW ANIMATIONS
   ========================================================================== */
.btn-primary {
  position: relative;
  background: linear-gradient(135deg, var(--primary) 0%, #ab0044 50%, #800033 100%);
  color: var(--white);
  padding: 14px 28px;
  font-size: 1.15rem;
  font-weight: 700;
  border: 1.5px solid rgba(212, 175, 55, 0.6);
  border-radius: var(--radius-full);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 6px 20px rgba(128, 0, 51, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  overflow: hidden;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  animation: pulse-button-glow 2.5s infinite;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    60deg,
    transparent 30%,
    rgba(255, 255, 255, 0.4) 50%,
    transparent 70%
  );
  transform: rotate(30deg);
  animation: button-shimmer 3.5s infinite;
}

@keyframes button-shimmer {
  0% { transform: translateX(-100%) rotate(30deg); }
  40%, 100% { transform: translateX(100%) rotate(30deg); }
}

@keyframes pulse-button-glow {
  0% { box-shadow: 0 6px 20px rgba(128, 0, 51, 0.35); }
  50% { box-shadow: 0 8px 30px rgba(128, 0, 51, 0.6), 0 0 15px rgba(212, 175, 55, 0.4); }
  100% { box-shadow: 0 6px 20px rgba(128, 0, 51, 0.35); }
}

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

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  background: linear-gradient(135deg, #600026 0%, var(--primary) 100%);
  border-color: var(--accent-gold);
  box-shadow: 0 10px 30px rgba(128, 0, 51, 0.5), 0 0 20px rgba(212, 175, 55, 0.6);
}

.btn-primary:hover i {
  animation: cart-shake 0.6s ease infinite alternate;
}

.btn-primary:active {
  transform: translateY(0) scale(0.98);
}

@keyframes cart-shake {
  0% { transform: translateX(0) rotate(0deg); }
  25% { transform: translateX(-3px) rotate(-8deg); }
  75% { transform: translateX(3px) rotate(8deg); }
  100% { transform: translateX(0) rotate(0deg); }
}

/* Green Order Confirm Submit Button */
.btn-submit-order {
  position: relative;
  width: 100%;
  padding: 16px 24px;
  font-size: 1.3rem;
  font-weight: 800;
  background: linear-gradient(135deg, #0b6623 0%, #118530 50%, #084d1a 100%);
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius-full);
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(11, 102, 35, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: all 0.3s ease;
  overflow: hidden;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  animation: emerald-glow 3s infinite;
}

.btn-submit-order::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    60deg,
    transparent 30%,
    rgba(255, 255, 255, 0.35) 50%,
    transparent 70%
  );
  transform: rotate(30deg);
  animation: button-shimmer 3s infinite 0.5s;
}

@keyframes emerald-glow {
  0% { box-shadow: 0 8px 25px rgba(11, 102, 35, 0.4); }
  50% { box-shadow: 0 12px 35px rgba(11, 102, 35, 0.65), 0 0 20px rgba(13, 175, 55, 0.5); }
  100% { box-shadow: 0 8px 25px rgba(11, 102, 35, 0.4); }
}

.btn-submit-order:hover {
  transform: translateY(-3px) scale(1.02);
  background: linear-gradient(135deg, #084d1a 0%, #0b6623 100%);
}

.btn-submit-order:active {
  transform: translateY(0) scale(0.98);
}

/* ==========================================================================
   HERO SECTION (Top Mobile Visual Flow)
   ========================================================================== */
.hero-section {
  padding: 16px 0 32px;
  background: linear-gradient(180deg, #fff 0%, var(--light-bg) 100%);
}

.hero-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

@media (min-width: 992px) {
  .hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "text-top image"
      "text-bottom image";
    gap: 0 40px;
    align-items: center;
  }
  .hero-text-top { grid-area: text-top; }
  .hero-image-wrap { grid-area: image; }
  .hero-text-bottom { grid-area: text-bottom; }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-gold-light);
  color: #8a6d0b;
  border: 1px solid var(--accent-gold);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 8px;
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.15);
}

.hero-title {
  font-size: 1.6rem;
  color: var(--dark-heading);
  margin-bottom: 6px;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 2.2rem;
  }
}

.hero-title span {
  color: var(--primary);
  background: linear-gradient(120deg, var(--primary) 0%, #d4af37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 16px;
  margin-top: 10px;
}

/* Pricing Card Box */
.price-card-box {
  background: linear-gradient(135deg, var(--primary-light) 0%, #fff 100%);
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  box-shadow: var(--shadow-sm);
}

.price-tag-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.current-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
}

.old-price {
  font-size: 1.15rem;
  color: #888;
  text-decoration: line-through;
}

.discount-badge {
  background: var(--danger);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(211, 47, 47, 0.3);
  animation: pulse-danger 2s infinite;
}

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

/* Timer Box */
.timer-container {
  background: var(--white);
  border: 1px solid var(--border-color);
  padding: 12px 14px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  margin-bottom: 18px;
}

.timer-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--danger);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.timer-boxes {
  display: flex;
  gap: 8px;
}

.time-box {
  background: var(--primary-light);
  border: 1px solid var(--border-color);
  color: var(--primary);
  text-align: center;
  border-radius: 8px;
  padding: 6px 8px;
  flex: 1;
}

.time-box .number {
  font-size: 1.3rem;
  font-weight: 800;
  line-height: 1;
}

.time-box .label {
  font-size: 0.72rem;
  font-weight: 600;
}

.hero-cta-btn {
  width: 100%;
}

@media (min-width: 768px) {
  .hero-cta-btn {
    max-width: 380px;
  }
}

.hero-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(128, 0, 51, 0.18);
  border: 2px solid var(--accent-gold);
  margin: 4px 0;
}

.hero-image-wrap img {
  width: 100%;
  max-height: 440px;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.hero-image-wrap:hover img {
  transform: scale(1.03);
}

.floating-quality-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  padding: 8px 12px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(212, 175, 55, 0.6);
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-md);
}

.floating-quality-badge i {
  font-size: 1.5rem;
  color: var(--accent-gold);
}

.floating-quality-badge div h4 {
  font-size: 0.88rem;
  color: var(--dark-heading);
}

.floating-quality-badge div p {
  font-size: 0.75rem;
  color: #666;
}

/* Section Common Styling */
.section-padding {
  padding: 36px 0;
}

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

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

.section-title {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 1.9rem;
  }
}

.section-divider {
  width: 60px;
  height: 3px;
  background: var(--accent-gold);
  margin: 10px auto 0;
  border-radius: 3px;
}

/* Product Gallery & Swatches Section */
.gallery-section {
  background: var(--white);
}

.product-showcase {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  background: var(--light-bg);
  border-radius: var(--radius-lg);
  padding: 18px;
  border: 1px solid var(--border-color);
}

@media (min-width: 992px) {
  .product-showcase {
    grid-template-columns: 1.1fr 1fr;
    gap: 36px;
    padding: 32px;
  }
}

.main-image-preview {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: #fff;
}

.main-image-preview img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: top;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

@media (min-width: 768px) {
  .main-image-preview img {
    height: 480px;
  }
}

.zoom-hint {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 0.78rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Swatches - Ultra Mobile Touch Friendly */
.swatch-title {
  font-size: 1.05rem;
  margin-bottom: 12px;
  font-weight: 700;
}

.color-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.swatch-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 2px solid var(--border-color);
  background: var(--white);
  border-radius: var(--radius-md);
  cursor: pointer;
  font-weight: 700;
  font-size: 0.92rem;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}

.swatch-btn .circle {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  box-shadow: inset 0 0 3px rgba(0,0,0,0.3);
  transition: transform 0.2s ease;
}

.swatch-btn[data-color="magenta"] .circle { background: #800033; }
.swatch-btn[data-color="emerald"] .circle { background: #0b6623; }
.swatch-btn[data-color="peach"] .circle { background: #e09f87; }

.swatch-btn:hover {
  transform: translateY(-2px);
  border-color: var(--primary);
}

.swatch-btn.active {
  border-color: var(--primary);
  background: var(--primary-light);
  color: var(--primary);
  box-shadow: 0 4px 12px rgba(128, 0, 51, 0.2);
}

.swatch-btn.active .circle {
  transform: scale(1.15);
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--primary);
}

.product-features-list {
  list-style: none;
  margin-bottom: 20px;
}

.product-features-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.product-features-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--emerald);
  font-weight: 900;
  font-size: 1.1rem;
}

/* Fabric & Craftsmanship Cards Grid */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

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

.feature-card .icon-box {
  width: 54px;
  height: 54px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 14px;
}

.feature-card h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.feature-card p {
  font-size: 0.88rem;
  color: #666;
}

/* Fabric Detail Highlight Box */
.fabric-detail-box {
  margin-top: 30px;
  background: linear-gradient(135deg, #fff 0%, var(--accent-gold-light) 100%);
  border-radius: var(--radius-lg);
  padding: 20px;
  border: 1px solid var(--accent-gold);
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: center;
}

@media (min-width: 768px) {
  .fabric-detail-box {
    grid-template-columns: 1fr 1.2fr;
    padding: 28px;
  }
}

.fabric-img {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.fabric-img img {
  width: 100%;
  max-height: 240px;
  object-fit: cover;
}

.fabric-content h3 {
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 10px;
}

.fabric-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 14px;
}

.spec-item {
  background: var(--white);
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
}

.spec-item strong {
  display: block;
  font-size: 0.8rem;
  color: var(--primary);
}

.spec-item span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark-heading);
}

/* Trust Badges Bar */
.trust-bar-section {
  background: linear-gradient(135deg, var(--primary) 0%, #4a001d 100%);
  color: var(--white);
  padding: 24px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (min-width: 992px) {
  .trust-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.trust-item i {
  font-size: 1.8rem;
  color: var(--accent-gold);
}

.trust-item h4 {
  color: var(--white);
  font-size: 0.95rem;
}

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

/* Reviews Section */
.reviews-section {
  background: var(--white);
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 768px) {
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.review-card {
  background: var(--light-bg);
  border-radius: var(--radius-md);
  padding: 18px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

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

.user-info h4 {
  font-size: 0.95rem;
}

.rating-stars {
  color: #ffb400;
  font-size: 0.8rem;
}

.review-body {
  font-size: 0.9rem;
  color: #444;
  margin-bottom: 12px;
  font-style: italic;
}

.verified-buyer {
  font-size: 0.75rem;
  color: var(--emerald);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Order Checkout Form Section */
.checkout-section {
  background: linear-gradient(180deg, var(--light-bg) 0%, #f5e8e0 100%);
}

.order-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--primary);
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
}

.order-card-header {
  background: linear-gradient(90deg, var(--primary) 0%, #99003d 100%);
  color: var(--white);
  padding: 16px 20px;
  text-align: center;
}

.order-card-header h2 {
  color: var(--white);
  font-size: 1.4rem;
}

.order-card-header p {
  color: var(--accent-gold-light);
  font-size: 0.88rem;
}

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

@media (min-width: 768px) {
  .order-card-body {
    padding: 32px;
  }
}

.order-form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .order-form-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.92rem;
  margin-bottom: 6px;
  color: var(--dark-heading);
}

.form-group label span {
  color: var(--danger);
}

.form-control {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  transition: all 0.3s ease;
  background: #fafafa;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(128, 0, 51, 0.15);
}

/* Order Summary Box */
.summary-box {
  background: var(--light-bg);
  border-radius: var(--radius-md);
  padding: 18px;
  border: 1px solid var(--border-color);
}

.summary-title {
  font-size: 1.1rem;
  margin-bottom: 14px;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--border-color);
  color: var(--primary);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 0.92rem;
}

.summary-row.total {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary);
  border-top: 2px dashed var(--border-color);
  padding-top: 10px;
  margin-top: 10px;
}

/* Radio Group for Shipping */
.radio-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 6px;
}

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

.radio-option:hover, .radio-option.selected {
  border-color: var(--primary);
  background: var(--primary-light);
}

.radio-option input[type="radio"] {
  accent-color: var(--primary);
  width: 18px;
  height: 18px;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
  position: fixed;
  bottom: 84px;
  right: 18px;
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  z-index: 99;
  transition: all 0.3s ease;
  animation: pulse-whatsapp 2.5s infinite;
}

@keyframes pulse-whatsapp {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 12px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.floating-whatsapp:hover {
  transform: scale(1.12) rotate(10deg);
}

/* Sticky Mobile Bottom Order Bar */
.sticky-mobile-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  padding: 10px 16px;
  box-shadow: 0 -6px 25px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  z-index: 999;
  border-top: 1.5px solid var(--border-color);
}

@media (min-width: 992px) {
  .sticky-mobile-bar {
    display: none;
  }
}

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

.mobile-price-info .m-price {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
}

.mobile-price-info .m-deliv {
  font-size: 0.72rem;
  color: var(--emerald);
  font-weight: 700;
}

.btn-mobile-order {
  position: relative;
  flex: 1;
  background: linear-gradient(135deg, var(--primary) 0%, #ad0045 50%, #800033 100%);
  color: var(--white);
  padding: 12px 18px;
  border-radius: var(--radius-full);
  font-weight: 800;
  font-size: 1.05rem;
  border: 1px solid var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(128, 0, 51, 0.4);
  overflow: hidden;
  animation: pulse-mobile-btn 2s infinite;
}

.btn-mobile-order::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    60deg,
    transparent 30%,
    rgba(255, 255, 255, 0.4) 50%,
    transparent 70%
  );
  transform: rotate(30deg);
  animation: button-shimmer 2.5s infinite;
}

@keyframes pulse-mobile-btn {
  0% { transform: scale(1); }
  50% { transform: scale(1.02); box-shadow: 0 6px 20px rgba(128, 0, 51, 0.5), 0 0 10px rgba(212, 175, 55, 0.5); }
  100% { transform: scale(1); }
}

.btn-mobile-order i {
  animation: cart-shake 1.2s ease infinite alternate;
}

/* Lightbox Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 20px;
}

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

.modal-content {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 480px;
  width: 100%;
  padding: 28px;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-lg);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

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

.modal-icon {
  width: 66px;
  height: 66px;
  background: var(--emerald-light);
  color: var(--emerald);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.3rem;
  margin: 0 auto 18px;
}

.modal-content h3 {
  font-size: 1.4rem;
  color: var(--emerald);
  margin-bottom: 10px;
}

.modal-content p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 20px;
}

.modal-close-btn {
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 10px 24px;
  border-radius: 20px;
  font-weight: 700;
  cursor: pointer;
}

/* Image Lightbox */
.image-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.image-lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.image-lightbox img {
  max-width: 90%;
  max-height: 85vh;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 25px;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
}

/* Footer */
footer {
  background: #151518;
  color: #a0a0a8;
  padding: 36px 0 18px;
  font-size: 0.88rem;
  text-align: center;
}

footer p {
  margin-bottom: 8px;
}

footer a {
  color: var(--accent-gold);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease, text-decoration 0.3s ease;
}

footer a:hover {
  color: #ffffff;
  text-decoration: underline;
}
