/* ================== 
  Custom CSS STYLES 
===================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: hsl(230, 25%, 7%);
  --fg: hsl(0, 0%, 100%);
  --muted: hsl(230, 20%, 15%);
  --muted-fg: hsl(219, 22.7%, 82.7%);
  --neon-red: hsl(2, 100%, 51%);
  --neon-purple: hsl(270, 100%, 63%);
  --glass: hsl(230, 25%, 12%);
  --glass-border: hsl(230, 20%, 22%);
  --card: hsl(230, 25%, 10%);
  --radius: 1rem;
}

/* Light Theme */
.light {
  --bg: hsl(0, 0%, 100%);
  --fg: hsl(230, 25%, 7%);
  --muted: hsl(219, 22.7%, 82.7%);
  --muted-fg: hsl(230, 20%, 15%);
  --neon-red: hsl(2, 100%, 51%);
  --neon-purple: hsl(270, 100%, 63%);
  --glass: hsl(240, 100%, 99%);
  --glass-border: hsl(0, 0%, 93%);
  --card: hsl(229, 21%, 80%);
}

/* ===== Toggle Button ===== */
.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: var(--glass);
  color: var(--fg);
  font-size: 15px;
  transition: background 0.3s, color 0.3s, transform 0.2s;
}

.theme-toggle:hover {
  background: var(--neon-red);
  color: var(--fg);
  transform: scale(1.08);
}
.light .theme-toggle:hover {
  color: #ffffff;
}

.toggleItemsMobile {
  display: none;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: "Hind Siliguri", sans-serif;
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Hind Siliguri", sans-serif;
}

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

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.glass-card {
  background: var(--glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
}

.gradient-text {
  background: linear-gradient(135deg, var(--neon-red), var(--neon-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.neon-glow {
  box-shadow:
    0 0 20px hsla(210, 100%, 56%, 0.3),
    0 0 60px hsla(210, 100%, 56%, 0.1);
}

.btn-primary {
  border: none;
  outline: none;
  display: inline-flex;
  justify-content: center;
  text-align: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--neon-red), var(--neon-purple));
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-primary:hover {
  opacity: 0.9;
  transform: scale(1.05);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  border-radius: 999px;
  border: 1px solid var(--glass-border);
  color: var(--fg);
  font-size: 0.875rem;
  font-weight: 600;
  background: var(--glass);
  transition: all 0.3s;
}

.btn-outline:hover {
  background: hsla(230, 25%, 12%, 0.8);
  transform: scale(1.05);
}
.light .btn-outline:hover {
  background: hsla(240, 100%, 99%, 0.8);
}

/* Interactive Button */
.interactive-btn {
  border: none;
  outline: none;
  width: 100%;
  padding: 16px 32px;
  background: linear-gradient(to right, var(--neon-red), var(--neon-purple));
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  animation: cta-pulse 2s ease-in-out infinite;
  transition: opacity 0.3s, transform 0.2s;
}
.interactive-btn:hover {
  opacity: 0.9;
}
.interactive-btn:active {
  transform: scale(0.98);
}
/* Shimmer sweep */
.interactive-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  animation: shimmer-slide 3s ease-in-out infinite;
}
/* Pulse + glow */
@keyframes cta-pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 15px rgba(0, 102, 255, 0.4);
  }
  50% {
    transform: scale(1.03);
    box-shadow: 0 0 30px rgba(0, 102, 255, 0.6), 0 0 60px rgba(139, 92, 246, 0.3);
  }
}
/* Shimmer light sweep */
@keyframes shimmer-slide {
  0%   { left: -100%; }
  50%  { left: 100%; }
  100% { left: 100%; }
}

.width-auto {
  width: auto;
}


.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.section-title p {
  color: var(--muted-fg);
  max-width: 500px;
  margin: 0 auto;
}

/* Animations */
@keyframes pulse-glow {
  0%,
  100% {
    opacity: 1;
    filter: brightness(1);
  }

  50% {
    opacity: 0.8;
    filter: brightness(1.2);
  }
}

@keyframes slide-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

.animate-pulse-glow {
  animation: pulse-glow 3s ease-in-out infinite;
}

.animate-slide-up {
  animation: slide-up 0.6s ease-out forwards;
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

/* ---- NAVBAR ---- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: var(--bg);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
}

.navbar .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.navbar .logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
}

.navbar .logo i {
  color: var(--neon-red);
  font-size: 1.25rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-links a.link {
  font-size: 0.875rem;
  color: var(--muted-fg);
  transition: color 0.3s;
}

.nav-links a.link:hover {
  color: var(--fg);
}

.nav-call {
  width: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--neon-red), var(--neon-purple));
  color: #fff;
  font-size: 1.08rem;
  font-weight: 600;
  box-shadow: 0 0 20px hsla(210, 100%, 56%, 0.3);
  transition: opacity 0.3s;
}

.nav-call:hover {
  opacity: 0.9;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--fg);
  font-size: 1.5rem;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  padding: 1rem;
  border-top: 1px solid var(--glass-border);
}

.mobile-menu a {
  display: block;
  padding: 0.5rem 0;
  font-size: 0.875rem;
  color: var(--muted-fg);
}

.mobile-menu .nav-call {
  display: flex;
  justify-content: center;
  margin-top: 0.5rem;
}

/* ---- COMPANY HERO ---- */
.company-hero {
  position: relative;
  padding: 8rem 0 5rem;
  overflow: hidden;
}

.company-hero .glow1 {
  position: absolute;
  top: 33%;
  left: 33%;
  width: 320px;
  height: 320px;
  background: hsla(270, 80%, 60%, 0.08);
  border-radius: 50%;
  filter: blur(100px);
}

.company-hero .glow2 {
  position: absolute;
  bottom: 33%;
  right: 25%;
  width: 288px;
  height: 288px;
  background: hsla(210, 100%, 56%, 0.08);
  border-radius: 50%;
  filter: blur(100px);
}

.company-hero .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.company-hero .badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--fg);
}

.company-hero .badge .dot,
.slide-content .badge .dot,
.payment-method .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--neon-red);
  animation: pulse-glow 3s ease-in-out infinite;
}

.company-hero h1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.15;
}

.company-hero .desc {
  color: var(--muted-fg);
  font-size: 1.125rem;
  max-width: 500px;
  line-height: 1.7;
}

.company-hero .info-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.company-hero .info-row .info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-fg);
}

.company-hero .info-row i {
  color: var(--neon-red);
}

.company-hero .cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.review-badges {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-end;
}

.review-badge {
  background: var(--bg);
  position: relative;
  width: 100%;
  max-width: 380px;
  padding: 1.5rem;
  overflow: hidden;
  transition: all 0.5s;
}

.review-badge:hover {
  transform: scale(1.05);
}

.review-badge .glow-overlay {
  position: absolute;
  inset: -4px;
  border-radius: var(--radius);
  filter: blur(20px);
  opacity: 0;
  transition: opacity 0.5s;
  animation: pulse-glow 3s ease-in-out infinite;
}

.review-badge:hover .glow-overlay {
  opacity: 1;
}

.review-badge .inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.review-badge .icon-box {
  width: 56px;
  height: 56px;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.review-badge .stars {
  display: flex;
  gap: 2px;
  margin-bottom: 4px;
}

.review-badge .stars i {
  color: #facc15;
  filter: drop-shadow(0 0 4px rgba(250, 204, 21, 0.5));
}

.review-badge .rating {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--fg);
}

.review-badge .rating-sub {
  font-size: 0.75rem;
  color: var(--muted-fg);
}

.review-badge .label {
  font-size: 0.875rem;
  color: var(--muted-fg);
  font-weight: 500;
  margin-bottom: 4px;
}

.review-badge .glow-border {
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  border: 1px solid;
  animation: pulse-glow 3s ease-in-out infinite;
  pointer-events: none;
}

.fb-badge .icon-box {
  background: hsla(220, 90%, 52%, 0.2);
}

.fb-badge .icon-box i {
  color: #1877f2;
  font-size: 1.75rem;
}

.fb-badge .glow-overlay {
  background: linear-gradient(
    135deg,
    hsla(220, 90%, 52%, 0.2),
    hsla(210, 100%, 56%, 0.2)
  );
}

.fb-badge .glow-border {
  border-color: hsla(220, 90%, 52%, 0.2);
}

.google-badge .icon-box {
  background: linear-gradient(
    135deg,
    hsla(217, 89%, 61%, 0.2),
    hsla(4, 90%, 58%, 0.1),
    hsla(142, 69%, 45%, 0.2)
  );
}

.google-badge .icon-box i {
  font-size: 1.75rem;
  background: linear-gradient(135deg, #4285f4, #ea4335, #fbbc05, #34a853);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.google-badge .glow-overlay {
  background: linear-gradient(
    135deg,
    hsla(270, 80%, 60%, 0.2),
    hsla(185, 100%, 50%, 0.2)
  );
}

.google-badge .glow-border {
  border-color: hsla(270, 80%, 60%, 0.2);
}

/* ---- HERO SECTION ---- */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 64px;
  overflow: hidden;
}

.hero-section .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 2rem 0;
}

.hero-section .slide-content {
  animation: slide-up 0.5s ease-out;
}

.hero-section .badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--fg);
}

.hero-section h1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.15;
  margin: 1rem 0;
}

.hero-section .price-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.hero-section .price {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 2rem;
}

.hero-section .price-old {
  color: var(--muted-fg);
  text-decoration: line-through;
  font-size: 1.75rem;
}

.hero-section .save-badge {
  padding: 0.3rem 0.70rem;
  border-radius: 999px;
  background: hsla(270, 80%, 60%, 0.2);
  color: var(--neon-purple);
  font-size: 0.85rem;
  font-weight: 600;
}

.hero-section .cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.hero-section .stats {
  display: flex;
  gap: 1rem;
}

.hero-section .stat-val {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 0.95rem;
}

.hero-section .product-img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 500px;
  animation: slide-up 0.5s ease-out;
  filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.5));
}

/* ---- WHY CHOOSE US ---- */
.whyus {
  padding: 6rem 0;
  position: relative;
}

.whyus .divider {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    hsla(210, 100%, 56%, 0.3),
    transparent
  );
}

.whyus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.whyus-card {
  padding: 1.5rem;
  transition: all 0.3s;
}

.whyus-card:hover {
  border-color: hsla(210, 100%, 56%, 0.4);
  transform: translateY(-4px);
}

.whyus-card .icon-box {
  width: 48px;
  height: 48px;
  border-radius: 0.75rem;
  background: linear-gradient(
    135deg,
    hsla(210, 100%, 56%, 0.2),
    hsla(270, 80%, 60%, 0.2)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.whyus-card .icon-box i {
  font-size: 1.25rem;
  color: var(--neon-red);
}

.whyus-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.whyus-card p {
  font-size: 0.875rem;
  color: var(--muted-fg);
  line-height: 1.6;
}

/* ---- OUR PRODUCTS ---- */
.our-products {
  padding: 6rem 0;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.products-card {
  overflow: hidden;
  display: block;
  transition: transform 0.3s;
}
.products-card:hover {
  transform: scale(1.02);
}
.products-card .img-wrap {
  overflow: hidden;
}
.products-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.5s;
}
.products-card:hover img {
  transform: scale(1.1);
}
.products-card .info {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.25rem;
}
.products-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.products-card .bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.products-card .price {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
}
.products-card .view-btn {
  border: none;
  outline: none;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--neon-red), var(--neon-purple));
  color: #fff;
  font-size: 0.90rem;
  font-weight: 600;
}
.product-featured-img {
  border-radius: 1.25rem;
}

/* ---- PRODUCT ORDER FORM ---- */
.order-form .form-card {
    background: var(--glass);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(74, 112, 67, 0.1);
    animation: fadeInRight 0.8s ease both;
}
.order-form,
.product-specs,
.confirmed-page {
  padding: 6rem 0;
  position: relative;
}
.order-form .divider,
.product-specs .divider {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    hsla(270, 80%, 60%, 0.3),
    transparent
  );
}
.form-header {
    background: var(--bg);
    padding: 1.5rem 2rem;
    color: var(--fg);
}
.form-header h3 {
    font-size: 1.5rem;
}
.form-header p {
    opacity: 0.8;
}
.form-body {
    padding: 2rem;
}
.multiple-input-group,
.shipping-area-row {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}
.form-group {
    display: flex;
    flex-direction: column;
    flex: 1;
    margin-bottom: 1.5rem;
}
.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
}
.form-group input,
.form-group textarea {
  background: var(--bg);
  color: var(--fg);
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    font-size: 1rem;
    transition: all 0.3s ease;
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--glass-border);
    box-shadow: 0 0 0 3px rgba(74, 112, 67, 0.1);
}
.form-group textarea {
    min-height: 100px;
    resize: vertical;
}
.required:after {
    content: " *";
    font-size: 0.8rem;
    color: #ff0000;
}
/* Shipping Options */
.shipping-option {
    flex: 1;
    cursor: pointer;
}
.shipping-option input[type="radio"] {
    display: none;
}
.shipping-option-box {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 0.85rem;
    border-radius: var(--radius);
    border: 1.5px solid var(--glass-border);
    background: var(--bg);
    transition: all 0.2s ease;
    font-size: 0.875rem;
    color: var(--muted-fg);
}
.shipping-option-box i {
    font-size: 0.9rem;
    color: var(--muted-fg);
    transition: color 0.2s ease;
}
.shipping-option-label {
    font-weight: 500;
}
.shipping-option-cost {
    margin-left: auto;
    font-weight: 600;
    font-size: 0.8rem;
    opacity: 0.7;
}
.shipping-option input[type="radio"]:checked + .shipping-option-box {
    background: var(--card);
    border-color: 1px solid var(--fg);
    color: var(--fg);
    box-shadow: 0 0 0 1px var(--bg);
}
.shipping-option input[type="radio"]:checked + .shipping-option-box i {
    color: var(--fg);
}
.shipping-option-box:hover {
    border-color: 1px solid var(--neon-purple);
    background: var(--card);
}
/* Quantity Controls */
.quantity-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 0.25rem;
}
.quantity-btn {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg);
    color: var(--fg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.2s ease;
}
.quantity-btn:hover {
    background: var(--bg);
    border-color: var(--fg);
    color: var(--fg);
}
.quantity-btn:active {
    transform: scale(0.95);
}
.quantity-wrapper input {
    width: 4rem;
    text-align: center;
    border: none;
    background: transparent;
    color: var(--fg);
    font-size: 1.125rem;
    font-weight: 600;
    padding: 0.5rem;
}
.quantity-wrapper input:focus {
    outline: none;
    box-shadow: none;
}
.payment-method {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
}
.payment-note {
    font-size: 0.625rem;
    color: var(--muted-fg);
    font-style: italic;
    margin-top: 0.5rem;
    padding-left: 0.25rem;
}
/* Order Summary */
.order-summary {
    background: var(--bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    color: var(--muted-fg);
    font-size: 0.9375rem;
}

.summary-row:not(:last-child) {
    border-bottom: 1px dashed rgba(74, 112, 67, 0.15);
}

.summary-total {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--fg);
    padding-top: 0.75rem;
    margin-top: 0.25rem;
}

.summary-total span:last-child {
    color: var(--fg);
    font-size: 1.25rem;
}


.form-footer-text {
    text-align: center;
    font-size: 0.625rem;
    color: var(--muted-fg);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 1rem;
}
/* Spinner */
.spinner {
    font-size: 1rem;
    color: var(--fg);
    animation: spin 1s linear infinite;
    margin-right: 0.3rem;
}

/* Success Message */
.success-message {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    padding: 1rem;
}
.success-content {
    background: white;
    padding: 3rem;
    border-radius: var(--radius);
    text-align: center;
    max-width: 500px;
    animation: scaleIn 0.5s ease;
}
.success-content i {
    font-size: 3rem;
    color: var(--fg);
    margin-bottom: 1.5rem;
}
.success-content h3 {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.success-content p {
    color: var(--muted-fg);
    margin-bottom: 2rem;
}





/* ---- PRODUCT SPECS ---- */
.order-form .single-grid {
  max-width: 800px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin: 0 auto;
}

.spec-table {
  overflow: hidden;
}

.spec-table .header {
  background: var(--bg);
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--glass-border);
}

.spec-table .header h3 {
  font-size: 1.25rem;
  font-weight: 600;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1.5rem;
}
.spec-row:nth-child(even) {
  background: var(--glass);
}
.spec-row:not(:last-child) {
  border-bottom: 1px solid var(--glass-border);
}
.spec-row .label {
  font-size: 0.90rem;
  color: var(--muted-fg);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.spec-row i {
  font-size: 0.5rem;
}
.spec-row .value {
  font-size: 0.875rem;
  font-weight: 500;
}

/* ---- ORDER FORM ---- */








/* ---- STORE ---- */
.store-section {
  padding: 6rem 0;
  position: relative;
}

.store-section .divider {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    hsla(210, 100%, 56%, 0.3),
    transparent
  );
}

.store-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.store-card {
  padding: 2rem;
}

.store-card h3 {
  font-family: "Poppins", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.store-card .info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.store-card .info-item i {
  color: var(--neon-red);
  margin-top: 2px;
  width: 20px;
  text-align: center;
}

.store-card .info-item .lbl {
  font-size: 0.875rem;
  font-weight: 500;
}

.store-card .info-item .val {
  font-size: 0.875rem;
  color: var(--muted-fg);
}

.store-whatsapp {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.store-whatsapp i.big {
  font-size: 4rem;
  color: var(--neon-red);
  margin-bottom: 1.5rem;
}

.store-whatsapp h3 {
  font-family: "Poppins", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.store-whatsapp p {
  font-size: 0.875rem;
  color: var(--muted-fg);
  margin-bottom: 1.5rem;
}

.map-link {
  display: inline-block;
  padding: 0.5rem 0;
}

/* ---- FOOTER ---- */
.footer {
  padding: 1rem 0;
  border-top: 1px solid var(--glass-border);
}

.footer .inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

.footer .logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
}

.footer .logo i {
  color: var(--neon-red);
}

.footer .f-links {
  font-size: 0.85rem;
  color: var(--muted-fg);
  text-align: center;
}

.footer .copy {
  font-size: 0.75rem;
  color: var(--muted-fg);
}



/* =====================
  Order Confirmed Page
======================== */
.confirmed-page {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
}

.confirmed-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.confirmed-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.confirmed-blob-1 {
    top: -8rem;
    left: -4rem;
    width: 20rem;
    height: 20rem;
    background: rgba(168, 213, 186, 0.15);
    animation: float-blob 8s ease-in-out infinite;
}

.confirmed-blob-2 {
    bottom: -6rem;
    right: -6rem;
    width: 24rem;
    height: 24rem;
    background: rgba(74, 112, 67, 0.08);
    animation: float-blob 10s ease-in-out infinite reverse;
}

.confirmed-blob-3 {
    top: 50%;
    left: 50%;
    width: 16rem;
    height: 16rem;
    background: rgba(212, 165, 116, 0.06);
    transform: translate(-50%, -50%);
    animation: float-blob 12s ease-in-out infinite;
}

@keyframes float-blob {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(20px, -20px); }
}

.confirmed-container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 640px;
    text-align: center;
    animation: fadeInUp 0.6s ease both;
}

/* Success Icon */
.confirmed-icon-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.confirmed-icon-ring {
    position: absolute;
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    border: 10px solid var(--glass-border);
    animation: ring-pulse 2s ease-in-out infinite;
}

@keyframes ring-pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0; }
}

.confirmed-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 40px rgba(74, 112, 67, 0.3);
    animation: icon-pop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.2s both;
}

.confirmed-icon i {
    font-size: 2rem;
    color: var(--fg);
}

@keyframes icon-pop {
    from { transform: scale(0); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* Title */
.confirmed-title {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    font-weight: 700;
    color: var(--fg);
    margin-bottom: 0.5rem;
}

.confirmed-subtitle {
    font-size: 1rem;
    color: var(--muted-fg);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Order Card */
.confirmed-card {
    background: var(--fg);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--glass-border);
    text-align: left;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s ease 0.15s both;
}

.confirmed-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: var(--bg);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.confirmed-order-id span {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--muted-fg);
    margin-bottom: 0.125rem;
}

.confirmed-order-id strong {
    font-size: 1.125rem;
    color: var(--fg);
}

.confirmed-status {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--fg);
    background: var(--bg);
    padding: 0.375rem 0.875rem;
    border-radius: 9999px;
}

.confirmed-status .status-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: var(--bg);
    animation: pulse 2s infinite;
}

@media (min-width: 480px) {
    .confirmed-info-full {
        grid-column: span 2;
    }
}

/* Product Row */
.confirmed-product-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.confirmed-product-info {
    display: flex;
    align-items: center;
    gap: 0.875rem;
}

.confirmed-product-img {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: var(--radius);
    object-fit: cover;
    border: 1px solid var(--glass-border);
}

.confirmed-product-info h4 {
    font-size: 0.9375rem;
    font-weight: 600;
    margin-bottom: 0.125rem;
}

.confirmed-product-info p {
    font-size: 0.8125rem;
    color: var(--muted-fg);
}

.confirmed-product-total {
    font-size: 1rem;
    font-weight: 700;
    color: var(--fg);
    white-space: nowrap;
}

/* Summary Rows */
.confirmed-summary {
  background: var(--bg);
  padding: 1rem;
}
.confirmed-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    font-size: 0.875rem;
    color: var(--muted-fg);
}

.confirmed-summary-row:not(:last-child) {
    border-bottom: 1px dashed var(--glass-border);
}

.confirmed-summary-rows {
    background: var(--glass);
    border-radius: var(--radius);
    padding: 0.75rem 1rem;
}

.confirmed-summary-total {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--fg);
    padding-top: 0.75rem;
    margin-top: 0.25rem;
}

.confirmed-summary-total span:last-child {
    color: var(--fg);
    font-size: 1.125rem;
}

/* Note */
.confirmed-note {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    text-align: left;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 1rem 1.25rem;
    margin-bottom: 2rem;
    animation: fadeInUp 0.6s ease 0.3s both;
}

.confirmed-note i {
    color: var(--fg);
    font-size: 1.125rem;
    margin-top: 0.125rem;
}

.confirmed-note p {
    font-size: 0.875rem;
    color: var(--muted-fg);
    line-height: 1.6;
}

/* Actions */
.confirmed-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    animation: fadeInUp 0.6s ease 0.45s both;
}

.confirmed-actions .btn {
    gap: 0.5rem;
}


/* ---- RESPONSIVE STYLES ---- */
@media (max-width: 375px) {
  .hero-section .price-row {
    flex-direction: column;
    gap: 0;
  }
}
@media (max-width: 479px) {
  .shipping-area-row {
    flex-direction: column;
    gap: 0.5rem;
  }
  .multiple-input-group, .shipping-area-row {
    flex-direction: column;
  }
  .shipping-option-box {
    padding: 0.65rem 0.75rem;
    font-size: 0.8125rem;
  }
  .confirmed-actions {
    flex-direction: row;
    justify-content: center;
  }
  .confirmed-card-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  .confirmed-product-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .confirmed-product-total {
    align-self: flex-end;
  }
}
@media (min-width: 480px) {
  .confirmed-actions {
      flex-direction: row;
      justify-content: center;
  }
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }
  .mobile-menu.open {
    display: block;
  }
  .toggleItemsMobile {
    display: flex;
    gap: 0.65rem;
  }
  .whyus-grid {
    grid-template-columns: 1fr;
  }
  .products-grid {
    grid-template-columns: 1fr;
  }
  .store-grid {
    grid-template-columns: 1fr;
  }
  .footer .inner {
    flex-direction: column;
    text-align: center;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .whyus-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 1024px) {
  .hero-section .grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-section .cta-row {
    justify-content: center;
  }
  .hero-section .stats {
    justify-content: center;
  }
  .hero-section .price-row {
    justify-content: center;
  }
  .hero-section h1 {
    font-size: 2.25rem;
  }
  .company-hero .grid {
    grid-template-columns: 1fr;
  }
  .review-badges {
    align-items: center;
  }
  .company-hero h1 {
    font-size: 2.25rem;
  }
  .single-grid {
    grid-template-columns: 1fr;
  }
}