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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

:root {
  --primary-color: #111827;
  --secondary-color: #06b6d4;
  --dark-color: #0b1220;
  --light-color: #f5f7fb;
  --text-color: #0f172a;
  --muted-color: #64748b;
  --border-color: rgba(15, 23, 42, 0.08);
  --gradient: linear-gradient(135deg, #111827 0%, #4c1d95 55%, #06b6d4 100%);
}

body {
  font-family: "Noto Sans Bengali", "Poppins", sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background:
    radial-gradient(
      1200px 600px at 20% 10%,
      rgba(6, 182, 212, 0.14),
      transparent 60%
    ),
    radial-gradient(
      900px 500px at 80% 20%,
      rgba(76, 29, 149, 0.14),
      transparent 60%
    ),
    var(--light-color);
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

/* Header */
.header {
  background: var(--gradient);
  color: white;
  padding: 15px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-logo {
  height: 35px;
  width: auto;
  max-width: 220px;
  display: block;
}

.header-contact {
  display: flex;
  gap: 20px;
  align-items: center;
}

.header-contact a {
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Hero Section */
.hero {
  background:
    linear-gradient(rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.72)),
    url("../img/cover_background.jpg") center/cover no-repeat,
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23667eea" width="1200" height="600"/><path fill="%23764ba2" opacity="0.3" d="M0 300 Q300 150 600 300 T1200 300 V600 H0 Z"/></svg>')
      center/cover no-repeat;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 100px 20px 50px;
  position: relative;
}

.hero-content {
  max-width: 800px;
  animation: fadeInUp 1s ease;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 30px;
  opacity: 0.95;
}

.hero-features {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 30px 0;
  flex-wrap: wrap;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
}

.hero-feature i {
  font-size: 1.5rem;
}

.cta-button {
  display: inline-block;
  background: var(--primary-color);
  color: white;
  padding: 18px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 600;
  transition: all 0.3s;
  box-shadow: 0 5px 20px rgba(255, 107, 107, 0.4);
  margin-top: 20px;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 107, 107, 0.6);
}

/* Product Showcase */
.product-showcase {
  padding: 80px 20px;
  background: var(--light-color);
}

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

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: var(--dark-color);
  position: relative;
  padding-bottom: 15px;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: var(--gradient);
  border-radius: 2px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.product-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.product-image {
  width: 100%;
  height: 320px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* Product image slider */
.media-slider {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  gap: 10px;
  padding: 16px;
}

.media-slider.single {
  grid-template-columns: 1fr;
}

.slider-frame {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-img {
  width: 92%;
  max-width: 360px;
  height: auto;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  transition:
    opacity 0.18s ease,
    transform 0.18s ease;
}

.slider-img.fade {
  opacity: 0.35;
  transform: scale(0.985);
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.28);
  color: rgba(255, 255, 255, 0.95);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.media-slider.single .slider-btn {
  display: none;
}

.slider-btn:hover {
  transform: translateY(-1px);
  background: rgba(0, 0, 0, 0.36);
}

.slider-btn:active {
  transform: translateY(0);
}

.product-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--primary-color);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

.product-info {
  padding: 25px;
}

.product-name {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark-color);
}

.product-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 15px 0;
}

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

.product-features {
  list-style: none;
  margin: 15px 0;
}

.product-features li {
  padding: 5px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #666;
}

.product-features i {
  color: var(--secondary-color);
}

/* Features Section */
.features {
  padding: 80px 20px;
  background: rgba(255, 255, 255, 0.75);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-top: 50px;
}

.feature-card {
  text-align: center;
  padding: 28px;
  border-radius: 16px;
  background: rgba(245, 247, 251, 0.85);
  border: 1px solid var(--border-color);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.1);
}

.feature-icon {
  width: 78px;
  height: 78px;
  margin: 0 auto 18px;
  background: var(--gradient);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.9rem;
  box-shadow: 0 12px 30px rgba(76, 29, 149, 0.18);
}

.feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--dark-color);
}

.feature-card p {
  color: #475569;
  line-height: 1.8;
}

/* Reviews Section */
.reviews {
  padding: 80px 20px;
  background: transparent;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  margin-top: 50px;
}

.review-card {
  background: rgba(255, 255, 255, 0.92);
  padding: 26px;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
}

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

.review-avatar {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.4rem;
  font-weight: 800;
}

.review-info h4 {
  color: var(--dark-color);
  margin-bottom: 4px;
}

.review-stars {
  color: #fbbf24;
  letter-spacing: 1px;
}

.review-text {
  color: #475569;
  line-height: 1.85;
}

/* Review screenshots marquee */
.review-marquee {
  margin-top: 50px;
  overflow: hidden;
  position: relative;
  padding: 6px 0;
  width: 100%;
  max-width: 100%;
}

.review-marquee::before,
.review-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 90px;
  pointer-events: none;
  z-index: 2;
}

.review-marquee::before {
  left: 0;
  background: linear-gradient(
    90deg,
    rgba(245, 247, 251, 1) 0%,
    rgba(245, 247, 251, 0) 100%
  );
}

.review-marquee::after {
  right: 0;
  background: linear-gradient(
    270deg,
    rgba(245, 247, 251, 1) 0%,
    rgba(245, 247, 251, 0) 100%
  );
}

.review-marquee-track {
  display: flex;
  width: max-content;
  animation: review-marquee 36s linear infinite;
  will-change: transform;
}

.review-marquee-group {
  display: flex;
  gap: 14px;
}

.review-shot {
  flex: 0 0 auto;
  width: 260px;
}

.review-shot img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.1);
  background: rgba(255, 255, 255, 0.92);
}

.reviews-empty {
  margin-top: 24px;
  padding: 16px 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px dashed rgba(15, 23, 42, 0.16);
  text-align: center;
  color: var(--muted-color);
  font-weight: 700;
}

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

@media (prefers-reduced-motion: reduce) {
  .review-marquee {
    overflow-x: auto;
  }

  .review-marquee-track {
    animation: none;
  }
}

/* Order Form Section */
.order-section {
  padding: 80px 20px;
  background: transparent;
}

.order-form {
  max-width: 980px;
  margin: 50px auto 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 18px;
  border: 1px solid var(--border-color);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.12);
}

.order-layout {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 22px;
  align-items: start;
}

.order-left,
.order-right {
  display: grid;
  gap: 18px;
}

.order-left {
  padding: 16px;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  background: rgba(245, 247, 251, 0.75);
}

.order-left-grid {
  display: grid;
  grid-template-columns: 1.55fr 0.95fr;
  gap: 16px;
  align-items: start;
}

.order-left-summary {
  display: grid;
  gap: 14px;
  align-content: start;
}

.order-right-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

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

.span-2 {
  grid-column: span 2;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
  color: var(--dark-color);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.2s;
  background: rgba(255, 255, 255, 0.95);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: rgba(6, 182, 212, 0.7);
  box-shadow: 0 0 0 4px rgba(6, 182, 212, 0.12);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.phone-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: center;
}

.phone-confirm-btn {
  height: 44px;
  padding: 0 16px;
  border: none;
  border-radius: 12px;
  background: var(--gradient);
  color: white;
  font-weight: 900;
  cursor: pointer;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  white-space: nowrap;
}

.phone-confirm-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.16);
}

.phone-confirm-btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.phone-help {
  margin-top: 10px;
  color: var(--muted-color);
  font-weight: 700;
  font-size: 0.95rem;
}

.delivery-note {
  margin-top: 8px;
  color: color(--dark-color);
  font-weight: 800;
  font-size: 0.95rem;
  line-height: 1.4;
}

.location-preview {
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px dashed rgba(15, 23, 42, 0.14);
  background: rgba(245, 247, 251, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--muted-color);
  font-weight: 700;
}

.location-preview i {
  color: rgba(17, 24, 39, 0.6);
}

.location-muted {
  color: var(--muted-color);
}

.location-strong {
  color: var(--text-color);
}

.product-picker {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

/* Size boxes */
.size-picker {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.size-option {
  position: relative;
  cursor: pointer;
}

.size-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.size-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  height: 44px;
  padding: 0 14px;
  border-radius: 12px;
  border: 3px solid var(--border-color);
  background: rgba(255, 255, 255, 0.95);
  color: var(--dark-color);
  font-weight: 900;
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    border-color 0.2s;
}

.size-option:hover .size-box {
  transform: translateY(-1px);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
  border-color: rgba(6, 182, 212, 0.35);
}

.size-option input:checked + .size-box {
  border-color: green;
  box-shadow: 0 16px 40px rgba(6, 182, 212, 0.14);
}

.size-option.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.size-option.disabled .size-box {
  background: #f0f0f0;
  color: #999;
  cursor: not-allowed;
  border-color: #ddd;
}

.size-option.disabled:hover .size-box {
  transform: none;
  box-shadow: none;
  border-color: #ddd;
}

.size-option.disabled input {
  pointer-events: none;
}

.size-chart-btn {
  width: 100%;
  margin-top: 12px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(6, 182, 212, 0.32);
  background: rgba(6, 182, 212, 0.1);
  color: rgba(15, 23, 42, 0.9);
  font-weight: 900;
  cursor: pointer;
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    background 0.2s;
}

.size-chart-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
  background: rgba(6, 182, 212, 0.14);
}

.product-option {
  display: block;
  cursor: pointer;
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    border-color 0.2s;
}

.product-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.product-option-card {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border-radius: 14px;
  border: 3px solid var(--border-color);
  background: rgba(255, 255, 255, 0.95);
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    border-color 0.2s;
}

.product-option:hover .product-option-card {
  transform: translateY(-1px);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
  border-color: rgba(6, 182, 212, 0.35);
}

.product-option input:checked + .product-option-card {
  border-color: green;
  box-shadow: 0 16px 40px rgba(6, 182, 212, 0.14);
  background: rgba(255, 255, 255, 1);
}

.product-thumb {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  background: rgba(245, 247, 251, 1);
  object-fit: cover;
  flex: 0 0 56px;
}

.product-option-body {
  flex: 1;
  display: grid;
  gap: 6px;
}

.product-option-check {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: rgba(15, 23, 42, 0.04);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(15, 23, 42, 0.45);
}

.product-option input:checked + .product-option-card .product-option-check {
  border-color: rgba(6, 182, 212, 0.55);
  background: rgba(6, 182, 212, 0.14);
  color: #0e7490;
}

.product-option-title {
  font-weight: 900;
  color: var(--text-color);
}

.product-option-sub {
  color: var(--muted-color);
  font-weight: 700;
}

.delivery-picker {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-top: 10px;
}

.delivery-option {
  display: block;
  cursor: pointer;
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    border-color 0.2s;
}

.delivery-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.delivery-option-card {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border-radius: 14px;
  border: 3px solid var(--border-color);
  background: rgba(255, 255, 255, 0.95);
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    border-color 0.2s;
}

.delivery-option:hover .delivery-option-card {
  transform: translateY(-1px);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
  border-color: rgba(6, 182, 212, 0.35);
}

.delivery-option input:checked + .delivery-option-card {
  border-color: green;
  box-shadow: 0 16px 40px rgba(6, 182, 212, 0.14);
  background: rgba(255, 255, 255, 1);
}

.delivery-option-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  background: rgba(245, 247, 251, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 56px;
  font-size: 28px;
  color: #0e7490;
}

.delivery-option-body {
  flex: 1;
  display: grid;
  gap: 6px;
}

.delivery-option-title {
  font-weight: 900;
  color: var(--text-color);
}

.delivery-option-price {
  color: green;
  font-weight: 700;
}

.delivery-option-check {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: rgba(15, 23, 42, 0.04);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(15, 23, 42, 0.45);
}

.delivery-option input:checked + .delivery-option-card .delivery-option-check {
  border-color: rgba(6, 182, 212, 0.55);
  background: rgba(6, 182, 212, 0.14);
  color: #0e7490;
}

.video-link {
  justify-self: start;
  border: none;
  background: linear-gradient(135deg, #FF0000 0%, #CC0000 100%);
  color: white;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  animation: pulse-glow 2s ease-in-out infinite;
}

.video-link::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.video-link:hover::before {
  width: 300px;
  height: 300px;
}

.video-link:hover {
  background: linear-gradient(135deg, #FF0000 0%, #E60000 100%);
  box-shadow: 0 6px 25px rgba(255, 0, 0, 0.5);
  transform: translateY(-2px) scale(1.05);
}

.video-link:active {
  transform: translateY(0) scale(0.98);
}

.video-link i {
  animation: play-bounce 1.5s ease-in-out infinite;
  display: inline-block;
  font-size: 1.1em;
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3), 0 0 0 0 rgba(255, 0, 0, 0.4);
  }
  50% {
    box-shadow: 0 4px 20px rgba(255, 0, 0, 0.5), 0 0 0 8px rgba(255, 0, 0, 0);
  }
}

@keyframes play-bounce {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}

.video-link:hover i {
  animation: play-bounce 0.6s ease-in-out infinite;
}

.video-coming-soon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 800;
  color: rgba(15, 23, 42, 0.7);
  background: rgba(148, 163, 184, 0.18);
  user-select: none;
}

.qty {
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  gap: 10px;
  align-items: center;
}

.qty-btn {
  height: 44px;
  border-radius: 10px;
  border: 1px solid var(--border-color);
  background: rgba(245, 247, 251, 1);
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
}

.qty input {
  text-align: center;
  height: 44px;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(2, 6, 23, 0.72);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  z-index: 2000;
}

.modal.open {
  display: flex;
}

.modal-card {
  width: min(900px, 100%);
  border-radius: 16px;
  background: #0b1220;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.06);
}

.modal-title {
  font-weight: 900;
}

.modal-close {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  color: white;
  border-radius: 10px;
  padding: 8px 10px;
  cursor: pointer;
}

.modal-body {
  padding: 12px;
}

.modal-body video,
.modal-body iframe {
  width: 100%;
  height: 85vh;
  max-height: 85vh;
  border-radius: 12px;
  background: black;
  border: none;
}

.modal-body img {
  width: 100%;
  height: auto;
  max-height: 78vh;
  object-fit: contain;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
}

.delivery-info {
  background: white;
  padding: 20px;
  border-radius: 8px;
  border-left: 4px solid var(--secondary-color);
}

.delivery-info h4 {
  color: var(--dark-color);
  margin-bottom: 10px;
}

.delivery-charges {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

.total-amount {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--primary-color);
  text-align: center;
  margin: 20px 0;
  padding: 15px;
  background: white;
  border-radius: 8px;
  grid-column: 1 / -1; /* Full width in grid */
}

.order-left-summary .total-amount {
  grid-column: auto;
  margin: 0;
}

.submit-button {
  width: 100%;
  padding: 18px;
  background: var(--gradient);
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
  grid-column: 1 / -1; /* Full width in grid */
}

.submit-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
}

.submit-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Footer */
.footer {
  background: var(--dark-color);
  color: white;
  padding: 40px 20px;
  text-align: center;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 20px 0;
  flex-wrap: wrap;
}

.footer-links a {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--secondary-color);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Select2 premium */
.select2-container--default .select2-selection--single {
  height: 48px;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.02);
}

.select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  line-height: 44px;
  padding-left: 15px;
  color: var(--text-color);
}

.select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  height: 44px;
}

.select2-container--default.select2-container--focus
  .select2-selection--single {
  border-color: rgba(6, 182, 212, 0.7);
  box-shadow: 0 0 0 4px rgba(6, 182, 212, 0.12);
}

.select2-dropdown {
  border-radius: 12px;
  border: 1px solid var(--border-color);
  overflow: hidden;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 10px 12px;
}

/* Responsive */
@media (max-width: 768px) {
  body {
    overflow-x: hidden;
    max-width: 100vw;
  }

  .container {
    padding: 0 15px;
    width: 100%;
    max-width: 100%;
  }

  .order-form {
    width: 100%;
    max-width: 100%;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-features {
    flex-direction: column;
    gap: 15px;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .order-form {
    padding: 22px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .span-2 {
    grid-column: auto;
  }

  .header-contact {
    flex-direction: column;
    gap: 10px;
    font-size: 0.9rem;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .order-layout {
    grid-template-columns: 1fr;
  }

  .order-right-grid {
    grid-template-columns: 1fr;
  }

  .order-left-grid {
    grid-template-columns: 1fr;
  }
}

/* Loading Spinner */
.spinner {
  display: none;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.loading .spinner {
  display: block;
}

.loading .button-text {
  display: none;
}

.success-message {
  display: none;
  background: #4caf50;
  color: white;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 20px;
  text-align: center;
}

.error-message {
  display: none;
  background: #f44336;
  color: white;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 20px;
  text-align: center;
}
