/* -------------------------------------------------------------
 * ThemeFlex Pure Oil - High Conversion Sales Landing Page Styles
 * Colors: Golden Mustard (#EAA023, #D4820A), Organic Deep Green (#0F2B1D, #183C2A), Cream Warm (#FAF7F2)
 * Mobile First & Ultra Responsive Optimization
 * ------------------------------------------------------------- */

@import url('https://fonts.googleapis.com/css2?family=Hind+Siliguri:wght@400;500;600;700&family=Outfit:wght@400;600;700;800&display=swap');

:root {
  --primary-gold: #E69500;
  --primary-dark-gold: #C27B00;
  --gold-glow: rgba(230, 149, 0, 0.25);
  --deep-green: #0A2417;
  --dark-forest: #123322;
  --accent-light-green: #2E6F4A;
  --cream-bg: #FBF9F4;
  --card-bg: #FFFFFF;
  --text-dark: #1E2521;
  --text-muted: #5C6760;
  --border-color: #E2DBD0;
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.12);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Hind Siliguri', 'Outfit', sans-serif;
  background-color: var(--cream-bg);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  padding-bottom: 75px; /* space for mobile sticky bar */
}

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

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

ul {
  list-style: none;
}

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

/* --- Container --- */
.container {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
}

/* --- Top Offer Bar --- */
.top-bar {
  background: linear-gradient(90deg, #05180E 0%, #123322 50%, #05180E 100%);
  color: #FFF;
  text-align: center;
  padding: 7px 12px;
  font-size: 0.85rem;
  font-weight: 600;
  border-bottom: 1px solid rgba(230, 149, 0, 0.35);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.top-bar-content {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-align: center;
}

.top-bar-content i {
  color: #FFC857;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.top-bar span.highlight {
  background: linear-gradient(135deg, var(--primary-gold), var(--primary-dark-gold));
  color: #FFFFFF;
  padding: 3px 10px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.8rem;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
  white-space: nowrap;
}

@media (max-width: 576px) {
  .top-bar {
    padding: 6px 10px;
    font-size: 0.8rem;
    gap: 6px;
    flex-direction: column;
  }
  .top-bar-content {
    justify-content: center;
    font-size: 0.8rem;
    line-height: 1.3;
  }
  .top-bar span.highlight {
    font-size: 0.76rem;
    padding: 2px 8px;
  }
}

/* --- Header / Navigation --- */
.site-header {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border-bottom: 1px solid var(--border-color);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--deep-green);
}

@media (min-width: 768px) {
  .brand-logo {
    font-size: 1.4rem;
  }
}

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

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

.nav-links {
  display: none;
  gap: 25px;
  font-weight: 600;
}

@media (min-width: 992px) {
  .nav-links {
    display: flex;
  }
}

.nav-links a:hover {
  color: var(--primary-gold);
}

.btn-header {
  background: linear-gradient(135deg, var(--primary-gold), var(--primary-dark-gold));
  color: #FFF;
  padding: 8px 16px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 4px 15px var(--gold-glow);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-header:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--gold-glow);
}

/* --- Buttons --- */
.btn-primary {
  background: linear-gradient(135deg, #E69500 0%, #C27B00 100%);
  color: #FFFFFF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.05rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(230, 149, 0, 0.4);
  transition: var(--transition);
  text-align: center;
  width: 100%;
}

@media (min-width: 576px) {
  .btn-primary {
    width: auto;
  }
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 30px rgba(230, 149, 0, 0.5);
  background: linear-gradient(135deg, #FF9F00 0%, #D4820A 100%);
}

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

@keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0 rgba(230, 149, 0, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(230, 149, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(230, 149, 0, 0);
  }
}

.btn-secondary {
  background: #FFF;
  color: var(--deep-green);
  border: 2px solid var(--deep-green);
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.98rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition);
  cursor: pointer;
  width: 100%;
}

@media (min-width: 576px) {
  .btn-secondary {
    width: auto;
  }
}

.btn-secondary:hover {
  background: var(--deep-green);
  color: #FFF;
}

/* --- Single Selected Product Card on Checkout Page --- */
.selected-product-card {
  background: #FFF;
  border: 2px solid var(--primary-gold);
  border-radius: var(--radius-md);
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 4px 15px rgba(230, 149, 0, 0.15);
  margin-bottom: 20px;
  position: relative;
}

.selected-product-img {
  width: 75px;
  height: 75px;
  border-radius: 12px;
  background: #F9F6F0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 4px;
  border: 1px solid var(--border-color);
}

.selected-product-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.selected-product-info {
  flex-grow: 1;
}

.selected-badge {
  background: rgba(230, 149, 0, 0.12);
  color: var(--primary-dark-gold);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 4px;
}

.selected-product-info h4 {
  font-size: 1.05rem;
  color: var(--deep-green);
  font-weight: 700;
  line-height: 1.3;
}

.selected-price {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary-dark-gold);
  margin-top: 2px;
}

.btn-change-product {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  border: 1px solid var(--border-color);
  padding: 6px 12px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition);
  white-space: nowrap;
  background: #FFF;
}

.btn-change-product:hover {
  background: var(--deep-green);
  color: #FFF;
  border-color: var(--deep-green);
}

/* --- Hero Section --- */
.hero {
  position: relative;
  background: linear-gradient(135deg, #0A2417 0%, #153B28 100%);
  color: #FFF;
  padding: 35px 0 55px 0;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background: radial-gradient(circle at 80% 20%, rgba(230, 149, 0, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

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

@media (min-width: 992px) {
  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
  }
}

.hero-content {
  z-index: 2;
  text-align: center;
}

@media (min-width: 992px) {
  .hero-content {
    text-align: left;
  }
}

.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(230, 149, 0, 0.15);
  border: 1px solid rgba(230, 149, 0, 0.4);
  color: #FFC857;
  padding: 5px 12px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 14px;
}

.hero-title {
  font-size: 1.85rem;
  line-height: 1.28;
  font-weight: 700;
  margin-bottom: 14px;
  color: #FFFFFF;
}

.hero-title span {
  color: #FFC857;
  position: relative;
  display: inline-block;
}

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

.hero-desc {
  font-size: 1rem;
  color: #D3E0D8;
  margin-bottom: 22px;
  line-height: 1.6;
}

.hero-trust-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 25px;
  text-align: left;
}

@media (min-width: 576px) {
  .hero-trust-list {
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  }
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.08);
  padding: 8px 10px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-item i {
  color: #FFC857;
  font-size: 1rem;
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

@media (min-width: 576px) {
  .hero-cta-group {
    flex-direction: row;
  }
}

/* --- Hero Image & Mobile Gallery Switcher --- */
.hero-image-wrapper {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-image-card {
  position: relative;
  width: 100%;
  max-width: 440px;
  height: 330px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(230, 149, 0, 0.2);
  border: 2px solid rgba(230, 149, 0, 0.4);
  background: #0D2D1E;
}

@media (min-width: 768px) {
  .hero-image-card {
    height: 420px;
  }
}

.hero-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: opacity 0.4s ease, transform 0.5s ease;
}

.floating-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  background: rgba(10, 36, 23, 0.88);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(230, 149, 0, 0.6);
  padding: 8px 14px;
  border-radius: 10px;
  color: #FFF;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-md);
  text-align: left;
}

.floating-badge i {
  font-size: 1.5rem;
  color: #FFC857;
}

.hero-thumbs-bar {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  justify-content: center;
  max-width: 100%;
  overflow-x: auto;
  padding: 4px;
}

.hero-thumb-btn {
  width: 60px;
  height: 48px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: var(--transition);
  opacity: 0.7;
  padding: 0;
  background: #000;
  flex-shrink: 0;
}

.hero-thumb-btn.active,
.hero-thumb-btn:hover {
  border-color: var(--primary-gold);
  opacity: 1;
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(230, 149, 0, 0.4);
}

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

/* --- Stats Strip --- */
.stats-strip {
  background: #FFFFFF;
  padding: 20px 0;
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--border-color);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  text-align: center;
}

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

.stat-box h3 {
  font-size: 1.5rem;
  color: var(--deep-green);
  font-weight: 800;
}

@media (min-width: 768px) {
  .stat-box h3 {
    font-size: 1.8rem;
  }
}

.stat-box p {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* --- Section Shared --- */
.section {
  padding: 50px 0;
}

@media (min-width: 768px) {
  .section {
    padding: 70px 0;
  }
}

.section-title-area {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 35px auto;
}

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

.section-main-title {
  font-size: 1.7rem;
  color: var(--deep-green);
  font-weight: 700;
  line-height: 1.3;
}

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

.section-main-title span {
  color: var(--primary-dark-gold);
}

/* --- Products Pricing Section --- */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
}

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

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

.product-card {
  background: #FFF;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-gold);
}

.product-card.popular {
  border: 2px solid var(--primary-gold);
  box-shadow: 0 10px 30px rgba(230, 149, 0, 0.2);
}

.popular-ribbon {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--primary-gold);
  color: #FFF;
  font-weight: 700;
  font-size: 0.78rem;
  padding: 3px 10px;
  border-radius: 20px;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.product-img-container {
  height: 240px;
  background: #F9F6F0;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.product-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

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

.product-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--deep-green);
  margin-bottom: 6px;
}

.product-specs {
  display: flex;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.product-specs span {
  background: #F0EDE5;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 600;
}

.price-tag-area {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 12px 0;
}

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

.current-price small {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
}

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

.product-features {
  margin-bottom: 18px;
  flex-grow: 1;
}

.product-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.92rem;
  margin-bottom: 6px;
  color: var(--text-dark);
}

.product-features li i {
  color: var(--accent-light-green);
  font-size: 0.85rem;
  margin-top: 3px;
}

/* --- Why Choose Us / Ghani vs Mill --- */
.comparison-section {
  background: #F4F0E6;
}

.comparison-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 992px) {
  .comparison-wrapper {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

.compare-card {
  background: #FFF;
  border-radius: var(--radius-md);
  padding: 22px;
  box-shadow: var(--shadow-sm);
}

@media (min-width: 768px) {
  .compare-card {
    padding: 30px;
  }
}

.compare-card.ghani {
  border-top: 5px solid var(--primary-gold);
}

.compare-card.mill {
  border-top: 5px solid #A0A0A0;
}

.compare-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.compare-list li {
  padding: 8px 0;
  border-bottom: 1px dashed var(--border-color);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
}

.compare-list li:last-child {
  border-bottom: none;
}

.compare-list i.check {
  color: #27AE60;
  font-size: 1.1rem;
  margin-top: 2px;
}

.compare-list i.cross {
  color: #E74C3C;
  font-size: 1.1rem;
  margin-top: 2px;
}

/* --- Benefits Grid --- */
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 576px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.benefit-card {
  background: #FFF;
  padding: 22px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  text-align: center;
  transition: var(--transition);
}

.benefit-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary-gold);
}

.benefit-icon {
  width: 55px;
  height: 55px;
  background: rgba(230, 149, 0, 0.12);
  color: var(--primary-dark-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px auto;
  font-size: 1.6rem;
}

.benefit-card h4 {
  font-size: 1.15rem;
  color: var(--deep-green);
  margin-bottom: 6px;
}

.benefit-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* --- Express Order Form & Checkout Mobile Styling --- */
.order-section {
  background: linear-gradient(180deg, #FAF7F2 0%, #EDE6D8 100%);
  position: relative;
}

.order-box {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--primary-gold);
  overflow: hidden;
}

.order-header {
  background: var(--deep-green);
  color: #FFF;
  padding: 20px 15px;
  text-align: center;
}

.order-header h2 {
  font-size: 1.5rem;
  color: #FFC857;
  margin-bottom: 4px;
}

.order-header p {
  font-size: 0.92rem;
  color: #D3E0D8;
}

.order-form-body {
  padding: 20px 15px;
}

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

.order-grid-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
}

@media (min-width: 992px) {
  .order-grid-layout {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

.form-group-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--deep-green);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 2px solid #F0EDE5;
  padding-bottom: 6px;
}

.product-select-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.product-option-radio {
  position: relative;
}

.product-option-radio input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.product-radio-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  background: #FFF;
}

.product-option-radio input[type="radio"]:checked + .product-radio-label {
  border-color: var(--primary-gold);
  background: rgba(230, 149, 0, 0.05);
  box-shadow: 0 4px 12px rgba(230, 149, 0, 0.15);
}

.radio-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.custom-radio {
  width: 18px;
  height: 18px;
  border: 2px solid #AAA;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  flex-shrink: 0;
}

.product-option-radio input[type="radio"]:checked + .product-radio-label .custom-radio {
  border-color: var(--primary-gold);
}

.product-option-radio input[type="radio"]:checked + .product-radio-label .custom-radio::after {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--primary-gold);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.radio-item-name {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--text-dark);
}

.radio-item-price {
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--primary-dark-gold);
  white-space: nowrap;
}

.quantity-control-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.qty-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  background: #FFF;
  font-size: 1.3rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.qty-btn:hover {
  background: var(--primary-gold);
  color: #FFF;
  border-color: var(--primary-gold);
}

.qty-input {
  width: 55px;
  text-align: center;
  font-size: 1.15rem;
  font-weight: 700;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 6px;
}

.form-field {
  margin-bottom: 15px;
}

.form-field label {
  display: block;
  font-weight: 600;
  margin-bottom: 4px;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-family: inherit;
  font-size: 16px; /* Prevents auto zoom on iOS */
  transition: var(--transition);
  background: #FFF;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--primary-gold);
  box-shadow: 0 0 0 3px rgba(230, 149, 0, 0.2);
}

/* Order Summary Box */
.summary-card {
  background: #FDFBF7;
  border: 1px solid #EBE4D5;
  border-radius: var(--radius-md);
  padding: 18px;
}

@media (min-width: 768px) {
  .summary-card {
    padding: 24px;
  }
}

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 0.95rem;
  border-bottom: 1px dashed var(--border-color);
}

.summary-row.total {
  border-bottom: none;
  border-top: 2px solid var(--deep-green);
  margin-top: 8px;
  padding-top: 12px;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--deep-green);
}

.summary-row.total span.amount {
  color: var(--primary-dark-gold);
}

.payment-badge-box {
  background: rgba(39, 174, 96, 0.1);
  border: 1px solid rgba(39, 174, 96, 0.3);
  color: #1E7E44;
  padding: 10px;
  border-radius: 8px;
  text-align: center;
  font-weight: 700;
  font-size: 0.88rem;
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* --- Testimonials --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
  }
}

.testimonial-card {
  background: #FFF;
  padding: 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  position: relative;
}

.stars {
  color: #F1C40F;
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.testimonial-text {
  font-style: italic;
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 12px;
}

.user-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

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

.user-details h5 {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.user-details span {
  font-size: 0.8rem;
  color: #888;
}

/* --- FAQ Accordion --- */
.faq-wrapper {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #FFF;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 14px 16px;
  background: none;
  border: none;
  text-align: left;
  font-size: 1rem;
  font-weight: 700;
  color: var(--deep-green);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: inherit;
}

.faq-answer {
  padding: 0 16px 14px 16px;
  color: var(--text-muted);
  font-size: 0.92rem;
  display: none;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-question i {
  transition: var(--transition);
  color: var(--primary-gold);
}

/* --- Footer --- */
.site-footer {
  background: var(--deep-green);
  color: #FFF;
  padding: 40px 0 20px 0;
  border-top: 3px solid var(--primary-gold);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 15px;
  margin-bottom: 30px;
}

.footer-col.brand-col {
  grid-column: 1 / -1;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.2fr 0.9fr 1fr;
    gap: 30px;
  }
  .footer-col.brand-col {
    grid-column: auto;
  }
}

.footer-col h4 {
  color: #FFC857;
  font-size: 1.1rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.footer-col p {
  color: #B5C7BC;
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-links li {
  margin-bottom: 6px;
}

.footer-links a {
  color: #B5C7BC;
  transition: var(--transition);
  font-size: 0.88rem;
}

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

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  color: #B5C7BC;
  font-size: 0.88rem;
}

.contact-info-item i {
  color: #FFC857;
}

.footer-bottom {
  text-align: center;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #88A593;
  font-size: 0.85rem;
}

/* --- Mobile Sticky Bottom Bar --- */
.mobile-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(10, 36, 23, 0.95);
  backdrop-filter: blur(12px);
  padding: 8px 12px;
  display: flex;
  gap: 8px;
  z-index: 9999;
  border-top: 1px solid var(--primary-gold);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.25);
}

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

.mobile-sticky-bar a {
  flex: 1;
  padding: 10px;
  font-size: 0.9rem;
  border-radius: 30px;
  text-align: center;
}

.btn-whatsapp-sticky {
  background: #25D366;
  color: #FFF;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* --- Success Order Modal --- */
.modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 15px;
}

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

.modal-card {
  background: #FFF;
  border-radius: var(--radius-md);
  max-width: 500px;
  width: 100%;
  padding: 24px 18px;
  text-align: center;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
  box-shadow: var(--shadow-lg);
}

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

.success-icon {
  width: 60px;
  height: 60px;
  background: #E8F8F0;
  color: #27AE60;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 16px auto;
}

.modal-card h3 {
  font-size: 1.4rem;
  color: var(--deep-green);
  margin-bottom: 8px;
}

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

.invoice-details {
  background: #F8F5EE;
  padding: 12px;
  border-radius: 8px;
  text-align: left;
  margin-bottom: 16px;
  font-size: 0.9rem;
}

.invoice-details div {
  margin-bottom: 5px;
}

/* --- Blocked IP & Phone Warning Overlay Popup Styles --- */
.block-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #090d16;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background-image: radial-gradient(circle at 50% 50%, rgba(217, 119, 6, 0.08) 0%, transparent 60%);
}

.block-overlay.phone-block-overlay {
  background: rgba(9, 13, 22, 0.92);
  backdrop-filter: blur(10px);
  z-index: 99998;
}

.block-card {
  background: #111726;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  width: 100%;
  max-width: 520px;
  padding: 45px 30px;
  text-align: center;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 30px rgba(245, 158, 11, 0.1);
  position: relative;
  animation: blockPop 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes blockPop {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.block-icon-circle {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  border: 3px solid #f59e0b;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px auto;
  font-size: 2.3rem;
  color: #f59e0b;
  box-shadow: 0 0 25px rgba(245, 158, 11, 0.3);
}

.block-card h3 {
  font-size: 1.65rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 14px;
  font-family: 'Hind Siliguri', sans-serif;
  letter-spacing: -0.5px;
}

.block-card p {
  font-size: 0.96rem;
  color: #9ca3af;
  line-height: 1.65;
  margin-bottom: 28px;
  font-family: 'Hind Siliguri', sans-serif;
}

.btn-care-call {
  background: linear-gradient(135deg, #d97706, #b45309);
  color: #ffffff !important;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 6px 20px rgba(217, 119, 6, 0.4);
  transition: all 0.25s ease;
  font-family: 'Hind Siliguri', sans-serif;
  border: none;
  cursor: pointer;
}

.btn-care-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(217, 119, 6, 0.6);
}

.block-card-close {
  position: absolute;
  top: 18px;
  right: 22px;
  background: transparent;
  border: none;
  color: #6b7280;
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s ease;
}

.block-card-close:hover {
  color: #ef4444;
}
