/* 
   ==========================================================================
   LAXLIN - Redesigned Hero CSS
   ========================================================================== 
*/

:root {
  --font-heading: 'Bebas Neue', sans-serif;
  --font-body: 'Manrope', sans-serif;

  --color-green: #2C3E26;
  --color-green-hover: #1e2b1a;
  --color-copper: #C46921;
  --color-text: #1a1a1a;
  --color-white: #ffffff;

  --ease: cubic-bezier(0.25, 1, 0.5, 1);
}

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

::selection {
  background: var(--color-copper);
  color: #fff;
}
::-moz-selection {
  background: var(--color-copper);
  color: #fff;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-white);
  overflow-x: hidden;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

@media (max-width: 768px) {
  .product-gallery {
    position: relative !important;
    top: auto !important;
  }
  .mobile-sticky-cta {
    transition: transform 0.3s ease, opacity 0.3s ease !important;
  }
  .mobile-sticky-cta.hidden {
    transform: translateY(150%) !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }

  .container {
    padding: 0 20px;
  }
}

/* =========================================
   TOP TICKER MARQUEE
   ========================================= */
.top-ticker {
  width: 100%;
  background: #fbfaf8;
  color: var(--color-text);
  padding: 10px 0;
  overflow: hidden;
  position: relative;
  display: flex;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.ticker-content {
  display: flex;
  white-space: nowrap;
  animation: ticker-scroll 30s linear infinite;
}

.ticker-content > span {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  padding: 0 40px;
  color: var(--color-text);
}

.ticker-dot {
  color: #c46921; /* Explicitly use the copper color requested */
  font-size: 12px;
  margin-right: 12px;
  padding: 0;
}

@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 24px 40px;
  background-color: transparent;
  border-bottom: 1px solid transparent;
  transition: padding 0.3s var(--ease), background-color 0.3s var(--ease), border-color 0.3s var(--ease);
}

.site-header.scrolled {
  background-color: #ffffff;
  padding: 16px 40px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 4px 14px rgba(0,0,0,0.05);
}

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

.logo img {
  height: 48px;
  width: auto;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 40px;
}

.main-nav a {
  text-decoration: none;
  color: var(--color-text);
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s var(--ease);
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-green);
  transition: width 0.3s var(--ease);
}

.main-nav a:hover {
  color: var(--color-green);
}

.main-nav a:hover::after {
  width: 100%;
}

.chev {
  width: 14px;
  height: 14px;
  margin-top: 1px;
}

.btn-search {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-text);
  transition: transform 0.3s var(--ease);
}

.btn-search:hover {
  transform: scale(1.1);
}

.btn-search svg {
  width: 22px;
  height: 22px;
}

.btn-menu {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-text);
  display: none;
  position: relative;
  z-index: 1001;
}

.btn-menu svg {
  width: 24px;
  height: 24px;
}

/* ==========================================================================
   Search Overlay
   ========================================================================== */
.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(251,250,248,0.98);
  backdrop-filter: blur(10px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s;
}

.search-overlay.open {
  opacity: 1;
  visibility: visible;
}

.search-close-btn {
  position: absolute;
  top: 30px;
  right: 40px;
  background: none;
  border: none;
  color: var(--color-text);
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.3s ease;
}

.search-close-btn:hover {
  background: rgba(0,0,0,0.05);
}

.search-close-btn svg {
  width: 24px;
  height: 24px;
}

.search-container {
  width: 100%;
  max-width: 800px;
  padding: 0 40px;
  position: relative;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s;
  transition-delay: 0.1s;
}

.search-overlay.open .search-container {
  transform: translateY(0);
  opacity: 1;
}

.search-input {
  width: 100%;
  background: transparent;
  border: none;
  font-family: var(--font-heading);
  font-size: 80px;
  color: var(--color-text);
  outline: none;
  letter-spacing: 0.02em;
}

.search-input::placeholder {
  color: rgba(0,0,0,0.15);
}

.search-line {
  display: block;
  width: 0;
  height: 3px;
  background: var(--color-copper);
  margin-top: 10px;
  transition: width 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 0.3s;
}

.search-overlay.open .search-line {
  width: 100%;
}

.search-suggestions {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
  opacity: 0;
  transform: translateY(10px);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s;
  transition-delay: 0.2s;
}

.search-overlay.open .search-suggestions {
  transform: translateY(0);
  opacity: 1;
}

.suggestions-label {
  font-size: 14px;
  color: rgba(0,0,0,0.5);
  font-weight: 500;
}

.suggestion-tag {
  font-size: 14px;
  color: var(--color-text);
  text-decoration: none;
  padding: 8px 16px;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 40px;
  transition: all 0.2s ease;
  font-weight: 500;
}

.suggestion-tag:hover {
  background: var(--color-copper);
  color: #fff;
  border-color: var(--color-copper);
}

@media (max-width: 768px) {
  .search-input {
    font-size: 40px;
  }
  .search-close-btn {
    top: 20px;
    right: 20px;
  }
  .search-suggestions {
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
  }
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-new {
  position: relative;
  width: 100%;
  height: 100dvh;
  min-height: 600px;
  overflow: hidden;
  background: #fbfaf8;
  /* Fallback */
}

/* Base layer styles */
.hero-new .layer {
  position: absolute;
  will-change: transform, opacity;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

.hero-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

.hero-ground {
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: bottom;
  z-index: 2;
}

.hero-bowl {
  bottom: -8%;
  left: 50%;
  width: 100%;
  max-width: 880px;
  max-height: 55vh;
  object-fit: contain;
  object-position: bottom;
  z-index: 4;
}

  



.hero-floating {
  top: -2.5%;
  left: -2.5%;
  width: 105%;
  height: 105%;
  object-fit: cover;
  object-position: center;
  z-index: 5;
  pointer-events: none;
  /* Let clicks pass through to CTA */
}
.hero-floating-mobile {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 100vw;
  max-width: 100%;
  bottom: 0%;
  object-fit: contain;
  object-position: bottom;
  z-index: 3;
  
  pointer-events: none;
  display: none;
}

@media (max-width: 768px) {
  .hero-floating-mobile {
    display: block;
    bottom: 0%;
  }
}




/* Content */
.hero-content {
  position: absolute;
  top: 42%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  text-align: center;
  width: 100%;
  max-width: 800px;
  padding: 0 24px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 50px;
  margin-bottom: 12px;
}

.hero-eyebrow .line {
  width: 32px;
  height: 1.5px;
  background-color: var(--color-copper);
}

.hero-eyebrow .text {
  color: var(--color-copper);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.1em;
}

.hero-heading {
  font-family: var(--font-heading);
  font-size: clamp(50px, 7.5vw, 110px);
  line-height: 1.0;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
  /* Removed SVG filter to prevent static dots rendering issue */
  z-index: 4;
}

.mobile-only-br { display: none; }
.desktop-only-br { display: block; }

.mobile-only { display: none !important; }
.desktop-only { display: block; }

.hero-heading .line-1 {
  color: var(--color-green);
}

.hero-heading .line-2 {
  color: var(--color-copper);
}

.hero-desc {
  font-size: 18px;
  line-height: 1.6;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 32px;
}

/* Button */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #F5B211;
  color: #111827;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 4px 15px rgba(245, 178, 17, 0.2);
}

.btn-primary svg {
  width: 18px;
  height: 18px;
  transition: transform 0.4s var(--ease);
}

.btn-primary:hover {
  background: #e0a00b;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 178, 17, 0.3);
}

.btn-primary:hover svg {
  transform: translateX(4px);
}




/* ==========================================================================
   TOP TICKER SECTION
   ========================================================================== */
.top-ticker {
  background-color: #fafaf8; /* Beige */
  color: var(--color-green);
  padding: 10px 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  /* Removed orange border */
}

.ticker-content {
  display: flex;
  width: max-content;
  padding-left: 0;
  animation: ticker 25s linear infinite;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.1em;
}

.ticker-content > span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-right: 48px;
}

.ticker-dot {
  color: var(--color-copper);
  font-size: 10px;
}

@keyframes ticker {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

/* ==========================================================================
   PRODUCTS SECTION (Tabs)
   ========================================================================== */
.products-section {
  padding: 60px 24px;
  background-color: var(--color-bg);
  position: relative;
  z-index: 10;
}

.products-section .section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.products-section .section-header-left {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 32px;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  padding-bottom: 16px;
}

.products-section .section-header-left .header-content {
  max-width: 50%;
}

.products-section .section-header-left .section-subtitle {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--color-copper);
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}

.products-section .section-header-left .section-title {
  font-family: var(--font-heading);
  font-size: clamp(40px, 5vw, 56px);
  color: #1a1a1a;
  line-height: 1;
  margin: 0;
  text-transform: uppercase;
}

.products-section .section-header-left .header-desc {
  max-width: 40%;
  text-align: right;
}

.products-section .section-header-left .header-desc p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .products-section {
    padding: 32px 16px;
  }
  .products-section .section-header-left {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    padding-bottom: 8px;
  }
  .products-section .section-header-left .header-content,
  .products-section .section-header-left .header-desc {
    max-width: 100%;
    text-align: left;
  }
}

.products-section .section-title {
  font-family: var(--font-heading);
  font-size: clamp(40px, 5vw, 64px);
  color: var(--color-green);
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.products-section .section-subtitle {
  font-size: 18px;
  color: var(--color-text);
  margin-bottom: 24px;
}

/* Category Tabs */
.category-tabs {
  display: inline-flex;
  justify-content: center;
  gap: 8px;
  padding-bottom: 8px;
  margin-bottom: 20px;
}

.tab-btn {
  background: transparent;
  border: none;
  padding: 8px 16px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  color: #666;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.tab-btn::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-copper);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.tab-btn.active {
  color: var(--color-green);
  background-color: transparent;
  box-shadow: none;
}

.tab-btn.active::after {
  transform: scaleX(1);
}

/* Product Grid */
.product-grid {
  display: none;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.product-grid.active {
  display: grid;
}

/* Product Card */
.product-card {
  background: var(--color-white);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.12);
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(40px); /* For GSAP */
  transition: all 0.4s var(--ease);
}

@media (hover: hover) and (pointer: fine) {
  .product-card:hover {
    box-shadow: 0 16px 40px rgba(0,0,0,0.08);
    
  }
}

.card-img-wrapper {
  width: 100%;
  aspect-ratio: 1.15;
  position: relative;
  background-color: #fafaf8;
  overflow: hidden;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

.product-img {
  position: absolute;
  top: 30px;
  left: 0;
  width: 100%;
  height: calc(100% - 60px);
  object-fit: contain;
  transition: transform 0.8s var(--ease);
}

/* Removed image zoom on hover per request */

.card-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  text-align: left;
  background: #ffffff;
}

.card-content h4 {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 8px;
  text-transform: none;
  text-align: left;
  line-height: 1.3;
}

.grade-badge {
  display: inline-flex;
  align-items: center;
  background-color: #f3f3f3;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 12px;
  border: none;
  color: #333;
  width: fit-content;
}

.product-desc {
  font-size: 13px;
  color: #555;
  line-height: 1.5;
  margin-bottom: 16px;
  text-align: left;
  flex-grow: 1;
}

.card-divider {
  border: none;
  border-top: 1px solid rgba(0,0,0,0.06);
  margin: 0 0 24px;
}

.spec-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}

.spec-col {
  display: flex;
  flex-direction: column;
}

.spec-label {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  color: #555;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.spec-value {
  font-size: 14px;
  color: #222;
  font-weight: 700;
}

.btn-outline-small {
  width: 100%;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 10px 0;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid #d5d9d9;
  color: #0f1111;
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.03);
  display: inline-block;
  margin-top: auto;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-outline-small::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  padding-bottom: 120%; /* Makes it a square based on width */
  background-color: #c46921;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.4s ease-out;
  z-index: -1;
}

.btn-outline-small:hover {
  color: #fff;
  border-color: #c46921;
}

.btn-outline-small:hover::before {
  transform: translate(-50%, -50%) scale(1);
}

.view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 40px auto 0;
  padding: 12px 24px;
  border: 1px solid transparent;
  border-radius: 4px;
  color: var(--color-green);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.view-all-btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.view-all-btn:hover {
  border-color: var(--color-green);
  background: rgba(32, 59, 45, 0.03);
}

.view-all-btn:hover svg {
  transform: translateX(4px);
}

/* ==========================================================================
   WHAT SETS US APART (FEATURES SECTION)
   ========================================================================== */
.features-section {
  padding: 100px 24px;
  background-color: #fafaf8; /* Soft beige background */
}

.features-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--color-white);
  border-radius: 4px;
  padding: 40px 32px;
  border: 1px solid #eaeaea;
  border-left: 4px solid var(--color-copper);
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-3px);
  border-left: 4px solid var(--color-copper);
  border-color: var(--color-copper);
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.feature-number {
  font-family: var(--font-heading);
  font-size: 32px;
  color: var(--color-copper);
  display: block;
  margin-bottom: 20px;
}

.feature-title {
  font-size: 20px;
  color: var(--color-text);
  margin-bottom: 16px;
  line-height: 1.3;
}

.feature-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* ==========================================================================
   CERTIFICATIONS SECTION
   ========================================================================== */
.certifications-section {
  padding: 80px 24px;
  background-color: #fafaf8;
  border-top: 1px solid rgba(0,0,0,0.04);
}

.cert-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.cert-circle-wrapper {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 1px dashed var(--color-green);
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s ease, border-color 0.4s ease;
  cursor: pointer;
}

.cert-circle-wrapper:hover {
  transform: scale(1.05) translateY(-5px);
  border-color: var(--color-copper);
}

.cert-inner-circle {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid rgba(32,59,45,0.1);
  background-color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.cert-inner-circle img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* ==========================================================================
   CONTACT SECTION (Floating Card Theme)
   ========================================================================== */
.contact-section {
  position: relative;
  padding: 40px 24px 50px;
  background-color: var(--color-white);
  overflow: hidden;
}

.contact-card-wrapper {
  background-color: var(--color-green);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-split {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: 
    "text form"
    "info form";
  gap: 20px 40px;
  align-items: start;
}

.contact-text {
  grid-area: text;
  color: #fff;
  opacity: 1;
  transform: none;
}

.contact-subtitle {
  color: #f2b705;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}

.contact-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3vw, 32px);
  color: #fff;
  line-height: 1.1;
  margin-bottom: 16px;
}

.highlight-beige {
  color: #f2b705;
}

.contact-text p {
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  max-width: 500px;
  margin-bottom: 24px;
}

.contact-info-blocks {
  grid-area: info;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.info-block {
  display: flex;
  align-items: center;
  gap: 16px;
}

.info-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-copper);
}

.info-icon svg {
  width: 20px;
  height: 20px;
}

.info-content {
  display: flex;
  flex-direction: column;
}

.info-content span {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.info-content strong {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
}

.contact-form-wrapper {
  grid-area: form;
  opacity: 1;
  transform: none;
}

.clean-form {
  background: #fff;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(32, 59, 45, 0.08);
}

.clean-form h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  color: #1a1a1a;
  margin-bottom: 24px;
}

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

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

.input-group.full-width {
  grid-column: 1 / -1;
}

.input-group label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #666;
  margin-bottom: 6px;
}

.input-group input, 
.input-group select,
.input-group textarea {
  width: 100%;
  padding: 10px 12px;
  background: #fcfcfc;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  color: #333;
  font-size: 14px;
  font-family: var(--font-body);
  transition: all 0.3s ease;
  outline: none;
}

.input-group select {
  appearance: auto;
  cursor: pointer;
}

.input-group textarea {
  resize: vertical;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
  border-color: var(--color-green);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(32, 59, 45, 0.1);
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */
.site-footer {
  background-color: #F8F3EC;
  color: #333;
  padding: 80px 24px 0;
}

.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.footer-logo-wrapper {
  width: 90px;
  height: 90px;
  background-color: #fff;
  border-radius: 50%;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  margin-bottom: 24px;
  border: 1px solid rgba(0,0,0,0.05);
}

.footer-logo-wrapper img {
  max-width: 100%;
  height: auto;
  display: block;
}

.brand-col p {
  color: #555;
  line-height: 1.6;
  max-width: 300px;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 20px;
  margin-bottom: 24px;
  letter-spacing: 0.05em;
  color: #1a1a1a;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 16px;
}

.footer-col ul li a {
  color: #555;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: var(--color-copper);
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #555;
}

.contact-list li svg {
  width: 18px;
  height: 18px;
  color: var(--color-copper);
}

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px 0;
  text-align: center;
  color: #777;
  font-size: 14px;
}

/* ==========================================================================
   Responsive Logic
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-bowl {
    max-width: 750px;
    bottom: -2%;
  }

  



  .main-nav ul {
    gap: 24px;
  }
}

@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .site-header {
    padding: 16px 20px;
    transform: none !important; /* Override GSAP inline transform — required for position:fixed on child .main-nav */
  }
  .site-header.scrolled {
    padding: 12px 20px;
  }

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

  .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .main-nav {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
    height: 100dvh;
    background: #fbfaf8; /* Match site light theme */
    padding: 0;
    box-shadow: 10px 0 50px rgba(0,0,0,0.15);
    transform: translateX(-100%);
    visibility: hidden;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.45s;
    z-index: 999;
    overflow-y: auto;
  }

  .main-nav.open {
    transform: translateX(0) !important;
    visibility: visible !important;
  }
}

/* Sidebar-only elements — hidden on desktop */
.nav-close-btn,
.nav-sidebar-logo,
.nav-sidebar-footer {
  display: none;
}

@media (max-width: 768px) {
  .nav-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--color-text);
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  }
  .nav-close-btn:hover {
    background: #f4f4f4;
    border-color: rgba(0,0,0,0.2);
  }
  .nav-close-btn svg {
    width: 16px;
    height: 16px;
  }

  .nav-sidebar-logo {
    display: block;
    padding: 32px 28px 24px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
  }
  .nav-sidebar-logo img {
    height: 40px;
    /* Removed white invert filter so logo is original color */
  }

  .nav-sidebar-footer {
    display: block;
  }
}

/* Mobile menu backdrop (injected via JS) */
.nav-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s;
  z-index: 998;
  pointer-events: none;
}

.nav-backdrop.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

@media (max-width: 768px) {
  .main-nav ul {
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    padding: 100px 0 20px; /* Added top padding since logo was removed */
  }

  .main-nav ul li {
    border-bottom: 1px solid rgba(0,0,0,0.06);
  }

  .main-nav ul li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 28px;
    font-size: 17px;
    font-weight: 600;
    color: var(--color-text) !important;
    letter-spacing: 0.01em;
    transition: color 0.3s ease;
  }

  .main-nav ul li a .nav-text {
    position: relative;
    display: inline-block;
  }

  .main-nav ul li a .nav-text::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background-color: var(--color-copper);
    transition: width 0.4s ease;
  }

  .main-nav ul li a:hover {
    color: var(--color-copper) !important;
  }

  .main-nav ul li a:hover .nav-text::after {
    width: 100%;
  }

  /* Override the default display:none for ::after on mobile */
  .main-nav ul li a::after {
    display: none !important;
  }

  .main-nav .chev {
    color: rgba(0,0,0,0.3);
  }

  /* Sidebar footer with contact info */
  .nav-sidebar-footer {
    margin-top: auto;
    padding: 24px 28px 32px;
    border-top: 1px solid rgba(0,0,0,0.06);
  }

  .nav-sidebar-footer p {
    font-size: 12px;
    color: rgba(0,0,0,0.5);
    line-height: 1.5;
    margin: 0;
  }

  .nav-contact-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
  }

  .nav-contact-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--color-text);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .nav-contact-link:hover {
    color: var(--color-copper);
    text-decoration: none;
  }

  .nav-contact-link::after {
    display: none !important;
  }

  .nav-contact-link svg {
    width: 18px;
    height: 18px;
    color: var(--color-copper);
  }

  .hero-heading {
    font-size: 50px;
    line-height: 1.05;
    margin-bottom: 24px;
  }

  .hero-eyebrow {
    margin-top: 0;
    margin-bottom: 20px;
  }

  .mobile-only { display: block !important; }
  .desktop-only { display: none !important; }

  .btn-menu {
    display: block;
    order: -1;
    padding: 8px;
    pointer-events: auto;
    -webkit-tap-highlight-color: rgba(0,0,0,0.1);
  }

  .hero-new {
    height: 100dvh;
    min-height: 600px;
  }

  .hero-content {
    top: 42%;
  }

  .hero-desc {
    font-size: 15px;

    br {
      display: none;
    }
  }

  .hero-bowl {
    max-height: none;
    width: 125%;
    max-width: none;
    left: 50%;
    bottom: 0%;
  }

  



  .hero-ground {
    height: auto;
    width: 100%;
    object-fit: contain;
    object-position: center bottom;
  }

  .hero-floating {
    display: none !important;
  }


}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  
  .hero-new {
    height: 100dvh;
    min-height: 550px;
  }

  .hero-content {
    top: 42%;
    padding: 0 16px;
  }

  .hero-heading {
    font-size: 50px;
    line-height: 1.05;
  }

  .mobile-only-br { display: block; }
  .desktop-only-br { display: none; }

  .hero-mobile-combined {
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: bottom;
    z-index: 2;
  }

  .hero-bowl {
    width: 135%;
    bottom: 0%;
  }

  



  .btn-primary {
    padding: 16px 28px;
    width: max-content;
    margin: 0 auto;
  }

  .products-section {
    padding: 40px 0;
  }

  .products-section .section-header {
    padding: 0 16px;
  }
  
  .products-section .section-header-left {
    padding: 0 16px;
    margin-bottom: 30px;
  }
  
  .products-section .section-title {
    font-size: clamp(32px, 8vw, 40px);
  }

  .product-grid {
    display: none;
    gap: 16px;
    padding: 10px 16px 40px;
    /* Allow space for shadows and scrolling */
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Hide scrollbar Firefox */
  }

  .product-grid::-webkit-scrollbar {
    display: none;
  }

  /* Hide scrollbar Chrome/Safari */

  .product-grid.active {
    display: flex;
  }

  .product-card {
    flex: 0 0 75%;
    scroll-snap-align: center;
  }
  
  .product-card .card-content {
    padding: 20px 16px;
  }
  
  .product-card .card-img-wrapper {
    aspect-ratio: 4/3;
  }

  .tab-btn {
    padding: 10px 20px;
    font-size: 14px;
  }

  /* Solutions Responsive */
  .solutions-section { padding: 80px 24px; }
  .solutions-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .solution-image {
    max-width: 400px;
    margin: 0 auto 24px;
    aspect-ratio: 4/5;
  }

  /* Contact Responsive */
  .contact-section {
    padding: 40px 0;
  }
  .contact-card-wrapper {
    padding: 32px 20px;
    border-radius: 12px;
  }
  .contact-split {
    grid-template-columns: 1fr;
    grid-template-areas: 
      "text"
      "form"
      "info";
    gap: 32px;
    text-align: center;
  }
  .contact-text p {
    margin: 0 auto 16px;
    font-size: 12px;
  }
  .contact-text h2 {
    font-size: 26px;
    margin-bottom: 8px;
  }
  .form-grid {
    grid-template-columns: 1fr; /* Stack inputs on mobile */
  }
  .clean-form {
    padding: 24px 16px;
  }
  .form-group input, 
  .form-group textarea, 
  .form-group select {
    padding: 12px 16px;
    font-size: 14px;
  }
  .info-block {
    justify-content: center;
  }

  /* Footer Responsive */
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 16px;
    text-align: left;
  }
  .footer-col.brand-col {
    grid-column: 1 / -1;
  }
  .footer-col h4 {
    font-size: 14px;
    margin-bottom: 16px;
  }
  .footer-col ul li a, .contact-list li {
    font-size: 12px;
  }
  
  .features-section {
    padding: 60px 0;
  }
  
  .features-section .section-title {
    font-size: 32px !important;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  .feature-card {
    padding: 20px 12px;
  }
  .feature-card:hover {
    transform: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  }
  
  .feature-number {
    font-size: 20px;
    margin-bottom: 8px;
  }
  
  .feature-title {
    font-size: 13px;
    margin-bottom: 6px;
  }
  
  .feature-desc {
    font-size: 11px;
    line-height: 1.4;
  }
  
  .cert-grid {
    gap: 16px;
  }
  .brand-col p {
    margin: 0;
    font-size: 13px;
  }
  .contact-list li {
    justify-content: flex-start;
  }
}

/* ==========================================================================
   Single Product Page Styles
   ========================================================================== */

/* Breadcrumbs */
.breadcrumbs-container {
  padding: 120px 40px 0; /* Accommodate fixed header */
  background: #fff;
}

.breadcrumbs {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(0,0,0,0.5);
  margin: 0;
  padding: 0;
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.breadcrumbs::-webkit-scrollbar { 
  display: none; 
}

.breadcrumbs li {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Auto-inject separator slash */
.breadcrumbs li:not(:last-child)::after {
  content: '>';
  color: rgba(0,0,0,0.3);
  font-size: 12px;
  font-weight: 400;
}

.breadcrumbs a {
  color: rgba(0,0,0,0.5);
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumbs a:hover {
  color: #1a3c1f;
}

/* Make the current page stand out as active */
.breadcrumbs li:last-child {
  color: #111827;
  font-weight: 700;
}

@media (max-width: 768px) {
  .breadcrumbs {
    font-size: 12px;
  }
  .breadcrumbs-container {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}

/* Product Hero Layout */
.single-product-hero {
  padding: 40px 40px 80px;
  background: #fff;
}

.single-product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

/* Gallery - Matching Exact Mobile Mockup Layout */
.product-gallery {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: sticky;
  top: 100px;
  width: 100%;
}

.main-image {
  width: 100%;
  aspect-ratio: 4/3;
  background: #f8f8f8;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.2s ease;
}

.zoom-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  background: #ffffff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  color: #111;
  transition: transform 0.2s ease;
}

.zoom-btn:hover {
  transform: scale(1.05);
}

.zoom-btn svg {
  width: 18px;
  height: 18px;
}

.thumbnail-list-vertical {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  width: 100%;
}

.thumb {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(0,0,0,0.1);
  transition: all 0.2s ease;
  opacity: 0.7;
  background: #fff;
}

.thumb.active, .thumb:hover {
  opacity: 1;
}

.thumb.active {
  border: 2px solid #1a3c1f;
  border-radius: 8px;
}

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

/* Header Nav CTA Button */
.nav-cta-btn {
  background: #1a3c1f;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
  margin-left: 12px;
}

.nav-cta-btn:hover {
  background: #112a15;
}

/* Minimalist Scroll Fade-In-Up Animation */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-on-scroll.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Details - New Pixel Perfect */
.product-details {
  display: flex;
  flex-direction: column;
  padding-top: 20px;
}

.product-header-block {
  margin-bottom: 40px;
}

.product-sku {
  font-size: 11px;
  font-weight: 700;
  color: var(--color-copper);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.sku-line {
  flex: 1;
  max-width: 60px;
  height: 1px;
  background: rgba(0,0,0,0.15);
  border: none;
  margin: 0;
}

.product-title {
  font-size: 56px;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--color-text);
  font-family: var(--font-heading);
}

.product-title span {
  color: rgba(0,0,0,0.3);
}

.product-short-desc {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(0,0,0,0.65);
  margin-bottom: 24px;
  max-width: 95%;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}

.trust-badges span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  color: rgba(0,0,0,0.6);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.trust-badges svg {
  width: 20px;
  height: 20px;
  color: var(--color-copper);
  background: rgba(196,105,33,0.1);
  padding: 4px;
  border-radius: 50%;
}

/* Bento Grid */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.bento-item {
  background: #ffffff;
  border-radius: 8px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 2px solid #D5C8B4;
}

.bento-item:hover {
  transform: none;
  border-color: #D5C8B4;
  box-shadow: none;
}

.bento-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #222222;
  background: rgba(0,0,0,0.05);
  border-radius: 4px;
}

.bento-icon svg {
  width: 16px;
  height: 16px;
}

.bento-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.bento-label {
  font-size: 11px;
  color: rgba(0,0,0,0.6);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.bento-value {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text);
}

/* Action Bar */
.action-bar, .sticky-action-bar {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.btn-large {
  padding: 16px 24px;
  font-size: 13px;
  flex: 1;
  text-align: center;
  justify-content: center;
}

.btn-primary-dark {
  background: #1a3c1f; /* Dark Green */
  color: #fff;
  border: none;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.3s ease;
  text-decoration: none;
}
.btn-primary-dark:hover {
  background: #112a15;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: #1a3c1f;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid #1a3c1f;
}
.btn-outline:hover {
  background: #1a3c1f;
  color: #ffffff;
}

.product-perks {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.product-perks span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  color: var(--color-text);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.product-perks svg {
  width: 16px;
  height: 16px;
  color: #1a3c1f;
}

.perk-divider {
  color: rgba(0,0,0,0.2) !important;
  font-size: 14px !important;
}

/* Tabs Section - New Vertical Layout */
.product-deep-dive {
  padding: 80px 40px;
  background: #fff;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.product-deep-dive .single-product-grid-tabs {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 64px;
  align-items: start;
}

.tabs-sidebar {
  position: sticky;
  top: 100px;
  background: #f4f5f4;
  padding: 16px 0;
  border-radius: 4px;
}

.tabs-header-vertical {
  display: flex;
  flex-direction: column;
}

.tab-btn {
  background: none;
  border: none;
  padding: 16px 24px;
  text-align: left;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(0,0,0,0.6);
  cursor: pointer;
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
}

.tab-btn:hover {
  background: rgba(0,0,0,0.03);
  color: var(--color-text);
}

.tab-btn.active {
  background: #fff;
  color: var(--color-text);
  border-left-color: #1a3c1f; /* dark green */
  box-shadow: 0 2px 8px rgba(0,0,0,0.02);
}

.tabs-content-area {
  padding-right: 40px;
}

.tab-title {
  font-family: var(--font-heading);
  font-size: 24px;
  margin-bottom: 24px;
  color: var(--color-text);
  text-transform: uppercase;
}

.tab-pane {
  display: none;
  animation: fadeIn 0.5s ease;
}

.tab-pane.active {
  display: block;
}

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

.tab-pane p {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(0,0,0,0.7);
  margin-bottom: 24px;
}

/* Feature Checklist */
.feature-checklist {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.feature-checklist li {
  font-size: 15px;
  color: var(--color-text);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 12px;
}

.feature-checklist svg {
  width: 16px;
  height: 16px;
  color: #1a3c1f;
  flex-shrink: 0;
}

/* Specs Table */
.specs-table {
  width: 100%;
  border-collapse: collapse;
}

.specs-table th, .specs-table td {
  padding: 12px;
  font-size: 13px;
  color: #111827;
  font-weight: 700;
  border-bottom: 1px solid #f3f4f6;
}

.specs-table th {
  padding: 12px;
  text-align: left;
  font-size: 13px;
  color: #6b7280;
  font-weight: 600;
  width: 45%;
  border-bottom: 1px solid #f3f4f6;
}

.specs-table td {
  color: rgba(0,0,0,0.7);
  font-size: 15px;
}

/* Mobile Sticky CTA */
.mobile-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 16px 20px;
  background: rgba(251,250,248,0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 -10px 30px rgba(0,0,0,0.05);
  transform: translateY(0);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 99;
}

.mobile-sticky-cta.visible {
  transform: translateY(0);
}

/* ==========================================================================
   B2B Inquiry Section (Product Page Base Desktop)
   ========================================================================== */
.b2b-inquiry-section {
  padding: 80px 40px;
  background: #fff;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.inquiry-box {
  background: #ffffff;
  border-radius: 4px;
  padding: 56px;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 56px;
  border: 1px solid #e5e7eb;
  margin-bottom: 32px;
  position: relative;
  overflow: hidden;
}

.inquiry-image-accent {
  position: absolute;
  left: 0;
  top: 0;
  width: 150px;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg width="150" height="400" viewBox="0 0 150 400" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M-10,200 C30,150 50,250 80,180 C110,110 90,80 120,50" stroke="%23c46921" stroke-width="1.5" stroke-opacity="0.2" fill="none"/><path d="M10,250 C40,210 60,300 90,220 C120,140 100,100 130,60" stroke="%23c46921" stroke-width="1" stroke-opacity="0.1" fill="none"/><path d="M0,150 C20,100 80,180 60,100" stroke="%231a3c1f" stroke-width="0.1" fill="none"/></svg>') no-repeat left center;
  background-size: cover;
  pointer-events: none;
  opacity: 0.6;
}

.inquiry-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 20px;
  position: relative;
  z-index: 2;
}

.inquiry-eyebrow {
  font-size: 11px;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.inquiry-title {
  font-family: var(--font-heading);
  font-size: 40px;
  line-height: 1.1;
  color: var(--color-text);
  margin-bottom: 24px;
}

.inquiry-line {
  width: 40px;
  height: 2px;
  background: #1a3c1f;
  border: none;
  margin: 0 0 24px 0;
}

.inquiry-desc {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(0,0,0,0.6);
}

.b2b-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 2;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group-full {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 11px;
  font-weight: 700;
  color: var(--color-text);
  text-transform: capitalize;
}

.form-group label span {
  color: #d9381e;
}

.form-group input, .form-group select {
  padding: 12px 14px;
  border: 1px solid #d1d5db;
  border-radius: 4px;
  background: #fff;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-text);
  transition: all 0.2s ease;
}

.form-group input:focus, .form-group select:focus {
  outline: none;
  border-color: #1a3c1f;
  box-shadow: 0 0 0 3px rgba(26,60,31,0.08);
}

.submit-btn {
  margin-top: 8px;
  align-self: flex-start;
  padding: 14px 32px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  border-radius: 4px;
  background: #1a3c1f;
  color: #fff;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0,0,0,0.12);
  transition: all 0.2s ease;
}

.submit-btn:hover {
  background: #112a15;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* Trust Strip below form - Crisp Amazon Style */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 4px;
  transition: border-color 0.2s ease;
}

.trust-item:hover {
  border-color: #d1d5db;
}

.trust-icon {
  width: 32px;
  height: 32px;
  background: rgba(26, 60, 31, 0.06);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a3c1f;
  flex-shrink: 0;
}

.trust-icon svg {
  width: 18px;
  height: 18px;
}

.trust-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.trust-text strong {
  font-size: 13px;
  font-weight: 700;
  color: #111827;
}

.trust-text span {
  font-size: 12px;
  color: #6b7280;
}

/* Related Products Base Desktop */
.related-products {
  padding: 80px 40px;
  background: var(--color-bg);
}

.related-title {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.related-title::before {
  content: '';
  width: 40px;
  height: 2px;
  background: var(--color-text);
}

.related-products .product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.view-details-link {
  font-size: 12px;
  font-weight: 700;
  color: var(--color-text);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
}

.view-details-link:hover {
  color: var(--color-copper);
}

/* ==========================================================================
   Accordion & Mobile Display Helpers
   ========================================================================== */
.mobile-only {
  display: none !important;
}

.desktop-only {
  display: block !important;
}

@media (max-width: 768px) {
  .mobile-only {
    display: flex !important;
  }
  .desktop-only {
    display: none !important;
  }
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: #f9fafb;
  border-radius: 8px;
  margin-bottom: 8px;
  cursor: pointer;
  font-weight: 700;
  font-size: 14px;
  color: #374151;
  transition: all 0.3s ease;
  border: 1px solid #f3f4f6;
}

.accordion-header.active {
  background: #1a3c1f;
  color: #ffffff;
  border-color: #1a3c1f;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  margin-bottom: 0;
}

.accordion-header.active .acc-chevron {
  color: #F5B211;
  transform: rotate(180deg);
}

.accordion-header .acc-chevron {
  width: 20px;
  height: 20px;
  color: #9ca3af;
  transition: transform 0.3s ease;
}

.accordion-header.active .acc-chevron {
  transform: rotate(180deg);
}

.tab-pane .accordion-body {
  display: none;
  padding: 20px;
  background: #ffffff;
  border: 1px solid #f3f4f6;
  border-top: none;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  margin-bottom: 12px;
}

@media (max-width: 768px) {
  .tab-pane {
    display: block !important;
    opacity: 1 !important;
    transform: none !important;
    margin-bottom: 8px;
  }

  .tab-pane .accordion-body {
    display: none;
    padding: 14px 12px 18px 12px;
    background: #ffffff;
    border-radius: 0 0 8px 8px;
  }

  .tab-pane.accordion-open .accordion-body,
  .accordion-header.active + .accordion-body {
    display: block;
  }
}

/* Cert Badges & Info Cards */
.cert-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cert-pill {
  padding: 8px 14px;
  background: rgba(26, 60, 31, 0.06);
  color: #1a3c1f;
  font-size: 12px;
  font-weight: 700;
  border-radius: 20px;
  border: 1px solid rgba(26, 60, 31, 0.12);
}

.info-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

@media (max-width: 768px) {
  .info-card-grid {
    grid-template-columns: 1fr;
  }
}

.info-card {
  padding: 16px;
  background: #fafafa;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,0.05);
}

.info-card strong {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-text);
  display: block;
  margin-bottom: 6px;
}

.info-card p {
  font-size: 12px;
  line-height: 1.5;
  color: rgba(0,0,0,0.7);
  margin-bottom: 0 !important;
}

/* ==========================================================================
   Product Page Responsive Overhaul (Mobile & Tablet UI/UX)
   ========================================================================== */

@media (max-width: 1024px) {
  .container {
    padding: 0 20px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .product-deep-dive {
    padding: 36px 0;
    background: #fafafa; /* Soft contrast background for deep dive */
    width: 100%;
    overflow: hidden;
  }

  .product-deep-dive .single-product-grid-tabs {
    grid-template-columns: 1fr;
    gap: 16px;
    width: 100%;
    box-sizing: border-box;
  }

  .tabs-sidebar {
    position: relative;
    top: 0;
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    width: 100%;
  }

  /* Wrap tabs cleanly in multiple rows within viewport width */
  .tabs-header-vertical {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap; /* Tabs sit in 2-3 rows cleanly within viewport */
    gap: 8px 10px;
    padding: 0;
    width: 100%;
    box-sizing: border-box;
  }

  .tab-btn {
    white-space: normal;
    padding: 8px 14px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.03em;
    border-radius: 20px; /* Modern pill chips */
    background: #eaeaea;
    color: #444;
    border: 1px solid transparent;
    transition: all 0.2s ease;
    box-shadow: none;
    text-align: center;
  }

  .tab-btn:hover {
    background: #dedede;
    color: #111;
  }

  .tab-btn.active {
    background: #1a3c1f;
    color: #ffffff;
    border-color: #1a3c1f;
    box-shadow: 0 4px 12px rgba(26, 60, 31, 0.2);
  }

  .tabs-content-area {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 20px 16px;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
    overflow: hidden;
  }

  .tab-title {
    display: none; /* Hide redundant subhead inside tab content on mobile */
  }

  .inquiry-box {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 36px 20px;
    box-sizing: border-box;
  }

  .inquiry-left {
    padding-left: 0;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .trust-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 16px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .breadcrumbs-container {
    padding-top: 85px;
    padding-left: 0;
    padding-right: 0;
  }

  .breadcrumbs {
    white-space: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: 4px;
    gap: 8px;
    font-size: 11px;
  }

  .breadcrumbs::-webkit-scrollbar {
    display: none;
  }

  .single-product-hero {
    padding: 16px 0 32px;
    background: #ffffff;
    width: 100%;
    box-sizing: border-box;
  }

  .single-product-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    width: 100%;
  }

  .product-gallery {
    grid-template-columns: 1fr;
    position: relative;
    top: 0;
    gap: 12px;
    width: 100%;
  }

  .main-image {
    aspect-ratio: 4/3;
    border-radius: 12px;
    order: 1;
    width: 100%;
  }

  .thumbnail-list-vertical {
    flex-direction: row;
    overflow-x: auto;
    padding-bottom: 4px;
    gap: 10px;
    order: 2;
    scrollbar-width: none;
    width: 100%;
  }

  .thumbnail-list-vertical::-webkit-scrollbar {
    display: none;
  }

  .thumb {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    border-radius: 8px;
  }

  .product-details {
    padding-top: 0;
    width: 100%;
  }

  .product-header-block {
    margin-bottom: 20px;
  }

  .product-sku {
    font-size: 10px;
    margin-bottom: 8px;
  }

  .product-title {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 24px;
    line-height: 1.25;
    letter-spacing: -0.01em;
    color: #111111;
    margin-bottom: 10px;
  }

  .product-short-desc {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 16px;
    max-width: 100%;
  }

  .trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
  }

  .trust-badges span {
    font-size: 10px;
    padding: 5px 8px;
    background: #f4f5f4;
    border-radius: 20px;
    gap: 6px;
  }

  .trust-badges svg {
    width: 13px;
    height: 13px;
    padding: 0;
    background: transparent;
  }

  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-bottom: 24px;
    width: 100%;
  }

  .bento-item {
    padding: 10px 12px;
    border-radius: 8px;
    gap: 6px;
    background: #ffffff;
    border: 2px solid #D5C8B4;
    box-sizing: border-box;
  }

  .bento-item:hover, .bento-item:active {
    border-color: #D5C8B4;
    transform: none;
  }

  .bento-icon {
    width: 26px;
    height: 26px;
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.05);
    color: #222222;
  }

  .bento-icon svg {
    width: 13px;
    height: 13px;
  }

  .bento-label {
    font-size: 9px;
  }

  .bento-value {
    font-size: 12px;
  }

  .sticky-action-bar, .action-bar {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
    width: 100%;
  }

  .btn-large {
    width: 100%;
    padding: 14px 16px;
    font-size: 13px;
    border-radius: 8px;
    justify-content: center;
    box-sizing: border-box;
  }

  .product-perks {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px 12px;
    padding-top: 14px;
    width: 100%;
  }

  .product-perks span {
    font-size: 10px;
    gap: 4px;
  }

  .feature-checklist {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 14px;
    width: 100%;
  }

  .feature-checklist li {
    font-size: 13px;
    padding: 10px 12px;
    background: #f9faf9;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    word-break: break-word;
    box-sizing: border-box;
  }

  .specs-table {
    width: 100%;
    table-layout: fixed; /* Keeps table strictly within container box */
  }

  .specs-table th, .specs-table td {
    padding: 10px 8px;
    font-size: 12px;
    word-break: break-word;
  }

  .specs-table th {
    width: 35%;
  }

  .b2b-inquiry-section {
    padding: 32px 0;
    width: 100%;
  }

  .inquiry-box {
    padding: 20px 16px;
    border-radius: 4px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    width: 100%;
    box-sizing: border-box;
  }

  .inquiry-image-accent {
    display: none;
  }

  .inquiry-eyebrow {
    font-size: 10px;
    margin-bottom: 6px;
  }

  .inquiry-title {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .inquiry-line {
    margin-bottom: 14px;
  }

  .inquiry-desc {
    font-size: 13px;
  }

  .form-group input, .form-group select {
    padding: 12px 14px;
    font-size: 13px;
    border-radius: 4px;
    border: 1px solid #d1d5db;
    width: 100%;
    box-sizing: border-box;
  }

  .submit-btn {
    width: 100%;
    justify-content: center;
    padding: 14px 16px;
    border-radius: 4px;
    background: #1a3c1f;
    font-weight: 700;
    box-sizing: border-box;
  }

  .trust-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    width: 100%;
  }

  .trust-item {
    padding: 12px 10px;
    background: #ffffff;
    border-radius: 4px;
    border: 1px solid #e5e7eb;
    gap: 8px;
    box-sizing: border-box;
  }

  .trust-icon {
    width: 26px;
    height: 26px;
  }

  .trust-icon svg {
    width: 14px;
    height: 14px;
  }

  .trust-text strong {
    font-size: 11px;
  }

  .trust-text span {
    font-size: 9px;
  }

  .related-products {
    padding: 32px 0;
    width: 100%;
  }

  .related-title {
    font-size: 12px;
    margin-bottom: 16px;
  }

  .product-grid.active {
    display: flex !important;
    flex-direction: column;
    gap: 24px;
    width: 100%;
  }

  /* .product-grid.active::-webkit-scrollbar removed */

  .product-card.static-card {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    box-sizing: border-box;
  }
}

/* ==========================================================================
   B2B Complete Product Page Sections (World-Class Redesign)
   ========================================================================== */
.b2b-section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(0,0,0,0.03);
}
@media (max-width: 768px) {
  .b2b-section { padding: 48px 16px; }
}

.b2b-section-header {
  margin-bottom: 32px;
  text-align: left;
}

.b2b-section-title {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  color: #1a3c1f;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  position: relative;
  display: inline-block;
}
@media (max-width: 768px) {
  .b2b-section-title { font-size: 28px; }
}
.b2b-section-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 48px;
  height: 3px;
  background: #F5B211;
  border-radius: 2px;
}

/* Guarantee Strip */
.guarantee-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding: 20px 24px;
  background: #ffffff;
  border-radius: 12px;
  margin-top: 24px;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 8px 30px rgba(0,0,0,0.03);
  justify-content: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  .guarantee-strip {
    padding: 16px 20px;
    gap: 14px;
    flex-direction: column;
    align-items: flex-start;
  }
}
.guarantee-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  color: #374151;
  flex: 0 0 auto;
}
@media (max-width: 768px) {
  .guarantee-item { font-size: 14px; flex: none; width: 100%; display: flex; align-items: center; gap: 12px; }
}
.guarantee-item svg {
  width: 18px;
  height: 18px;
  color: #1a3c1f;
}

/* 8 Spec Cards Grid */
.info-matrix-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 768px) {
  .info-matrix-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}
.info-matrix-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: #ffffff;
  border-radius: 12px;
  border: 2px solid #e5e7eb;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.info-matrix-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}
.matrix-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(26,60,31,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a3c1f;
  flex-shrink: 0;
}
.matrix-icon svg { width: 18px; height: 18px; }
.matrix-text { display: flex; flex-direction: column; }
.matrix-label { font-size: 10px; font-weight: 700; color: #6b7280; text-transform: uppercase; letter-spacing: 0.05em; }
.matrix-value { font-size: 14px; font-weight: 800; color: #111827; margin-top: 2px; }
@media (max-width: 768px) {
  .matrix-value { font-size: 13px; }
  .matrix-icon { width: 32px; height: 32px; }
}

/* Product Gallery Grid (5 Images) */
.gallery-five-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
@media (max-width: 768px) {
  .gallery-five-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 12px;
    gap: 12px;
  }
}
.gallery-card {
  flex: 0 0 220px;
  scroll-snap-align: start;
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}
.gallery-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.gallery-card span {
  display: block;
  padding: 12px 14px;
  font-size: 12px;
  font-weight: 700;
  color: #374151;
  text-align: center;
}

/* Why Choose Us (8 Value Props Grid) */
.value-props-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 768px) {
  .value-props-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}
.prop-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
  transition: all 0.4s ease;
  cursor: default;
  overflow: hidden;
  z-index: 1;
}

/* Soft Radial Glow (Hidden by default) */
.prop-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(circle at 0% 0%, rgba(245, 178, 17, 0.6) 0%, rgba(245, 178, 17, 0) 65%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
  pointer-events: none;
}

/* Hover: Fade in glow and subtle border highlight */
.prop-card:hover {
  border-color: rgba(245, 178, 17, 0.3);
  box-shadow: 0 8px 30px rgba(245, 178, 17, 0.08);
}
.prop-card:hover::before {
  opacity: 1;
}

/* Ensure card text sits above the glow */
.prop-card > * {
  position: relative;
  z-index: 2;
}
.prop-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(26,60,31,0.05);
  color: #1a3c1f;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.prop-icon svg { width: 16px; height: 16px; }
.prop-text strong {
  display: block;
  font-size: 15px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 4px;
}
.prop-text span {
  display: block;
  font-size: 13px;
  color: #6b7280;
  line-height: 1.4;
}

/* Certifications 4 Grid */
.cert-four-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 768px) {
  .cert-four-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}
.cert-card-item {
  padding: 24px 16px;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.04);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}
.cert-card-item img { height: 50px; width: auto; object-fit: contain; }
.cert-card-item strong { font-size: 13px; font-weight: 800; color: #111827; }
.cert-card-item span { font-size: 11px; color: #6b7280; }

/* Specs & Packaging Showcase Split */
.specs-packaging-split {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
}
@media (max-width: 768px) {
  .specs-packaging-split { grid-template-columns: 1fr; gap: 32px; }
}

.packaging-showcase-card {
  padding: 32px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}
@media (max-width: 768px) {
  .packaging-showcase-card { padding: 20px; }
}
.pkg-img-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 8px;
  overflow: hidden;
  background: #f3f4f6;
}
.pkg-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.pkg-bullet-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pkg-bullet-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: #374151;
  line-height: 1.5;
}
.pkg-bullet-list li svg {
  width: 18px;
  height: 18px;
  color: #1a3c1f;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ----- FIXED ACCORDION FUNCTIONALITY ----- */
.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  background: #ffffff;
  border-radius: 12px;
  margin-bottom: 8px;
  cursor: pointer;
  font-weight: 800;
  font-size: 14px;
  color: #111827;
  transition: all 0.3s ease;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}
.accordion-header.active {
  background: #1a3c1f;
  color: #ffffff;
  border-color: #1a3c1f;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  margin-bottom: 0;
}
.accordion-header .acc-chevron {
  width: 20px;
  height: 20px;
  color: #9ca3af;
  transition: transform 0.3s ease;
}
.accordion-header.active .acc-chevron {
  color: #F5B211;
  transform: rotate(180deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  padding: 0 24px;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.06);
  border-top: none;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  margin-bottom: 0;
  opacity: 0;
  display: block !important;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.accordion-header.active + .accordion-body {
  max-height: 800px;
  padding: 24px;
  margin-bottom: 16px;
  opacity: 1;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
}
.specs-table th {
  padding: 14px 12px;
  text-align: left;
  font-size: 13px;
  color: #6b7280;
  font-weight: 700;
  width: 45%;
  border-bottom: 1px solid #f3f4f6;
}
.specs-table td {
  padding: 14px 12px;
  font-size: 13px;
  color: #111827;
  font-weight: 800;
  border-bottom: 1px solid #f3f4f6;
}


  .gallery-three-grid {
    display: flex !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 12px !important;
    padding-bottom: 12px;
  }
  .gallery-three-grid .gallery-card {
    flex: 0 0 280px;
    scroll-snap-align: center;
  }
}

@media (min-width: 769px) {
  .product-info-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

.buy-now-btn:hover { background: #374151 !important; transform: translateY(-2px); box-shadow: 0 4px 15px rgba(0,0,0,0.2); }
/* Hover effects for Why Choose Us cards */



@media (max-width: 768px) {
  .main-image {
    aspect-ratio: 16/10 !important; /* Shorter image on mobile to save vertical space */
  }
  .breadcrumbs-container {
    padding-top: 80px !important; /* Bring everything up */
  }
}

/* Hero Specific CTA (Restoring original green color) */
.hero-cta {
  background: var(--color-green) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 15px rgba(44, 62, 38, 0.3) !important;
}
.hero-cta:hover {
  background: var(--color-green-hover) !important;
  color: #ffffff !important;
  transform: translateY(-2px);
}

/* ==========================================================================
   WooCommerce Single Product Overrides
   ========================================================================== */

/* Product Page Header Styling */
body.single-product .site-header,
body.single-product .site-header.scrolled {
  background-color: #F8F3EC !important;
  border-bottom: 1px solid rgba(0,0,0,0.03);
  padding-top: 16px !important;
  padding-bottom: 16px !important;
}

body.single-product .breadcrumbs-container {
  background-color: #ffffff !important;
}

body.single-product .site-header .nav-text, 
body.single-product .site-header .chev,
body.single-product .site-header .btn-search,
body.single-product .site-header .btn-menu {
  color: #111111 !important;
}


@media (max-width: 768px) {
    body.single-product .site-header .main-nav a .nav-text,
    body.single-product .site-header .main-nav a .chev,
    body.single-product .site-header .main-nav .nav-contact-link,
    body.single-product .site-header .main-nav p,
    body.single-product .site-header .main-nav .nav-close-btn svg {
        color: #111 !important;
    }
}

/* ==========================================================================
   Product Gallery Slider (Mobile & Desktop)
   ========================================================================== */
.product-gallery-wrapper {
    position: relative;
    width: 100%;
}
.gallery-three-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.gallery-dots {
    display: none;
}
@media (max-width: 768px) {
    .gallery-three-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding-bottom: 8px;
    }
    .gallery-three-grid::-webkit-scrollbar {
        display: none;
    }
    .gallery-card {
        flex: 0 0 85%;
        scroll-snap-align: center;
    }
    .gallery-dots {
        display: flex !important;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 8px;
        margin-top: 16px;
    }
}

/* WooCommerce Price Styling */
.laxlin-price-box del {
    color: #9ca3af;
    font-size: 0.65em;
    font-weight: 500;
    margin-right: 8px;
}
.laxlin-price-box ins {
    text-decoration: none;
    color: #1a3c1f;
}




/* Phase 2 UI/UX Refinements */
#mainProductImage {
	transition: opacity 0.15s ease-in-out;
}

@media (max-width: 768px) {
	/* Responsive image gallery for mobile */
	.product-gallery-advanced {
		flex-direction: column-reverse !important;
	}
		.product-gallery-advanced .vertical-thumbnails {
		flex-direction: row !important;
		width: 100% !important;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
		padding-bottom: 8px;
		justify-content: flex-start !important;
		margin-top: 12px;
	}
	.product-gallery-advanced .vertical-thumbnails::-webkit-scrollbar {
		display: none;
	}
	.product-gallery-advanced .thumb-wrap {
		width: 60px !important;
		flex-shrink: 0;
		opacity: 0.6;
		transition: opacity 0.2s ease;
	}
	.product-gallery-advanced .thumb-wrap.active {
		opacity: 1;
	}
	
	/* Responsive 2-column grids -> 1 column on mobile */
	.bottom-split-grid {
		grid-template-columns: 1fr !important;
	}
	.product-info-grid-new {
		grid-template-columns: 1fr !important;
	}
}

/* Phase 3: Mobile UX & Padding Fixes */
@media (min-width: 769px) {
    /* Widen the desktop product grid */
    .single-product-grid {
        gap: 32px !important;
    }
    body.single-product .container {
        padding: 0 32px !important; /* reduced from 60px to increase width */
    }
}

@media (max-width: 768px) {
    /* 2x2 Grid for Value Props */
    .value-props-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 16px !important;
    }
    .value-props-grid .prop-card {
        flex-direction: column;
        align-items: center !important;
        text-align: center;
        background: #fff;
        padding: 16px 8px;
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.03);
    }
    .value-props-grid .prop-icon {
        margin-bottom: 8px;
    }
    
    /* Fix mobile main image fit */
    #mainProductImage {
        object-fit: contain !important;
        aspect-ratio: 1 / 1 !important;
        height: auto !important;
        max-height: none;
        background-color: transparent !important;
    }
    .main-image {
        aspect-ratio: 1 / 1 !important;
        background-color: transparent !important;
        border: none !important;
    }
}












@media (max-width: 768px) {
  .hero-bg,
  #heroNew > img:first-of-type {
    content: url("http://laxlin.in/wp-content/uploads/2026/08/hero-bg-mobile.jpg");
    width: 100vw !important;
    height: 100vh !important;
    object-fit: cover !important;
  }
}

/* Horizontal Card Styles */

                .shop-grid {
                    display: grid;
                    grid-template-columns: repeat(2, 1fr);
                    gap: 40px;
                }
                
                /* Horizontal Card Base */
                .horizontal-card {
                    opacity: 1 !important;
                    background: #fff;
                    border: 1px solid rgba(0,0,0,0.08);
                    border-radius: 8px;
                    overflow: hidden;
                    transition: box-shadow 0.3s ease;
                }
                .card-link-wrapper {
                    display: flex;
                    flex-direction: row;
                    height: 100%;
                    text-decoration: none;
                    color: inherit;
                }
                
                /* Image Left Side */
                .horizontal-img {
                    flex: 0 0 45%;
                    background: #fafaf8;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    border-right: 1px solid rgba(0,0,0,0.04);
                    position: relative;
                }
                .horizontal-img img {
                    width: 100%;
                    height: 100% !important;
                    object-fit: cover !important;
                    position: absolute;
                    top: 0;
                    left: 0;
                }
                
                /* Content Right Side */
                .horizontal-content {
                    flex: 0 0 55%;
                    padding: 32px 32px 40px 32px;
                    display: flex;
                    flex-direction: column;
                }
                
                .card-title {
                    font-size: 22px;
                    font-weight: 700;
                    margin: 0 0 4px;
                    color: #111;
                }
                
                .card-grade {
                    font-size: 13px;
                    color: #666;
                    margin: 0 0 24px;
                }
                
                .card-desc {
                    font-size: 15px;
                    color: #444;
                    margin: 0 0 32px;
                    line-height: 1.6;
                    flex-grow: 1;
                }
                
                .card-meta {
                    display: flex;
                    justify-content: space-between;
                    margin-bottom: 24px;
                }
                .meta-item {
                    display: flex;
                    flex-direction: column;
                    gap: 4px;
                }
                .meta-label {
                    font-size: 11px;
                    color: #888;
                    text-transform: uppercase;
                    letter-spacing: 0.5px;
                }
                .meta-value {
                    font-size: 15px;
                    font-weight: 600;
                    color: #111;
                }
                
                .card-btn-outline {
                    display: block;
                    width: 100%;
                    text-align: center;
                    padding: 14px;
                    border: 2px solid rgba(0,0,0,0.15); border-radius: 4px;
                    font-size: 13px;
                    font-weight: 700;
                    color: #111;
                    text-transform: uppercase;
                    letter-spacing: 1px;
                    transition: all 0.3s;
                }
                
                /* Hover Effects */
                @media (hover: hover) and (pointer: fine) {
                    .horizontal-card:hover {
                        box-shadow: 0 12px 30px rgba(0,0,0,0.06);
                    }
                    .horizontal-card:hover .card-btn-outline {
                        border-color: #111;
                        background: #f9f9f9;
                    }
                }
                
                /* Pagination */
                .shop-pagination ul { list-style: none; padding: 0; display: inline-flex; gap: 8px; }
                .shop-pagination li { display: inline; }
                .shop-pagination a, .shop-pagination span { padding: 10px 16px; border: 1px solid #ddd; border-radius: 4px; color: #333; text-decoration: none; font-weight: 500; }
                .shop-pagination span.current { background: #1a3c1f; color: #fff; border-color: #1a3c1f; }
                .shop-pagination a:hover { background: #f5f5f5; }
                
                /* Mobile Responsiveness */
                @media (max-width: 1024px) {
                    .shop-grid {
                        grid-template-columns: 1fr;
                    }
                }
                
                @media (max-width: 768px) {
                    .shop-container { padding: 40px 16px; }
                    .card-link-wrapper { flex-direction: column; }
                    .horizontal-img { flex: none; aspect-ratio: 16/9; border-right: none; border-bottom: 1px solid rgba(0,0,0,0.04); }
                    .horizontal-content { flex: none; padding: 24px; }
                }
            
/* Certifications Trust Banner */
.certifications-section {
    background-color: #f7f7f5;
    padding: 60px 0;
    border-top: 1px solid rgba(0,0,0,0.05);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

/* Mobile Swipe Carousels */
@media (max-width: 768px) {
    #featured-products .product-grid {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 16px;
        padding-bottom: 16px;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    #featured-products .product-grid::-webkit-scrollbar {
        display: none;
    }
    #featured-products .product-card {
        flex: 0 0 80%;
        scroll-snap-align: center;
    }

    
}

/* Override View All Buttons */
.view-all-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    padding: 14px 28px !important;
    border: 2px solid transparent !important;
    border-radius: 4px !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    color: #111 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
}
.view-all-btn:hover {
    border-color: #111 !important;
    background: transparent !important;
}

@media (max-width: 768px) {
    .shop-grid {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 768px) {
    .features-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        overflow-x: visible !important;
        gap: 16px !important;
    }
}

/* Fix iOS scroll trap on mobile carousels */
@media (max-width: 768px) {
    .product-grid, #featured-products .product-grid, .gallery-three-grid, .gallery-five-grid {
        touch-action: pan-y !important;
        overflow-y: hidden !important;
    }
}







/* =========================================
   WOOCOMMERCE ADD TO CART & QUANTITY
   ========================================= */
.ecommerce-action-bar form.cart {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.ecommerce-action-bar .quantity {
    display: flex;
    align-items: center;
}
.ecommerce-action-bar .quantity input.qty {
    width: 60px;
    height: 48px;
    padding: 0 10px;
    text-align: center;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    color: #111;
    background: #fff;
}
.ecommerce-action-bar button.single_add_to_cart_button {
    background-color: #2C3E26;
    color: #fff;
    border-radius: 6px;
    padding: 16px 24px;
    font-weight: 800;
    border: none;
    font-size: 14px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ecommerce-action-bar button.single_add_to_cart_button:hover {
    background-color: #1a3c1f;
}
.ecommerce-action-bar button.buy-now-btn {
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ecommerce-action-bar button.buy-now-btn:hover {
    background-color: #e09e0a !important;
}


/* =========================================
   LAXLIN E-COMMERCE BUTTON OVERRIDES
   ========================================= */
.ecommerce-action-bar form.cart {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    flex-wrap: wrap !important;
}
.ecommerce-action-bar .quantity {
    display: flex !important;
    align-items: center !important;
    margin-right: 0 !important;
}
.ecommerce-action-bar .quantity input.qty {
    width: 70px !important;
    height: 52px !important;
    padding: 0 10px !important;
    text-align: center !important;
    border: 2px solid #e5e7eb !important;
    border-radius: 8px !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #111 !important;
    background: #fff !important;
}
.ecommerce-action-bar button.single_add_to_cart_button {
    background-color: #2C3E26 !important;
    color: #fff !important;
    border-radius: 8px !important;
    padding: 0 32px !important;
    font-weight: 800 !important;
    border: none !important;
    font-size: 14px !important;
    text-transform: uppercase !important;
    cursor: pointer !important;
    height: 52px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 !important;
}
.ecommerce-action-bar button.buy-now-btn {
    background-color: #F5B211 !important;
    color: #111 !important;
    border-radius: 8px !important;
    padding: 0 32px !important;
    font-weight: 800 !important;
    border: none !important;
    font-size: 14px !important;
    text-transform: uppercase !important;
    cursor: pointer !important;
    height: 52px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 !important;
    box-shadow: 0 4px 15px rgba(245,178,17,0.3) !important;
}
@media(max-width: 768px) {
    .ecommerce-action-bar button.single_add_to_cart_button,
    .ecommerce-action-bar button.buy-now-btn {
        flex: 1 !important;
        padding: 0 16px !important;
    }
}

/* =========================================
   XOOTIX SIDE CART OVERRIDES (LAXLIN BRAND)
   ========================================= */
.xoo-wsc-header {
    background-color: #fafaf8 !important;
    border-bottom: 1px solid #e5e7eb !important;
}
.xoo-wsc-ch-txt {
    color: #1a1a1a !important;
    font-size: 20px !important;
    font-weight: 700 !important;
}
.xoo-wsc-ch-icon, .xoo-wsc-icon-cross {
    color: #1a1a1a !important;
}
.xoo-wsc-ft-btn-checkout {
    background-color: #F5B211 !important;
    color: #111 !important;
    border-radius: 8px !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    box-shadow: 0 4px 15px rgba(245,178,17,0.3) !important;
}
.xoo-wsc-sb-amt, .xoo-wsc-sb-txt, .xoo-wsc-sp-left {
    color: #1a1a1a !important;
    font-weight: 600 !important;
}
.xoo-wsc-smr-pt {
    color: #1a1a1a !important;
    font-weight: 700 !important;
}
.xoo-wsc-ft-buttons-cont .xoo-wsc-ft-btn-cart {
    background-color: #2C3E26 !important;
    color: #fff !important;
    border-radius: 8px !important;
}


/* GLOBAL WOOCOMMERCE FORM & INPUT STYLES */
.woocommerce form .form-row input.input-text, 
.woocommerce form .form-row textarea {
    padding: 16px !important;
    border: 2px solid #e5e7eb !important;
    border-radius: 8px !important;
    background-color: #fafaf8 !important;
    font-size: 15px !important;
    font-family: var(--font-body) !important;
    color: #111 !important;
    transition: all 0.3s ease !important;
    box-shadow: none !important;
}
.woocommerce form .form-row input.input-text:focus, 
.woocommerce form .form-row textarea:focus {
    border-color: #F5B211 !important;
    background-color: #ffffff !important;
    outline: none !important;
}
.woocommerce form .form-row label {
    font-size: 13px !important;
    font-weight: 700 !important;
    color: #4b5563 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    margin-bottom: 8px !important;
}

/* =========================================
   CART PAGE REDESIGN
   ========================================= */
.woocommerce-cart .woocommerce {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0;
}
.woocommerce-cart table.shop_table {
    border: none !important;
    border-radius: 12px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.03);
    overflow: hidden;
}
.woocommerce-cart table.shop_table th {
    background-color: #fafaf8;
    color: #1a1a1a;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.05em;
    padding: 24px;
    border: none !important;
}
.woocommerce-cart table.shop_table td {
    border-top: 1px solid #f3f4f6 !important;
    padding: 24px !important;
    vertical-align: middle;
}
.woocommerce-cart .product-thumbnail img {
    border-radius: 8px;
    width: 80px;
    height: 80px;
    object-fit: cover;
    border: 1px solid #f3f4f6;
}
.woocommerce-cart .product-name a {
    font-weight: 700 !important;
    color: #1a1a1a !important;
    font-size: 16px;
    text-decoration: none;
}
.woocommerce-cart .quantity input.qty {
    width: 70px !important;
    height: 48px !important;
    border: 2px solid #e5e7eb !important;
    border-radius: 6px !important;
    font-weight: 700;
}
.woocommerce-cart .coupon {
    display: flex !important;
    gap: 12px;
}
.woocommerce-cart .coupon input.input-text {
    width: 250px !important;
    height: 52px !important;
}
.woocommerce-cart .coupon button.button {
    height: 52px !important;
    background: #1a1a1a !important;
    color: #fff !important;
    border-radius: 8px !important;
    padding: 0 32px !important;
    font-weight: 700 !important;
}

/* CART TOTALS (RIGHT SIDE) */
.woocommerce-cart .cart-collaterals {
    margin-top: 40px !important;
}
.woocommerce-cart .cart_totals {
    width: 400px !important;
    float: right !important;
    background: #fafaf8;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}
.woocommerce-cart .cart_totals h2 {
    font-family: var(--font-heading);
    font-size: 24px;
    margin-bottom: 24px;
    border-bottom: 2px solid #F5B211;
    padding-bottom: 12px;
    display: inline-block;
}
.woocommerce-cart .checkout-button {
    background-color: #F5B211 !important;
    color: #111 !important;
    border-radius: 8px !important;
    padding: 20px !important;
    font-size: 16px !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 24px;
    box-shadow: 0 4px 15px rgba(245,178,17,0.3) !important;
}

/* =========================================
   CHECKOUT PAGE REDESIGN (Cognitive Load Reduction)
   ========================================= */
.woocommerce-checkout .woocommerce {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    max-width: 1200px;
    margin: 60px auto;
}

/* Left Side: Forms */
.woocommerce-checkout #customer_details {
    padding-right: 20px;
}
.woocommerce-checkout .woocommerce-billing-fields h3, 
.woocommerce-checkout .woocommerce-additional-fields h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    color: #1a1a1a;
    border-bottom: 2px solid #F5B211;
    padding-bottom: 12px;
    margin-bottom: 32px;
    display: inline-block;
}
.woocommerce-checkout .woocommerce-billing-fields {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.03);
    border: 1px solid #f3f4f6;
}

/* Right Side: Order Summary & Payment */
.woocommerce-checkout #order_review_heading {
    font-family: var(--font-heading);
    font-size: 24px;
    margin-top: 0;
}
.woocommerce-checkout #order_review {
    background: #fafaf8;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    position: sticky;
    top: 120px;
}
.woocommerce-checkout table.shop_table {
    border: none !important;
    background: transparent !important;
}
.woocommerce-checkout table.shop_table th, 
.woocommerce-checkout table.shop_table td {
    border-top: 1px solid #e5e7eb !important;
    padding: 16px 0 !important;
}
.woocommerce-checkout table.shop_table thead th {
    border-top: none !important;
    border-bottom: 2px solid #1a1a1a !important;
    text-transform: uppercase;
    font-size: 12px;
}

/* Payment Methods */
.woocommerce-checkout #payment {
    background: #fff !important;
    border-radius: 8px !important;
    padding: 24px !important;
    border: 1px solid #e5e7eb !important;
    margin-top: 32px;
}
.woocommerce-checkout #payment ul.payment_methods {
    border-bottom: 1px solid #e5e7eb !important;
    padding: 0 0 24px 0 !important;
}
.woocommerce-checkout #payment .place-order {
    padding: 24px 0 0 0 !important;
}
.woocommerce-checkout #place_order {
    background-color: #F5B211 !important;
    color: #111 !important;
    border-radius: 8px !important;
    padding: 20px !important;
    font-size: 18px !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    width: 100% !important;
    box-shadow: 0 4px 20px rgba(245,178,17,0.4) !important;
    transition: all 0.3s ease !important;
}
.woocommerce-checkout #place_order:hover {
    background-color: #e09e0a !important;
    transform: translateY(-2px);
}

/* Mobile Checkout/Cart Formatting */
@media (max-width: 992px) {
    .woocommerce-checkout .woocommerce {
        grid-template-columns: 1fr;
        gap: 40px;
        margin: 40px 16px;
    }
    .woocommerce-cart .woocommerce {
        padding: 40px 16px;
    }
    .woocommerce-cart .cart_totals {
        width: 100% !important;
        float: none !important;
    }
    .woocommerce-cart .coupon {
        flex-direction: column;
    }
    .woocommerce-cart .coupon input.input-text {
        width: 100% !important;
    }
}

/* CHECKOUT PADDING FIX */
body.woocommerce-checkout .page-content-wrapper {
    padding-top: 40px !important;
}
body.woocommerce-checkout .page-content-wrapper .container {
    max-width: 1200px !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
}

/* GLOBAL WOOCOMMERCE FORM & INPUT STYLES */
.woocommerce form.checkout * {
    font-family: var(--font-body), sans-serif !important; /* Force professional sans-serif everywhere */
    text-transform: none !important;
}
.woocommerce form.checkout h1, 
.woocommerce form.checkout h2, 
.woocommerce form.checkout h3 {
    font-family: var(--font-body), sans-serif !important;
    font-weight: 800 !important;
    color: #1a1a1a !important;
    font-size: 22px !important;
    margin-bottom: 24px !important;
    letter-spacing: normal !important;
}
.woocommerce form .form-row {
    margin-bottom: 20px !important;
}
.woocommerce form .form-row label {
    font-size: 13px !important;
    font-weight: 700 !important;
    color: #4b5563 !important;
    margin-bottom: 8px !important;
    display: block !important;
}
.woocommerce form .form-row input.input-text, 
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
    width: 100% !important;
    padding: 16px !important;
    border: 1px solid #d1d5db !important;
    border-radius: 8px !important;
    background-color: #ffffff !important;
    font-size: 15px !important;
    color: #111 !important;
    transition: all 0.2s ease !important;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05) !important;
    box-sizing: border-box !important;
}
.woocommerce form .form-row input.input-text:focus, 
.woocommerce form .form-row textarea:focus,
.woocommerce form .form-row select:focus {
    border-color: #F5B211 !important;
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(245,178,17,0.2) !important;
}

/* =========================================
   CHECKOUT PAGE REDESIGN
   ========================================= */
@media (min-width: 992px) {
    form.checkout {
        display: grid;
        grid-template-columns: 1.2fr 0.8fr;
        gap: 60px;
        align-items: start;
    }
    form.checkout #customer_details {
        grid-column: 1;
        width: 100%;
        background: #fff;
        padding: 40px;
        border-radius: 12px;
        box-shadow: 0 4px 30px rgba(0,0,0,0.03);
        border: 1px solid #f3f4f6;
    }
    form.checkout h3#order_review_heading {
        display: none !important;
    }
    form.checkout #order_review {
        grid-column: 2;
        width: 100%;
        background: #fafaf8;
        padding: 40px;
        border-radius: 12px;
        border: 1px solid #e5e7eb;
        position: sticky;
        top: 100px;
    }
}
@media (max-width: 991px) {
    form.checkout {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }
    form.checkout #customer_details {
        background: #fff;
        padding: 24px;
        border-radius: 12px;
        border: 1px solid #f3f4f6;
    }
    form.checkout h3#order_review_heading {
        margin-top: 20px;
    }
    form.checkout #order_review {
        background: #fafaf8;
        padding: 24px;
        border-radius: 12px;
        border: 1px solid #e5e7eb;
    }
}

/* Col2-set Layout Fixes inside customer details */
.woocommerce-checkout .col2-set .col-1, 
.woocommerce-checkout .col2-set .col-2 {
    width: 100% !important;
    float: none !important;
    margin-bottom: 32px !important;
}

/* Right Side: Order Summary & Payment */
.woocommerce-checkout table.shop_table {
    border: none !important;
    background: transparent !important;
    width: 100% !important;
    border-collapse: collapse !important;
    margin-bottom: 24px !important;
}
.woocommerce-checkout table.shop_table th, 
.woocommerce-checkout table.shop_table td {
    border-top: 1px solid #e5e7eb !important;
    padding: 16px 0 !important;
    text-transform: none !important;
}
.woocommerce-checkout table.shop_table thead th {
    border-top: none !important;
    border-bottom: 2px solid #1a1a1a !important;
    text-transform: uppercase !important;
    font-size: 12px !important;
    font-weight: 800 !important;
}

/* Payment Methods */
.woocommerce-checkout #payment {
    background: #fff !important;
    border-radius: 8px !important;
    padding: 24px !important;
    border: 1px solid #e5e7eb !important;
}
.woocommerce-checkout #payment ul.payment_methods {
    border-bottom: 1px solid #e5e7eb !important;
    padding: 0 0 24px 0 !important;
}
.woocommerce-checkout #payment .place-order {
    padding: 24px 0 0 0 !important;
}
.woocommerce-checkout #place_order {
    background-color: #F5B211 !important;
    color: #111 !important;
    border-radius: 8px !important;
    padding: 20px !important;
    font-size: 18px !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    width: 100% !important;
    box-shadow: 0 4px 20px rgba(245,178,17,0.4) !important;
    transition: all 0.3s ease !important;
    border: none !important;
}
.woocommerce-checkout #place_order:hover {
    background-color: #e09e0a !important;
    transform: translateY(-2px);
}


/* =========================================
   LAXLIN WOOCOMMERCE BLOCK CHECKOUT UI
   ========================================= */

/* Main Container and Fonts */
.wc-block-checkout {
    font-family: var(--font-body), sans-serif !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding-top: 20px !important;
}

/* Page Title */
.wc-block-checkout h1, 
.page-title {
    font-family: var(--font-heading) !important;
    font-size: 48px !important;
    color: #1a1a1a !important;
    margin-bottom: 24px !important;
}

/* Headings (Contact Info, Shipping, etc) */
.wc-block-checkout h2, 
.wc-block-components-title {
    font-family: var(--font-body), sans-serif !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    color: #1a1a1a !important;
}

/* Inputs */
.wc-block-components-text-input input,
.wc-block-components-combobox-control input,
.wc-block-components-country-input select,
.wc-block-components-state-input select {
    border: 1px solid #e5e7eb !important;
    border-radius: 8px !important;
    padding: 16px !important;
    font-size: 15px !important;
    background-color: #fff !important;
    transition: all 0.3s ease !important;
}
.wc-block-components-text-input input:focus,
.wc-block-components-combobox-control input:focus {
    border-color: #F5B211 !important;
    box-shadow: 0 0 0 1px #F5B211 !important;
}

/* Floating Labels Fix */
.wc-block-components-text-input label {
    font-size: 13px !important;
    color: #6b7280 !important;
}

/* Right Side - Order Summary */
.wc-block-checkout__sidebar {
    background-color: #fafaf8 !important;
    border-radius: 12px !important;
    padding: 32px !important;
    border: 1px solid #f3f4f6 !important;
}

/* Place Order Button */
.wc-block-components-checkout-place-order-button {
    background-color: #F5B211 !important;
    color: #111 !important;
    font-weight: 800 !important;
    font-size: 18px !important;
    border-radius: 8px !important;
    padding: 24px !important;
    text-transform: none !important;
    box-shadow: 0 4px 15px rgba(245,178,17,0.3) !important;
    transition: all 0.3s ease !important;
}
.wc-block-components-checkout-place-order-button:hover {
    background-color: #e09e0a !important;
    transform: translateY(-2px) !important;
}

/* Payment Method Box */
.wc-block-components-checkout-payment-method {
    background: #fff !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 8px !important;
    padding: 16px !important;
}


/* Container Width */
body.woocommerce-checkout .page-wrapper .container {
    max-width: 1240px !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
    margin: 0 auto !important;
}
.laxlin-checkout-page-wrapper {
    padding-top: 20px;
    padding-bottom: 60px;
}

/* Header */
.laxlin-checkout-header {
    margin-bottom: 32px;
}
.laxlin-checkout-title {
    font-family: var(--font-heading), serif !important;
    font-size: 44px !important;
    font-weight: 400 !important;
    color: #111 !important;
    margin: 0 0 6px 0 !important;
}
.laxlin-checkout-subtitle {
    font-family: var(--font-body), sans-serif !important;
    font-size: 14px !important;
    color: #6b7280 !important;
    margin: 0 !important;
}

/* Form Grid Layout */
.laxlin-checkout-form-grid {
    display: grid !important;
    grid-template-columns: 1fr 480px !important;
    gap: 48px !important;
    align-items: start !important;
}

@media (max-width: 991px) {
    .laxlin-checkout-form-grid {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
    }
}

/* Form Fields Styling */
.laxlin-checkout-main h3, 
.laxlin-checkout-main h2 {
    font-family: var(--font-body), sans-serif !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #111 !important;
    margin: 24px 0 6px 0 !important;
}
.laxlin-checkout-main h3:first-child,
.laxlin-checkout-main h2:first-child {
    margin-top: 0 !important;
}

.woocommerce form .form-row {
    margin-bottom: 16px !important;
    padding: 0 !important;
}
.woocommerce form .form-row label {
    font-family: var(--font-body), sans-serif !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #374151 !important;
    margin-bottom: 6px !important;
    display: block !important;
}
.woocommerce form .form-row input.input-text, 
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
    width: 100% !important;
    padding: 14px 16px !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 8px !important;
    background-color: #ffffff !important;
    font-size: 15px !important;
    font-family: var(--font-body), sans-serif !important;
    color: #111 !important;
    box-sizing: border-box !important;
    transition: border-color 0.2s ease !important;
}
.woocommerce form .form-row input.input-text:focus, 
.woocommerce form .form-row textarea:focus,
.woocommerce form .form-row select:focus {
    border-color: #F5B211 !important;
    outline: none !important;
}

/* Side-by-Side Col2-Set */
.woocommerce-billing-fields__field-wrapper,
.woocommerce-shipping-fields__field-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}
.woocommerce-billing-fields__field-wrapper .form-row,
.woocommerce-shipping-fields__field-wrapper .form-row {
    flex: 1 1 100%;
}
.woocommerce-billing-fields__field-wrapper #billing_first_name_field,
.woocommerce-billing-fields__field-wrapper #billing_last_name_field,
.woocommerce-billing-fields__field-wrapper #billing_city_field,
.woocommerce-billing-fields__field-wrapper #billing_state_field,
.woocommerce-billing-fields__field-wrapper #billing_postcode_field,
.woocommerce-billing-fields__field-wrapper #billing_phone_field {
    flex: 1 1 calc(50% - 8px);
}

/* Sidebar & Summary Box */
.laxlin-order-summary-card {
    background-color: #fafaf8 !important;
    border: 1px solid #f0f0ed !important;
    border-radius: 12px !important;
    padding: 32px !important;
}
.laxlin-summary-heading {
    font-family: var(--font-body), sans-serif !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #111 !important;
    margin: 0 0 20px 0 !important;
}

/* Table in Summary */
.woocommerce-checkout-review-order-table {
    border: none !important;
    background: transparent !important;
    width: 100% !important;
    margin-bottom: 20px !important;
}
.woocommerce-checkout-review-order-table th,
.woocommerce-checkout-review-order-table td {
    border: none !important;
    border-bottom: 1px solid #e5e7eb !important;
    padding: 12px 0 !important;
    font-family: var(--font-body), sans-serif !important;
    font-size: 14px !important;
}
.woocommerce-checkout-review-order-table .order-total th,
.woocommerce-checkout-review-order-table .order-total td {
    font-size: 18px !important;
    font-weight: 800 !important;
    border-bottom: none !important;
    color: #111 !important;
}

/* Payment Box */
#payment {
    background: #ffffff !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 8px !important;
    padding: 20px !important;
    margin-top: 20px !important;
}
#payment ul.payment_methods {
    border-bottom: 1px solid #e5e7eb !important;
    padding-bottom: 16px !important;
    margin-bottom: 16px !important;
}
#payment #place_order {
    background-color: #F5B211 !important;
    color: #111 !important;
    font-weight: 800 !important;
    font-size: 16px !important;
    border-radius: 8px !important;
    padding: 18px 24px !important;
    border: none !important;
    width: 100% !important;
    cursor: pointer !important;
    box-shadow: 0 4px 15px rgba(245,178,17,0.3) !important;
    transition: all 0.2s ease !important;
    text-transform: uppercase !important;
}
#payment #place_order:hover {
    background-color: #e09e0a !important;
}

/* Trust Badges Row */
.laxlin-trust-badges-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
    padding: 28px 32px;
    background-color: #fafaf8;
    border: 1px solid #f0f0ed;
    border-radius: 12px;
}
@media (max-width: 768px) {
    .laxlin-trust-badges-row {
        grid-template-columns: repeat(2, 1fr);
    }
}
.laxlin-trust-badge {
    display: flex;
    align-items: center;
    gap: 14px;
}
.laxlin-trust-badge .badge-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e5e7eb;
}
.laxlin-trust-badge .badge-text strong {
    display: block;
    font-size: 14px;
    color: #111;
    font-weight: 700;
}
.laxlin-trust-badge .badge-text span {
    font-size: 12px;
    color: #6b7280;
}
