@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700&family=DM+Sans:wght@400;500;600;700&display=swap');

:root {
  --primary: #E8431A;
  --primary-dark: #C63A16;
  --black: #0F172A;
  --dark-card: #FFFFFF;
  --white: #FFFFFF;
  --off-white: #FFFBF9;
  --light-bg: #FFFFFF;
  --light-border: #FFEADF;
  --dark-border: #FFC5B3;
  --text-dark: #0F172A;
  --text-grey: #475569;
  --text-light: #64748B;
  --green-wa: #25D366;
  --gold: #D4872A;

  --font-heading: 'Barlow Condensed', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--off-white);
  -webkit-font-smoothing: antialiased;
  padding-bottom: 52px;
  font-size: 0.82rem;
  overflow-x: hidden;
  max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--black);
}

/* Mobile First Typography */
h1 {
  font-size: 1.7rem;
}

h2 {
  font-size: 1.4rem;
}

h3 {
  font-size: 1.0rem;
}

/* Layout & Containers */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
  width: 100%;
}

section {
  padding: 36px 0;
}

.dark-bg {
  background: var(--black);
  color: var(--white);
}

.dark-bg h1,
.dark-bg h2,
.dark-bg h3,
.dark-bg h4 {
  color: var(--white);
}

.light-bg {
  background: var(--light-bg);
}

.orange-bg {
  background: var(--primary);
  color: var(--white);
}

.orange-bg h1,
.orange-bg h2,
.orange-bg h3 {
  color: var(--white);
}

/* Buttons */
.btn-primary,
.btn-wa,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.3px;
  border-radius: 4px;
  padding: 10px 18px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s;
  min-height: 42px;
  min-width: 120px;
  border: none;
  text-transform: uppercase;
  text-align: center;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-wa {
  background: var(--green-wa);
  color: var(--white);
}

.btn-wa:hover {
  background: #1fae51;
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 8px 16px;
}

.btn-outline:hover {
  background: rgba(232, 67, 26, 0.05);
}

.nav-pill {
  background: rgba(232, 67, 26, 0.1);
  color: var(--primary);
  border: none;
  padding: 8px 22px;
  border-radius: 50px;
  font-weight: 700;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.nav-pill:hover {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(232, 67, 26, 0.2);
  transform: translateY(-1px);
}

/* Top Bar */
.top-bar {
  background: var(--black);
  height: 40px;
  font-size: 0.85rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tb-email {
  display: inline;
}

.tb-contact {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

@media (max-width: 767px) {
  .top-bar {
    height: auto;
    padding: 8px 0;
  }

  .top-bar .container {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .tb-contact {
    justify-content: center;
    flex-direction: column;
    gap: 4px;
  }

  .tb-contact span.tb-email {
    display: none;
    /* Hide vertical separator on mobile */
  }

  .tb-social {
    display: none;
    /* Hide social text/icons on tiny top bar to save space */
  }
}

.tb-contact a {
  color: var(--text-light);
  text-decoration: none;
}

.tb-contact a:hover {
  color: var(--primary);
}

.tb-social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.tb-social span {
  display: none;
}

.tb-social a {
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.tb-social a:hover {
  color: var(--primary);
}

.tb-social svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* Navbar */
.navbar {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #EDE5D8;
  height: 64px;
  transition: box-shadow 0.3s;
}

.navbar.scrolled {
  box-shadow: 0 2px 16px rgba(100, 50, 10, 0.10);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.nav-logo img {
  height: 44px;
  display: block;
}

.nav-links {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: rgba(12, 12, 12, 0.98);
  backdrop-filter: blur(15px);
  display: flex;
  flex-direction: column;
  padding: 80px 40px;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 9999;
}

.nav-links.active {
  right: 0;
}

.nav-close {
  position: absolute;
  top: 20px;
  right: 20px;
  color: var(--white);
  font-size: 2.2rem;
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.4rem;
  padding: 20px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
  padding-left: 10px;
}

.nav-links .btn-wa {
  margin-top: 40px;
  width: 100%;
  justify-content: center;
  font-size: 1.1rem;
  padding: 18px;
  border-radius: 8px;
  font-weight: 700;
  background: var(--whatsapp);
  color: var(--white);
}

.nav-btn-desktop {
  display: none;
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  width: 24px;
  z-index: 1000;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
}

/* Mobile Sticky Bottom Bar */
.mobile-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 52px;
  display: none;
  z-index: 8900;
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
  .mobile-bottom-bar {
    display: flex;
  }

  body {
    padding-bottom: 60px;
  }
}

.mbb-call,
.mbb-wa {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  color: white;
  text-decoration: none;
}

.mbb-call {
  background: #E8431A;
}

.mbb-wa {
  background: #25D366;
}

/* Floating WhatsApp */
.wa-float {
  position: fixed;
  bottom: 80px;
  right: 16px;
  width: 50px;
  height: 50px;
  background: var(--green-wa);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.35);
  z-index: 9000;
  animation: pulse 3s infinite;
}

.wa-float svg {
  width: 24px;
  height: 24px;
  fill: var(--white);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Footer */
.footer {
  background: var(--black);
  color: var(--text-light);
  border-top: 3px solid var(--primary);
  --text-grey: #4A351A;
}

.footer-top {
  padding: 48px 0 32px;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.footer-logo {
  max-height: 55px;
  width: auto;
  margin-bottom: 15px;
}

.footer p {
  font-size: 0.82rem;
  color: var(--text-light);
  max-width: 220px;
  line-height: 1.6;
}

.footer h4 {
  font-size: 0.75rem;
  color: var(--primary);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.footer ul {
  list-style: none;
}

.footer ul li {
  margin-bottom: 8px;
}

.footer ul a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.82rem;
  transition: color 0.2s;
  line-height: 2.0;
}

.footer ul a:hover {
  color: var(--primary);
}

.footer-contact p {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 2.0;
  margin-bottom: 5px;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding-bottom: 30px;
}

.footer-social a {
  color: var(--white);
  transition: color 0.2s;
}

.footer-social a:hover {
  color: var(--primary);
}

.footer-social svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.footer-map {
  width: 100%;
  height: 200px;
  border-radius: 6px;
  border: 1px solid var(--dark-border);
  margin-bottom: 30px;
}

.footer-bottom {
  background: #080808;
  text-align: center;
  padding: 14px 0;
  font-size: 0.72rem;
  color: #555;
}

/* Cards & Utilities */
.tag-hyd {
  display: inline-block;
  border: 1px solid var(--primary);
  color: var(--primary);
  font-size: 0.65rem;
  letter-spacing: 2px;
  padding: 4px 10px;
  border-radius: 2px;
  font-weight: 700;
  text-transform: uppercase;
}

.badge {
  font-size: 0.6rem;
  padding: 3px 8px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--white);
  border-radius: 2px;
}

.badge.gold {
  background: var(--gold);
}

.badge.blue {
  background: #1D4ED8;
}

.badge.green {
  background: #15803D;
}

.badge.red {
  background: var(--primary);
}

.badge.dark {
  background: #374151;
}

.table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-top: 20px;
  width: 100%;
}

table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  background: var(--white);
  border: 1px solid var(--light-border);
  border-radius: 6px;
  overflow: hidden;
}

th,
td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--light-border);
  font-size: 0.82rem;
}

.spec-table-modal {
  width: 100%;
  border: none;
  background: transparent;
  margin: 15px 0;
}

.spec-table-modal td {
  padding: 10px 0;
  border-bottom: 1px solid #f1f1f1;
}

.spec-label {
  color: var(--text-light);
  width: 40%;
}

.spec-val {
  font-weight: 600;
  color: var(--text-dark);
  text-align: right;
}

th {
  background: var(--off-white);
  font-family: var(--font-heading);
  font-size: 1rem;
  text-transform: uppercase;
}

.col-highlight {
  background: #FFF5F2;
  font-weight: 600;
}

/* Forms & Inputs */
.form-group {
  margin-bottom: 16px;
}

.form-label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 0.85rem;
}

.form-control {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--light-border);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.9rem;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
}

/* Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.35s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Product Cards */
.prod-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 28px;
}

.prod-card {
  background: var(--white);
  border: 1px solid var(--light-border);
  border-radius: 6px;
  overflow: hidden;
  transition: all 0.25s;
  position: relative;
  display: flex;
  flex-direction: column;
}

.prod-card:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 16px rgba(232, 67, 26, 0.12);
}

.prod-img {
  height: 150px;
  background: #F8F8F8;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border-bottom: 1px solid #EFEFEF;
}

.prod-img img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.prod-badge-pos {
  position: absolute;
  top: 10px;
  left: 10px;
}

.prod-info {
  padding: 12px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.prod-title {
  font-size: 0.85rem;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.3;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-transform: none;
}

.prod-stars {
  color: var(--primary);
  font-size: 0.72rem;
}

.prod-reviews {
  color: #999;
  font-size: 0.7rem;
  margin-left: 4px;
}

.prod-price-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 6px 0;
}

.prod-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--black);
}

.prod-mrp {
  font-size: 0.72rem;
  color: #999;
  text-decoration: line-through;
}

.prod-spec-badge {
  display: inline-block;
  background: #F1F5F9;
  font-size: 0.65rem;
  padding: 4px 10px;
  border-radius: 6px;
  margin-right: 6px;
  margin-bottom: 6px;
  color: #475569;
  font-weight: 600;
  border: 1px solid #E2E8F0;
  transition: all 0.2s;
}

.prod-spec-badge:hover {
  background: #E2E8F0;
  color: #1E293B;
}

.prod-spec-highlight {
  background: #FFF0ED !important;
  color: #E8431A !important;
  border-color: #FFD8D0 !important;
}

.prod-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
}

.prod-actions .btn-outline,
.prod-actions .btn-wa {
  flex: 1;
  font-size: 0.75rem;
  padding: 8px 12px;
  width: 100%;
  min-height: 38px;
}

/* Filter Tabs */
.filter-tabs {
  background: var(--white);
  position: sticky;
  top: 64px;
  z-index: 900;
  border-bottom: 1px solid var(--light-border);
  padding: 10px 0;
}

.filter-scroll {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 5px;
  scrollbar-width: none;
}

.filter-scroll::-webkit-scrollbar {
  display: none;
}

.filter-btn {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 4px;
  border: 1px solid var(--light-border);
  background: var(--white);
  color: var(--text-dark);
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
  text-transform: uppercase;
}

.filter-btn.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 10000;
  display: none;
}

.modal-overlay.active {
  display: flex;
}

.modal-box {
  background: var(--white);
  width: 100vw;
  height: 100vh;
  max-width: 100vw;
  max-height: 100vh;
  border-radius: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  overflow-y: auto;
  box-sizing: border-box;
}

.modal-close {
  position: absolute;
  top: 30px;
  right: 40px;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--text-dark);
  cursor: pointer;
  border-radius: 50%;
  background: #f1f5f9;
  z-index: 1000;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: 0.2s;
}

.modal-close:hover {
  background: var(--primary);
  color: var(--white);
}

.modal-grid {
  display: flex;
  flex-direction: row;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 30px;
  box-sizing: border-box;
  gap: 40px;
}

.modal-img-col {
  flex: 1.2;
  max-width: 55%;
  background: #fdfdfd;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  box-sizing: border-box;
}

.modal-info-col {
  flex: 1;
  max-width: 45%;
  padding: 20px;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .modal-grid {
    flex-direction: column !important;
    padding: 40px 15px;
    gap: 20px;
  }

  .modal-img-col,
  .modal-info-col {
    max-width: 100% !important;
    flex: none !important;
    padding: 10px !important;
  }

  .modal-main-img {
    max-height: 260px !important;
  }

  .modal-close {
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    font-size: 1.4rem;
  }
}



.modal-main-img {

  max-height: 400px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  margin-bottom: 30px;
}

.modal-thumbs {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.modal-thumbs img {
  height: 70px;
  width: 70px;
  object-fit: contain;
  background: var(--white);
  border: 2px solid #eee;
  border-radius: 6px;
  padding: 5px;
  cursor: pointer;
  transition: all 0.2s;
}

@media (max-width: 600px) {
  .modal-thumbs img {
    height: 50px;
    width: 50px;
  }
}

.modal-thumbs img:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
}

/* Premium Modal Options Styling */
.premium-options-container {
  background: #fdfdfd;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 20px;
  margin: 24px 0;
}

.option-section {
  margin-bottom: 24px;
}

.option-section:last-child {
  margin-bottom: 0;
}

.section-label {
  display: block;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 12px;
  color: #16a34a;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.label-hint {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--text-light);
  margin-left: 5px;
  text-transform: none;
}

.option-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

@media (max-width: 480px) {
  .option-grid {
    grid-template-columns: 1fr;
  }
}

.chip-option {
  background: var(--white);
  border: 1px solid #f1f1f1;
  border-radius: 8px;
  padding: 12px 8px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 70px;
}

.chip-option:hover {
  border-color: #25D366;
  background: rgba(37, 211, 102, 0.02);
}

.chip-option.selected {
  border-color: #25D366;
  background: #F0FFF4;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.1);
}

.chip-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.chip-price {
  font-size: 0.7rem;
  color: #16a34a;
  font-weight: 600;
}

.chip-option.selected .chip-title {
  color: #16a34a;
}

.premium-note {
  font-size: 0.75rem;
  color: var(--text-light);
  line-height: 1.5;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px dashed #eee;
}


/* Related Items Tray */
.related-item {
  flex: 0 0 160px;
  background: var(--white);
  border: 1px solid #F1F5F9;
  border-radius: 12px;
  padding: 12px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.related-item:hover {
  border-color: #CBD5E1;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.04);
  transform: translateY(-4px);
}

.related-item img {
  width: 100px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 8px;
}

.related-item-info {
  display: flex;
  flex-direction: column;
}

.related-item-title {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--black);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.related-item-price {
  font-size: 0.7rem;
  color: var(--primary);
  font-weight: 700;
  margin-top: 4px;
}

/* Dynamic Home Gallery */
.home-gallery-section {
  background: #FFFBF9;
  padding: 60px 0;
  position: relative;
}

.gallery-slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.gallery-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 20px 0;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
}

.gallery-track::-webkit-scrollbar {
  display: none;
}

.gallery-item {
  flex: 0 0 300px;
  height: 250px;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid #FFEADF;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: #fdfbf7;
  position: relative;
  scroll-snap-align: center;
}

@media (max-width: 600px) {
  .gallery-item {
    flex: 0 0 85vw;
    height: 320px;
  }

  .gallery-track {
    padding: 20px 7.5vw;
    gap: 15px;
  }
}

.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(232, 67, 26, 0.15);
  border-color: var(--primary);
}

.insta-grid-main {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
  margin-bottom: 30px;
  justify-items: center;
  justify-content: center;
}

.instagram-media {
  margin: 0 auto !important;
  min-width: 320px !important;
  max-width: 100% !important;
}

@media (max-width: 991px) {
  .insta-grid-main {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .insta-grid-main {
    grid-template-columns: 1fr;
  }
}

.gallery-item img,
.gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 5px;
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 0.7rem;
  padding: 5px;
  text-align: center;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gal-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #EEE;
  border-radius: 50%;
  cursor: pointer;
  z-index: 5;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

.gal-arrow:hover {
  background: var(--primary);
  color: #FFF;
  border-color: var(--primary);
}

.gal-arrow.prev {
  left: 5px;
}

.gal-arrow.next {
  right: 5px;
}

/* Lightbox Modal */
.lightbox-overlay {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background: rgba(0, 0, 0, 0.98) !important;
  z-index: 2147483647 !important;
  display: none;
  place-items: center !important;
  margin: 0 !important;
}

.lightbox-overlay.active {
  display: grid !important;
}

.lightbox-content {
  position: relative !important;
  width: 100% !important;
  height: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  pointer-events: none !important;
}

.lightbox-content>* {
  pointer-events: auto !important;
  max-width: 90% !important;
  max-height: 85vh !important;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.8) !important;
  border-radius: 8px;
}

.lightbox-img {
  object-fit: contain;
  transition: transform 0.2s ease;
}

.lightbox-ctrl {
  position: fixed;
  background: rgba(255, 255, 255, 0.1);
  color: #FFF;
  border: none;
  border-radius: 6px;
  padding: 10px 15px;
  cursor: pointer;
  font-size: 1rem;
  transition: 0.3s;
  z-index: 100001;
}

.lightbox-ctrl:hover {
  background: var(--primary);
}

.lightbox-close {
  top: 20px;
  right: 20px;
  font-size: 2rem;
}

.lightbox-zoom {
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  position: fixed;
  z-index: 100001;
}

.lightbox-arrow {
  position: fixed !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  background: transparent !important;
  border: none !important;
  color: rgba(255, 255, 255, 0.5) !important;
  font-size: 3rem !important;
  font-weight: 100 !important;
  cursor: pointer !important;
  transition: 0.3s !important;
  z-index: 2147483648 !important;
  padding: 20px !important;
}

.lightbox-arrow:hover {
  color: #FFF !important;
  transform: translateY(-50%) scale(1.1) !important;
}

.lightbox-arrow.prev {
  left: 20px !important;
}

.lightbox-arrow.next {
  right: 20px !important;
}

.modal-info-col {
  padding: 20px;
  box-sizing: border-box;
  overflow-x: hidden;
}

.spec-table-modal {
  width: 100%;
  border-collapse: collapse;
  margin-top: 15px;
  margin-bottom: 15px;
  table-layout: fixed;
}

.spec-table-modal tr:nth-child(even) {
  background: var(--off-white);
}

.spec-table-modal td {
  padding: 8px 12px;
  font-size: 0.8rem;
  border: none;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.spec-table-modal td:first-child {

  color: var(--text-grey);
  width: 40%;
  word-break: normal;
}

.spec-table-modal td:last-child {
  font-weight: 500;
  color: var(--text-dark);
  text-align: right;
  word-break: break-word;
  white-space: normal;
}

@media (max-width: 768px) {
  .modal-img-col {
    padding: 20px 10px;
  }

  .modal-info-col {
    padding: 20px 15px;
  }

  .modal-main-img {
    max-height: 250px;
  }
}




/* HERO SECTION */
.home-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #1C1208;
  /* var(--black) fallback */
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  background: url('../assets/real_stove.png') center center / contain no-repeat, radial-gradient(circle at 50% 50%, rgba(61, 44, 24, 0.4) 0%, rgba(28, 18, 8, 1) 70%);
  opacity: 0.35;
  /* visible background but foreground floating slideshow still pops */
  z-index: 0;
}

@keyframes kenBurns {
  0% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1.15);
  }
}

.hero-bg-image {
  animation: kenBurns 10s ease-out forwards;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
      rgba(255, 255, 255, 0.95) 0%,
      rgba(255, 255, 255, 0.85) 50%,
      rgba(255, 245, 240, 0.70) 100%);
  z-index: 1;
}

@media (max-width: 768px) {
  .hero-overlay {
    background: rgba(255, 255, 255, 0.92);
  }

  .home-hero {
    min-height: auto;
    align-items: flex-start;
    padding: 20px 0 60px;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.hero-text-col {
  max-width: 580px;
  width: 100%;
}

.hero-image-col {
  flex: 1;
  max-width: 600px;
  height: 550px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 40px;
  z-index: 2;
}

.hero-slideshow {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slideshow .slideshow-img {
  position: absolute;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 1s ease, transform 1s ease;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.6));
}

.hero-slideshow .slideshow-img.active {
  opacity: 1;
  transform: scale(1);
}

@media (max-width: 1023px) {
  .hero-content {
    flex-direction: column-reverse;
    text-align: center;
    align-items: center;
    padding: 20px 20px 40px;
  }

  .hero-text-col {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-image-col {
    margin-left: 0;
    margin-top: 0;
    margin-bottom: 20px;
    width: 100%;
    max-width: 300px;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  /* On mobile: switch from absolute-positioned slideshow to normal flow */
  .hero-slideshow {
    width: 100%;
    height: 100%;
    position: relative;
  }

  .hero-slideshow .slideshow-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5));
  }

  .hero-bg-image {
    background: url('../assets/real_stove.png') center center / contain no-repeat, radial-gradient(circle at 50% 50%, rgba(61, 44, 24, 0.4) 0%, rgba(28, 18, 8, 1) 70%);
    opacity: 0.25;
  }
}

@media (min-width: 1024px) {
  .hero-btns {
    justify-content: flex-start !important;
    max-width: none !important;
  }

  .hero-btns a {
    flex: 0 1 auto !important;
    padding: 14px 32px !important;
    font-size: 1rem !important;
  }

  .hero-content {
    min-height: 100vh;
    padding: 120px 0;
  }
}

.hero-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232, 67, 26, 0.15);
  border: 1px solid rgba(232, 67, 26, 0.4);
  padding: 6px 14px;
  border-radius: 4px;
  color: #E8431A;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 22px;
}

.pulse-dot {
  width: 7px;
  height: 7px;
  background: #E8431A;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(232, 67, 26, 0.6);
  animation: pulseDot 1.8s infinite;
}

@keyframes pulseDot {
  0% {
    box-shadow: 0 0 0 0 rgba(232, 67, 26, 0.6);
  }

  70% {
    box-shadow: 0 0 0 8px rgba(232, 67, 26, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(232, 67, 26, 0);
  }
}

/* STOVE SELECTOR */
.stove-selector-section {
  background: var(--off-white);
  padding: 70px 0;
}

.selector-header {
  text-align: center;
  margin-bottom: 40px;
}

.sel-step {
  display: none;
  animation: fadeSlideIn 0.35s ease;
}

.sel-step.active {
  display: block;
}

.sel-step h4 {
  text-align: center;
  font-size: 1.1rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.sel-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 780px;
  margin: 0 auto;
}

@media (max-width: 600px) {
  .sel-options {
    grid-template-columns: 1fr;
  }
}

.qs-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.qs-tab {
  padding: 10px 24px;
  border: 1px solid var(--dark-border);
  background: var(--dark-card);
  color: var(--text-grey);
  border-radius: 6px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.qs-tab:hover {
  border-color: var(--primary);
  color: var(--white);
}

.qs-tab.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  box-shadow: 0 6px 15px rgba(232, 67, 26, 0.2);
}

.sel-opt {
  background: white;
  border: 2px solid #E8E8E8;
  border-radius: 8px;
  padding: 20px 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.sel-opt:hover {
  border-color: #E8431A;
  box-shadow: 0 4px 16px rgba(232, 67, 26, 0.12);
  transform: translateY(-2px);
}

.sel-opt.selected {
  border-color: #E8431A;
  background: #FFF5F2;
}

.sel-icon {
  font-size: 2rem;
}

.sel-opt strong {
  font-size: 0.9rem;
  color: var(--text-dark);
  display: block;
}

.sel-opt span {
  font-size: 0.75rem;
  color: #888;
}

.sel-progress {
  max-width: 400px;
  margin: 30px auto 0;
  text-align: center;
}

.sel-prog-bar {
  height: 4px;
  background: #E8E8E8;
  border-radius: 4px;
  margin-bottom: 8px;
  overflow: hidden;
}

.sel-prog-fill {
  height: 100%;
  background: #E8431A;
  border-radius: 4px;
  transition: width 0.4s ease;
}

.sel-prog-text {
  font-size: 0.72rem;
  color: #888;
}

.sel-result {
  margin-top: 20px;
}

.result-card {
  max-width: 420px;
  margin: 0 auto;
  background: white;
  border: 2px solid #E8431A;
  border-radius: 8px;
  padding: 28px;
  text-align: center;
  animation: fadeSlideIn 0.4s ease;
}

.result-label {
  font-size: 0.65rem;
  letter-spacing: 2px;
  color: #E8431A;
  font-weight: 700;
  display: block;
  margin-bottom: 14px;
}

.result-card img {
  height: 160px;
  object-fit: contain;
  margin: 10px auto;
  display: block;
}

.result-card h3 {
  font-size: 1.1rem;
  margin: 12px 0 6px;
}

.result-card p {
  font-size: 0.8rem;
  color: #666;
  margin-bottom: 12px;
  line-height: 1.5;
}

.res-price-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: baseline;
  margin-bottom: 16px;
}

#res-price {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1A1A1A;
}

#res-mrp {
  font-size: 0.8rem;
  color: #999;
  text-decoration: line-through;
}

.res-actions {
  display: flex;
  gap: 10px;
}

.res-actions a {
  flex: 1;
  font-size: 0.8rem;
}

@keyframes fadeSlideIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* PC LAYOUT FIXES */
.hero-fluid-container {
  display: grid;
  grid-template-columns: 55% 45%;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  min-height: 100vh;
  gap: 40px;
}

.hero-img-col {
  display: none;
}

.prod-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 28px;
  transition: opacity 0.3s ease, transform 0.3s ease;
  opacity: 1;
  transform: translateY(0);
}

.prod-grid.fading {
  opacity: 0;
  transform: translateY(10px);
}

@media (max-width: 900px) {
  .prod-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .prod-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px !important;
  }

  .prod-card {
    border-radius: 4px !important;
  }

  .prod-img {
    height: 120px !important;
    padding: 5px !important;
  }

  .prod-info {
    padding: 8px !important;
  }

  .prod-title {
    font-size: 0.75rem !important;
    margin-bottom: 4px !important;
  }

  .prod-price {
    font-size: 0.95rem !important;
  }

  .prod-actions {
    gap: 5px !important;
  }

  .prod-actions .btn-outline,
  .prod-actions .btn-wa {
    font-size: 0.65rem !important;
    padding: 6px !important;
    min-height: 32px !important;
  }
}

.ind-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

@media (max-width: 768px) {
  .ind-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 768px) {
  .tech-grid {
    grid-template-columns: 1fr;
  }
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.how-steps::before {
  content: '';
  position: absolute;
  top: 18px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(to right, #E8431A, #D4872A);
  z-index: 0;
}

.h-step {
  position: relative;
  z-index: 1;
}

.h-circle {
  width: 36px;
  height: 36px;
  background: #E8431A;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .how-steps {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .how-steps::before {
    display: none;
  }

  .h-step {
    display: flex;
    gap: 16px;
    text-align: left;
    align-items: flex-start;
  }

  .h-circle {
    flex-shrink: 0;
  }
}

.about-strip {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 50px;
  align-items: center;
}

.about-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.about-imgs img {
  width: 100%;
  border-radius: 6px;
  object-fit: contain;
  background: white;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.about-imgs img:last-child {
  margin-top: 28px;
}

@media (max-width: 768px) {
  .about-strip {
    grid-template-columns: 1fr;
  }

  .about-imgs img:last-child {
    margin-top: 0;
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: 35% 25% 40%;
  gap: 40px;
  padding: 50px 0 30px;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

.testi-scroll {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 768px) {
  .testi-scroll {
    display: flex !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    gap: 16px !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
    padding: 20px 0 40px !important;
    width: 100% !important;
    margin: 0 !important;
  }

  .testi-scroll::-webkit-scrollbar {
    display: none;
  }

  .testi-card {
    flex: 0 0 80vw !important;
    scroll-snap-align: center !important;
    padding: 35px 25px !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    background: #FFFFFF !important;
    border-radius: 12px !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
    margin: 0 auto !important;
  }

  .testi-text {
    white-space: normal !important;
    text-align: center !important;
    font-size: 0.92rem !important;
    line-height: 1.6 !important;
    margin-bottom: 15px !important;
    color: #4A351A !important;
    width: 100% !important;
  }

  .testi-author {
    font-size: 0.85rem !important;
    font-weight: 700 !important;
    color: #1C1208 !important;
    margin-top: auto !important;
  }

  .testi-role {
    font-size: 0.75rem !important;
    color: var(--primary) !important;
  }

  /* Table fit without side scrolling */
  table {
    min-width: 100% !important;
    width: 100% !important;
  }

  th,
  td {
    padding: 8px 6px !important;
    font-size: 0.70rem !important;
  }

  th {
    font-size: 0.75rem !important;
  }
}

/* SCROLL ANIMATIONS */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-children>* {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.reveal-children.visible>* {
  opacity: 1;
  transform: none;
}

.reveal-children.visible>*:nth-child(1) {
  transition-delay: 0.05s;
}

.reveal-children.visible>*:nth-child(2) {
  transition-delay: 0.12s;
}

.reveal-children.visible>*:nth-child(3) {
  transition-delay: 0.19s;
}

.reveal-children.visible>*:nth-child(4) {
  transition-delay: 0.26s;
}

.reveal-children.visible>*:nth-child(5) {
  transition-delay: 0.33s;
}

.reveal-children.visible>*:nth-child(6) {
  transition-delay: 0.40s;
}

.reveal-children.visible>*:nth-child(7) {
  transition-delay: 0.47s;
}

.reveal-children.visible>*:nth-child(8) {
  transition-delay: 0.54s;
}

.reveal-children.visible>*:nth-child(9) {
  transition-delay: 0.61s;
}

.reveal-children.visible>*:nth-child(10) {
  transition-delay: 0.68s;
}

.reveal-children.visible>*:nth-child(11) {
  transition-delay: 0.75s;
}

.reveal-children.visible>*:nth-child(12) {
  transition-delay: 0.82s;
}

.count-up {
  transition: all 0.1s;
}

/* ADDITIONAL DESIGN UPGRADES */
.section-label {
  font-size: 0.68rem;
  letter-spacing: 3px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}

@media (min-width: 769px) {
  .orange-bg {
    clip-path: polygon(0 20px, 100% 0, 100% 100%, 0% 100%);
  }
}

.prod-card {
  background: #FFFCF8;
}

.prod-card:hover {
  border-color: #E8431A;
  box-shadow: 0 6px 20px rgba(232, 67, 26, 0.14);
}

.f-card {
  background: #241A0D;
  border-left: 3px solid #E8431A;
  padding: 20px 18px;
}

@media (max-width: 768px) {
  .wa-float {
    bottom: 68px;
  }
}

/* QUICK SELECT SECTION */
.quick-select-section {
  background: white;
  padding: 70px 0;
}

.qs-tabs {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.qs-tab {
  background: white;
  border: 2px solid #E8E8E8;
  border-radius: 6px;
  padding: 10px 22px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'DM Sans', sans-serif;
}

.qs-tab:hover,
.qs-tab.active {
  background: #E8431A;
  border-color: #E8431A;
  color: white;
}

.qs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  transition: opacity 0.25s ease;
}

.qs-grid.fading {
  opacity: 0;
}

@media (max-width: 768px) {
  .qs-grid {
    grid-template-columns: 1fr;
  }
}

/* --- NEW PRODUCT CAROUSEL --- */
.carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  margin: 20px 0;
}

.prod-carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  /* Allow scrolling */
  scroll-snap-type: x mandatory;
  /* Enable snap */
  scroll-behavior: smooth;
  width: 100%;
  padding: 15px 5px;
  scrollbar-width: none;
  /* Hide scrollbar */
}

.prod-carousel::-webkit-scrollbar {
  display: none;
  /* Hide scrollbar */
}

.prod-carousel .prod-card {
  flex: 0 0 360px;
  scroll-snap-align: center;
  /* Snap to center */
  background: var(--white);
  border: 1px solid var(--light-border);
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.prod-carousel .prod-img {
  width: 100%;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fdfbf7;
  border-bottom: 1px solid #f0ebe1;
}

.prod-carousel .prod-img img {
  max-width: 95%;
  max-height: 90%;
  object-fit: contain;
}

.prod-carousel .prod-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(232, 67, 26, 0.15);
}

.carousel-arrow {
  background: var(--white);
  border: 1px solid rgba(232, 67, 26, 0.3);
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  color: var(--primary);
  font-size: 1.5rem;
  transition: all 0.3s;
}

.carousel-arrow:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.carousel-arrow.prev {
  left: -20px;
}

.carousel-arrow.next {
  right: -20px;
}

@media (max-width: 768px) {
  .prod-carousel {
    overflow-x: auto;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
  }

  .prod-carousel::-webkit-scrollbar {
    display: none;
  }

  .carousel-arrow {
    display: none;
  }

  .prod-carousel .prod-card {
    flex: 0 0 85%;
    scroll-snap-align: center;
  }
}

/* --- OUR CLIENTS --- */
.clients-marquee {
  overflow: hidden;
  width: 100%;
  padding: 20px 0;
  position: relative;
}

.clients-track {
  display: flex;
  gap: 40px;
  width: calc(200px * 12);
  animation: scrollClients 20s linear infinite;
}

.clients-track:hover {
  animation-play-state: paused;
}

.client-logo {
  flex: 0 0 160px;
  background: var(--white);
  padding: 15px;
  border-radius: 8px;
  border: 1px solid rgba(232, 67, 26, 0.1);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.client-logo:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(232, 67, 26, 0.1);
}

.client-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

@keyframes scrollClients {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-200px * 6));
  }
}



/* --- MANUFACTURING EXCELLENCE & ANIMATIONS --- */
.mfg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.mfg-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.mfg-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(232, 67, 26, 0.1) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s;
}

.mfg-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
  box-shadow: 0 15px 30px rgba(232, 67, 26, 0.2);
}

.mfg-card:hover::before {
  opacity: 1;
}

.mfg-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: inline-block;
  animation: float 3s ease-in-out infinite;
}

.mfg-card:nth-child(2) .mfg-icon {
  animation-delay: 0.5s;
}

.mfg-card:nth-child(3) .mfg-icon {
  animation-delay: 1s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* Fire Animation */
.fire-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.3;
}

.fire-particle {
  position: absolute;
  bottom: -20px;
  background: radial-gradient(circle, #E8431A 20%, rgba(232, 67, 26, 0) 70%);
  border-radius: 50%;
  animation: burn 4s infinite ease-in;
}

.fire-particle:nth-child(1) {
  left: 20%;
  width: 80px;
  height: 80px;
  animation-duration: 5s;
  animation-delay: 0s;
}

.fire-particle:nth-child(2) {
  left: 50%;
  width: 100px;
  height: 100px;
  animation-duration: 4s;
  animation-delay: 1.5s;
}

.fire-particle:nth-child(3) {
  left: 80%;
  width: 60px;
  height: 60px;
  animation-duration: 6s;
  animation-delay: 0.7s;
}

@keyframes burn {
  0% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }

  100% {
    transform: translateY(-200px) scale(0.5);
    opacity: 0;
  }
}

/* GLOBAL WHITE & ORANGE LOGO THEME OVERRIDES */
.top-bar {
  background: #E8431A !important;
  color: #FFFFFF !important;
}

.top-bar a {
  color: #FFFFFF !important;
}

.top-bar svg {
  fill: #FFFFFF !important;
}

.dark-bg {
  background: #FFFFFF !important;
  color: #1C1208 !important;
}

.dark-bg h1,
.dark-bg h2,
.dark-bg h3,
.dark-bg h4,
.dark-bg p,
.dark-bg li {
  color: #1C1208 !important;
}

.dark-bg span {
  color: #E8431A !important;
}

.testi-card {
  background: #FFFFFF !important;
  border: 1px solid rgba(232, 67, 26, 0.15) !important;
  box-shadow: 0 10px 30px rgba(232, 67, 26, 0.05) !important;
}

.testi-text {
  color: #4A351A !important;
}

.testi-author {
  color: #1C1208 !important;
  font-weight: 700 !important;
}

.testi-role {
  color: #8C7560 !important;
}

.ind-card {
  background: #FFFFFF !important;
  border: 1px solid rgba(232, 67, 26, 0.15) !important;
  box-shadow: 0 10px 30px rgba(232, 67, 26, 0.05) !important;
}

.ind-card h3 {
  color: #1C1208 !important;
}

.ind-card p {
  color: #4A351A !important;
}

.feature-card {
  background: #FFFFFF !important;
  border: 1px solid rgba(232, 67, 26, 0.15) !important;
  box-shadow: 0 10px 30px rgba(232, 67, 26, 0.05) !important;
}

.feature-card h3 {
  color: #1C1208 !important;
}

.feature-card p {
  color: #4A351A !important;
}

.footer {
  background: #FFFFFF !important;
  color: #1C1208 !important;
  border-top: 3px solid #E8431A !important;
}

.footer p,
.footer ul a {
  color: #4A351A !important;
}

.footer h4 {
  color: #E8431A !important;
}

.footer-bottom {
  border-top: 1px solid rgba(232, 67, 26, 0.15) !important;
}

.footer-bottom p {
  color: #8C7560 !important;
}

/* Product Options UI */
.prod-options-container {
  margin: 20px 0;
  padding: 15px;
  background: #FFF8F6;
  border: 1px solid #FFEADF;
  border-radius: 8px;
}

.prod-options-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  text-transform: none;
}

.option-group {
  margin-bottom: 12px;
}

.option-group:last-child {
  margin-bottom: 0;
}

.option-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-grey);
  margin-bottom: 6px;
}

.option-choices {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.option-choice {
  flex: 1;
  min-width: 100px;
}

.option-choice input {
  display: none;
}

.option-choice label {
  display: block;
  padding: 8px 10px;
  background: #FFF;
  border: 1px solid #FFEADF;
  border-radius: 6px;
  font-size: 0.7rem;
  text-align: center;
  cursor: pointer;
  transition: 0.2s;
  color: var(--text-dark);
  font-weight: 600;
}

.option-choice input:checked+label {
  background: var(--primary);
  color: #FFF;
  border-color: var(--primary);
}

.option-choice label .price-tag {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  margin-top: 2px;
  opacity: 0.9;
}

/* Modal Full Description Section */
.modal-full-desc {
  padding: 30px;
  background: #fff;
  border-top: 1px solid #eee;
}

.desc-section {
  margin-bottom: 30px;
}

.main-desc {
  font-size: 0.95rem;
  color: #4B5563;
  line-height: 1.6;
  margin-bottom: 15px;
}

.desc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}

.desc-h {
  font-size: 1.1rem;
  color: var(--black);
  margin-bottom: 15px;
  font-weight: 700;
  position: relative;
  padding-left: 15px;
}

.desc-h::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 18px;
  background: var(--primary);
  border-radius: 2px;
}

.desc-list {
  list-style: none;
  padding: 0;
}

.desc-list li {
  font-size: 0.9rem;
  color: #4B5563;
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

.desc-list li::before {
  content: '?';
  position: absolute;
  left: 0;
  color: #16a34a;
  font-weight: bold;
}

.desc-list.dual-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 30px;
}

@media (max-width: 768px) {

  .desc-grid,
  .desc-list.dual-col {
    grid-template-columns: 1fr;
  }

  .modal-full-desc {
    padding: 20px;
  }
}

/* Dual Description Visibility */
.pc-desc {
  display: block;
  padding: 20px 0;
  border-top: 1px solid #eee;
  margin-top: 20px;
}

.mob-desc {
  display: none;
}

.pc-desc .desc-grid {
  grid-template-columns: 1fr;
  gap: 15px;
}

.pc-desc .desc-list.dual-col {
  grid-template-columns: 1fr;
}

.pc-desc .desc-h {
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.pc-desc .main-desc {
  font-size: 0.85rem;
}

@media (max-width: 991px) {
  .pc-desc {
    display: none !important;
  }

  .mob-desc {
    display: block !important;
    border-top: 1px solid #eee;
    padding: 20px;
    background: #fff;
  }
}

/* Reveal Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-children>* {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-out;
}

.reveal-children.visible>* {
  opacity: 1;
  transform: translateY(0);
}

/* Premium Options UI */
.premium-options-container {
  margin: 20px 0;
  padding: 20px;
  background: #fdfdfd;
  border-radius: 12px;
  border: 1px solid #f1f1f1;
}

.option-section {
  margin-bottom: 25px;
}

.section-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Complete Premium Options UI */
.premium-options-container {
  margin: 15px 0;
  padding: 15px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #eee;
}

.option-section {
  margin-bottom: 20px;
}

.section-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.option-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

@media (max-width: 500px) {
  .option-grid {
    grid-template-columns: 1fr;
  }
}

.chip-option {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 10px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
  min-height: 55px;
  justify-content: center;
}

.chip-option:hover {
  border-color: #16a34a;
}

.chip-option.selected {
  border-color: #16a34a;
  background: #f0fdf4;
  box-shadow: 0 0 0 1px #16a34a;
}

.chip-option.selected .chip-title {
  color: #16a34a;
}

.chip-option.selected .chip-price {
  color: #15803d;
}

.chip-title {
  font-size: 0.75rem;
  font-weight: 700;
  color: #1e293b;
}

.chip-price {
  font-size: 0.7rem;
  color: #64748b;
}

.premium-note {
  font-size: 0.7rem;
  color: #94a3b8;
  margin-top: 10px;
  font-style: italic;
}