/* ============================================
   Cleanex Chemicals - Global Layout & Typography
   ============================================ */

/* ============================================
   WhatsApp Floating Button
   ============================================ */

/* --- Preloader --- */
#preloader-status {
  width: auto !important;
  height: auto !important;
  background-image: none !important;
  margin: 0 !important;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.preloader-spinner {
  width: 52px;
  height: 52px;
  border-width: 4px;
  color: #CFF480;
}

/* --- WhatsApp Floating Button --- */
.whatsapp-float {
  position: fixed;
  left: 24px;
  bottom: 28px;
  z-index: 9999;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
  animation: wa-bounce-in 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 1.2s both;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

/* Ripple rings */
.whatsapp-float__ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.65);
  animation: wa-ripple 2.4s ease-out infinite;
  pointer-events: none;
}
.whatsapp-float__ring--delay {
  animation-delay: 1.2s;
}

@keyframes wa-ripple {
  0%   { transform: scale(1);    opacity: 0.75; }
  100% { transform: scale(1.75); opacity: 0; }
}

/* Icon */
.whatsapp-float__icon {
  font-size: 28px;
  line-height: 1;
  position: relative;
  z-index: 1;
  transition: transform 0.28s ease;
}

/* Hover */
.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 14px 36px rgba(37, 211, 102, 0.6);
  color: #ffffff;
}
.whatsapp-float:hover .whatsapp-float__icon {
  transform: rotate(-12deg) scale(1.1);
}

/* Bounce entrance */
@keyframes wa-bounce-in {
  0%   { transform: translateY(70px) scale(0.8); opacity: 0; }
  60%  { transform: translateY(-8px) scale(1.05); opacity: 1; }
  80%  { transform: translateY(3px) scale(0.98); }
  100% { transform: translateY(0) scale(1); }
}

/* Mobile */
@media (max-width: 576px) {
  .whatsapp-float {
    left: 16px;
    bottom: 20px;
    width: 50px;
    height: 50px;
  }
  .whatsapp-float__icon {
    font-size: 24px;
  }
}

:root {
  --container-max: 1280px;
  --section-spacing: 120px;
  --section-spacing-tablet: 80px;
  --section-spacing-mobile: 60px;
  --heading-margin-bottom: 20px;
  --paragraph-margin-bottom: 16px;
  --line-height-body: 1.65;
  --line-height-heading: 1.25;
  --padding-desktop: 80px;
  --padding-tablet: 40px;
  --padding-mobile: 20px;
}

/* --- Hero: full-width, premium overlay, improved readability --- */
.slider-area.style-2 {
  margin: 0 !important;
  border-radius: 0 !important;
}
.slider-area.style-2 .single-slider-wrapper {
  border-radius: 0 !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}

/* Gradient overlay: subtle at top, stronger toward bottom where text lives.
   Gives a cinematic depth while keeping the image visible. */
.slider-area.style-2 .single-slider-wrapper .slider-overlay {
  border-radius: 0 !important;
  background: linear-gradient(
    to bottom,
    rgba(5, 10, 22, 0.38) 0%,
    rgba(5, 10, 22, 0.55) 45%,
    rgba(5, 10, 22, 0.72) 100%
  ) !important;
}

/* Text shadow on all slider text for maximum legibility over any image */
.slider-area.style-2 .slider-content .slider-title,
.slider-area.style-2 .slider-content .slider-short-desc,
.slider-area.style-2 .slider-content p {
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55), 0 1px 3px rgba(0, 0, 0, 0.4);
}

/* Slightly bolder short-desc for contrast */
.slider-area.style-2 .slider-content .slider-short-desc {
  font-weight: 500 !important;
  letter-spacing: 0.01em;
}

/* --- Navbar logo: constrained size, aspect-ratio preserved --- */
.header-menu-area .logo .standard-logo img,
.header-menu-area .logo .retina-logo img {
  height: 70px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
}

/* Sticky header is shorter (84px), so logo scales down slightly */
.header-menu-area.sticky_menu .logo .sticky-logo img {
  height: 70px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  display: block;
}

/* Sidebar drawer logo */
.menu-sidebar-logo img {
  height: 80px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
}

/* Footer logo */
.footer-logo img {
  height: 54px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
}

@media (max-width: 767px) {
  .header-menu-area .logo .standard-logo img,
  .header-menu-area .logo .retina-logo img {
    height: 42px;
    max-width: 160px;
  }
}

/* --- Hero CTA button: single pill with embedded arrow icon --- */
.hero-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  background: #CFF480;
  color: #1c1f19;
  font-family: "Urbanist", sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: 999px;
  white-space: nowrap;
  text-decoration: none;
  border: 2px solid transparent;
  transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease, color 0.28s ease;
  position: relative;
  z-index: 2;
}
.hero-cta-btn i {
  font-size: 13px;
  transition: transform 0.28s ease;
}
.hero-cta-btn:hover {
  background: #b8e35a;
  color: #1c1f19;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(207, 244, 128, 0.40), 0 4px 12px rgba(0, 0, 0, 0.18);
}
.hero-cta-btn:hover i {
  transform: translateX(5px);
}

/* Ghost secondary CTA — white outline pill */
.hero-cta-btn--ghost {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.75);
}
.hero-cta-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border-color: #ffffff;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

/* Center the btn-wrapper inside the hero */
.slider-area.style-2 .slider-content .btn-wrapper {
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

@media (max-width: 576px) {
  .hero-cta-btn {
    padding: 13px 24px;
    font-size: 14px;
  }
}

/* --- Global container --- */
.container {
  max-width: var(--container-max) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: var(--padding-desktop) !important;
  padding-right: var(--padding-desktop) !important;
  width: 100% !important;
}

@media (max-width: 1024px) {
  .container {
    padding-left: var(--padding-tablet) !important;
    padding-right: var(--padding-tablet) !important;
  }
}

@media (max-width: 576px) {
  .container {
    padding-left: var(--padding-mobile) !important;
    padding-right: var(--padding-mobile) !important;
  }
}

/* --- Section spacing --- */
.project-area,
.portfolio-area.style-1,
.about-us-area,
.process-roadmap,
.process-timeline,
.page-breadcrumb-area,
.contact-info-area,
.contact-form-area {
  padding-top: var(--section-spacing);
  padding-bottom: var(--section-spacing);
}

@media (max-width: 1024px) {
  .project-area,
  .portfolio-area.style-1,
  .about-us-area,
  .process-roadmap,
  .process-timeline,
  .page-breadcrumb-area,
  .contact-info-area,
  .contact-form-area {
    padding-top: var(--section-spacing-tablet);
    padding-bottom: var(--section-spacing-tablet);
  }
}

@media (max-width: 768px) {
  .project-area,
  .portfolio-area.style-1,
  .about-us-area,
  .process-roadmap,
  .process-timeline,
  .page-breadcrumb-area,
  .contact-info-area,
  .contact-form-area {
    padding-top: var(--section-spacing-mobile);
    padding-bottom: var(--section-spacing-mobile);
  }
}

/* Override Bootstrap py-140 etc where used */
.py-140 { padding-top: var(--section-spacing) !important; padding-bottom: var(--section-spacing) !important; }
.pb-140 { padding-bottom: var(--section-spacing) !important; }

/* ============================================
   Footer — products two-column grid
   ============================================ */

.footer-products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 24px;
}

.footer-products-col {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-products-col li a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  transition: color 0.2s ease, padding-left 0.2s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-products-col li a::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #CFF480;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.footer-products-col li a:hover {
  color: #CFF480;
  padding-left: 4px;
}

.footer-products-col li a:hover::before {
  transform: scale(1.5);
}

/* "View All" row stands out */
.footer-products-viewall a {
  color: #CFF480 !important;
  font-weight: 600;
  font-size: 0.875rem !important;
  letter-spacing: 0.02em;
}

.footer-products-viewall a::before {
  display: none !important;
}

@media (max-width: 576px) {
  .footer-products-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   Stats / Fun Fact circle section — full reset
   Replaces the theme's overlapping wave layout
   with a clean 4-column grid for all screens
   ============================================ */

/* Section wrapper: constrained and centred */
.circle-area {
  padding-top: var(--section-spacing);
  padding-bottom: var(--section-spacing);
}

/* Grid replaces flex + manual margin hacks */
.circle-area .circle-shape-wrapper {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 36px !important;
  justify-items: center !important;
  align-items: center !important;
  max-width: 1100px;
  margin: 0 auto;
}

/* Reset ALL theme nth-child stagger margins */
.circle-area .counter-card.style-1:nth-child(1),
.circle-area .counter-card.style-1:nth-child(2),
.circle-area .counter-card.style-1:nth-child(3),
.circle-area .counter-card.style-1:nth-child(4) {
  margin: 0 !important;
}

/* Reset ALL theme nth-child negative margin-left on content */
.circle-area .counter-card.style-1:nth-child(2) .content,
.circle-area .counter-card.style-1:nth-child(3) .content,
.circle-area .counter-card.style-1:nth-child(4) .content {
  margin-left: 0 !important;
}

/* Circle card: consistent size, no overflow */
.circle-area .counter-card.style-1 {
  width: 100%;
  max-width: 230px;
}

/* Circle content: fixed, balanced size */
.circle-area .counter-card.style-1 .content {
  width: 200px !important;
  height: 200px !important;
  padding: 28px !important;
  gap: 10px !important;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Keep brand accent colors from theme */
.circle-area .counter-card.style-1:nth-child(2) .content {
  background-color: #CFF480 !important;
}
.circle-area .counter-card.style-1:nth-child(4) .content {
  background-color: #CFF480 !important;
}

/* Hover: subtle lift, no layout shift */
.circle-area .counter-card.style-1:hover {
  transform: translateY(-6px) scale(1.03) !important;
}
.circle-area .counter-card.style-1:hover .content {
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

/* Typography inside circle */
.circle-area .counter-card.style-1 .content .number {
  font-size: 2rem !important;
  line-height: 1 !important;
  margin: 0 !important;
}
.circle-area .counter-card.style-1 .content .title {
  font-size: 0.8125rem !important;
  line-height: 1.35 !important;
  margin: 0 !important;
  font-weight: 600;
}

/* Section heading max-width */
.circle-area .section-title .title {
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* --- Responsive --- */

/* Tablet: 2 columns */
@media (max-width: 991px) {
  .circle-area .circle-shape-wrapper {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 28px !important;
  }
  .circle-area .counter-card.style-1 {
    max-width: 260px;
  }
  .circle-area .counter-card.style-1 .content {
    width: 220px !important;
    height: 220px !important;
  }
}

/* Mobile: 2 columns (compact) */
@media (max-width: 576px) {
  .circle-area .circle-shape-wrapper {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 18px !important;
    max-width: 380px;
  }
  .circle-area .counter-card.style-1 {
    max-width: 160px;
  }
  .circle-area .counter-card.style-1 .content {
    width: 150px !important;
    height: 150px !important;
    padding: 18px !important;
  }
  .circle-area .counter-card.style-1 .content .number {
    font-size: 1.5rem !important;
  }
  .circle-area .counter-card.style-1 .content .title {
    font-size: 0.7rem !important;
  }
}
.pt-140 { padding-top: var(--section-spacing) !important; }

@media (max-width: 1024px) {
  .py-140, .py-md-80, .py-lg-100 { padding-top: var(--section-spacing-tablet) !important; padding-bottom: var(--section-spacing-tablet) !important; }
  .pb-140, .pb-md-80, .pb-lg-100 { padding-bottom: var(--section-spacing-tablet) !important; }
}

@media (max-width: 768px) {
  .py-140, .py-sm-60, .py-md-80, .py-lg-100 { padding-top: var(--section-spacing-mobile) !important; padding-bottom: var(--section-spacing-mobile) !important; }
  .pb-140, .pb-sm-60, .pb-md-80, .pb-lg-100 { padding-bottom: var(--section-spacing-mobile) !important; }
}

/* --- Typography hierarchy --- */
.section-title .title,
.sec-content .title,
h1.slider-title,
h2.title {
  margin-bottom: var(--heading-margin-bottom) !important;
  line-height: var(--line-height-heading) !important;
  letter-spacing: -0.02em;
}

.section-title .desc,
.sec-content .desc,
.main-content .desc,
p.desc {
  margin-bottom: var(--paragraph-margin-bottom) !important;
  line-height: var(--line-height-body) !important;
}

.section-title .desc:last-child,
.sec-content .desc:last-child,
.main-content .desc:last-child {
  margin-bottom: 0 !important;
}

.slider-short-desc,
.slider-content p {
  line-height: var(--line-height-body) !important;
  margin-bottom: 1rem !important;
}

/* --- Section backgrounds --- */
.section-bg-gradient {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 50%, #f8fafc 100%);
}

.section-bg-subtle {
  background-color: #fafbfc;
}

.section-bg-pattern {
  background-color: #ffffff;
  background-image: radial-gradient(rgba(0, 120, 200, 0.04) 1px, transparent 1px);
  background-size: 24px 24px;
}

.portfolio-area.style-1.section-bg-subtle,
.project-area.style-2.section-bg-gradient {
  position: relative;
}

/* --- Row spacing --- */
.row.gy-4 {
  --bs-gutter-y: 1.5rem;
}

@media (min-width: 768px) {
  .row.gy-4 {
    --bs-gutter-y: 2rem;
  }
}

/* --- Ensure no content touches edges (extra safety) --- */
body {
  overflow-x: hidden;
}

/* ============================================
   Product Detail Pages
   ============================================ */

:root {
  --pd-accent:    #CFF480;
  --pd-dark:      #1c1f19;
  --pd-dark-end:  #252d1f;
  --pd-gradient:  linear-gradient(135deg, #1c1f19 0%, #252d1f 100%);
}

.product-detail-section {
  background: #f5f5f2;
  padding: 60px 0 100px;
}

.product-detail-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 28px;
  align-items: start;
}

/* --- Sidebar --- */
.pd-sidebar {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  position: sticky;
  top: 100px;
}

.pd-sidebar__header {
  background: var(--pd-gradient);
  color: #CFF480;
  padding: 18px 22px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pd-sidebar__list {
  list-style: none;
  padding: 8px 0;
  margin: 0;
}

.pd-sidebar__item a {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 11px 18px;
  color: #4a5568;
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 500;
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
  line-height: 1.4;
}

.pd-sidebar__item a:hover {
  background: rgba(207, 244, 128, 0.15);
  color: var(--pd-dark);
  border-left-color: #CFF480;
}

.pd-sidebar__item.active a {
  background: rgba(207, 244, 128, 0.2);
  color: var(--pd-dark);
  font-weight: 700;
  border-left-color: #CFF480;
}

.pd-sidebar__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  min-width: 24px;
  border-radius: 50%;
  background: #eef2f8;
  font-size: 11px;
  font-weight: 700;
  color: #8899aa;
}

.pd-sidebar__item.active .pd-sidebar__num {
  background: #CFF480;
  color: var(--pd-dark);
}

.pd-sidebar__divider {
  height: 1px;
  background: #eef2f8;
  margin: 4px 0;
}

/* --- Main content card --- */
.pd-main {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

/* Banner — text left, image right (original two-column layout) */
.pd-main__banner {
  background: var(--pd-gradient);
  padding: 48px 52px;
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 32px;
  align-items: center;
  min-height: 260px;
}

.pd-main__banner-img {
  text-align: right;
}

.pd-main__banner-img img {
  max-width: 300px;
  max-height: 260px;
  width: 100%;
  object-fit: contain;
  border-radius: 14px;
  border: none;
  background: none;
  padding: 0;
  box-shadow: none;
}

.pd-main__banner-text .product-badge {
  display: inline-block;
  background: #CFF480;
  color: var(--pd-dark);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.pd-main__banner-text h1 {
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.pd-main__banner-text .product-tagline {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14.5px;
  line-height: 1.65;
  margin: 0;
}

/* Body */
.pd-main__body {
  padding: 44px 52px;
}

/* Section headings */
.pd-section-title {
  font-size: 19px;
  font-weight: 700;
  color: var(--pd-dark);
  padding-left: 16px;
  border-left: 4px solid #CFF480;
  margin-bottom: 18px;
  margin-top: 44px;
  line-height: 1.3;
}

.pd-section-title:first-child {
  margin-top: 0;
}

/* Description text */
.pd-desc {
  color: #555e70;
  font-size: 15px;
  line-height: 1.78;
  margin-bottom: 16px;
}

/* Highlight box */
.pd-highlight-box {
  background: linear-gradient(135deg, rgba(207, 244, 128, 0.14) 0%, rgba(207, 244, 128, 0.06) 100%);
  border-left: 4px solid #CFF480;
  border-radius: 0 8px 8px 0;
  padding: 16px 20px;
  margin: 8px 0 28px;
}

.pd-highlight-box p {
  margin: 0;
  color: var(--pd-dark);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.65;
}

/* Type badges */
.pd-type-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.pd-type-badge {
  background: rgba(207, 244, 128, 0.15);
  border: 1.5px solid #CFF480;
  color: #2e5f00;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
}

/* Feature list */
.pd-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.pd-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #444e60;
  line-height: 1.55;
}

.pd-feature-list li .pd-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  min-width: 20px;
  background: #CFF480;
  border-radius: 50%;
  margin-top: 1px;
}

.pd-feature-list li .pd-check i {
  font-size: 9px;
  color: var(--pd-dark);
}

/* Tables */
.pd-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin-bottom: 8px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #dde6f0;
}

.pd-table thead tr {
  background: var(--pd-gradient);
}

.pd-table thead th {
  padding: 13px 18px;
  text-align: left;
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #ffffff;
  border: none;
}

.pd-table thead th:first-child {
  border-left: 3px solid #CFF480;
}

.pd-table tbody tr:nth-child(even) {
  background: #f8fbf2;
}

.pd-table tbody tr:hover {
  background: rgba(207, 244, 128, 0.12);
}

.pd-table tbody td {
  padding: 13px 18px;
  color: #4a5568;
  border-bottom: 1px solid #dde6f0;
  vertical-align: top;
  line-height: 1.55;
}

.pd-table tbody tr:last-child td {
  border-bottom: none;
}

.pd-table .td-label {
  font-weight: 600;
  color: var(--pd-dark);
}

/* CTA */
.pd-cta {
  background: var(--pd-gradient);
  border-radius: 10px;
  padding: 36px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 44px;
  border-top: 3px solid #CFF480;
}

.pd-cta__text h4 {
  color: #CFF480;
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 6px;
}

.pd-cta__text p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  margin: 0;
}

.pd-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #CFF480;
  color: var(--pd-dark);
  font-size: 14px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.22s ease;
  box-shadow: 0 4px 18px rgba(207, 244, 128, 0.35);
}

.pd-cta__btn:hover {
  background: #d8ff80;
  color: var(--pd-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(207, 244, 128, 0.45);
}

/* Responsive */
@media (max-width: 1024px) {
  .product-detail-layout {
    grid-template-columns: 240px 1fr;
    gap: 20px;
  }

  .pd-main__banner {
    padding: 40px 36px 32px;
  }

  .pd-main__body {
    padding: 36px 40px;
  }
}

@media (max-width: 768px) {
  .product-detail-layout {
    grid-template-columns: 1fr;
  }

  .pd-sidebar {
    position: static;
  }

  .pd-main__banner {
    grid-template-columns: 1fr;
    padding: 28px 24px;
    min-height: auto;
  }

  .pd-main__banner-img {
    display: none;
  }

  .pd-main__banner-img img {
    max-width: 140px;
    max-height: 140px;
    padding: 10px;
  }

  .pd-main__body {
    padding: 28px 22px;
  }

  .pd-feature-list {
    grid-template-columns: 1fr;
  }

  .pd-cta {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 24px;
  }

  .pd-main__banner-text h1 {
    font-size: 24px;
  }
}

/* --- Alignment --- */
.section-title {
  margin-bottom: 3rem;
}

.section-title .main-content {
  margin-top: 0.5rem;
}

.sec-content .title {
  max-width: 36em;
}

.text-center .sec-content .title {
  margin-left: auto;
  margin-right: auto;
}

/* --- Footer / Header container --- */
.footer .container,
.header-menu-area .container {
  max-width: var(--container-max) !important;
  padding-left: var(--padding-desktop) !important;
  padding-right: var(--padding-desktop) !important;
}

@media (max-width: 1024px) {
  .footer .container,
  .header-menu-area .container {
    padding-left: var(--padding-tablet) !important;
    padding-right: var(--padding-tablet) !important;
  }
}

@media (max-width: 576px) {
  .footer .container,
  .header-menu-area .container {
    padding-left: var(--padding-mobile) !important;
    padding-right: var(--padding-mobile) !important;
  }
}
