
#hero-slider,
.splide__track,
.splide__list,
.splide__slide,
.slide-content {
  height: 100%;
  border-radius: 20px;
  pointer-events: auto !important;
}

.slide-content {
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: left;
    align-items: end;
    position: relative;
    overflow: hidden;
    border-radius: 0;
    /* Remove z-index from here or set it higher */
    pointer-events: auto !important;
    z-index: 1;
    padding: 20px;
  }
  
.slide-inner-content
{
   background-color: var(--gray-100);
   backdrop-filter: blur(5px);
   border: 0.5px solid var(--gray-200);
   padding: 20px;
   border-radius: 24px;
   max-width: 50vw;
   color: var(--gray-100);
}
.slide-inner-content h2
{
  font-size: 2rem;
  font-family: hel-bold;
  margin: 0;
  color: var(--gray-900); 
  
}
.slide-inner-content p
{
  margin: 20px 0 20px;
  color: var(--gray-600);
}

.custom-pagination
{
  display: flex;
  gap: 5px;
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 95;
}

.custom-pagination .pagination-item
{
  width: 40px;
  height: 40px;
  color: var(--accent_1-400);
  line-height: 1;
  background-color: var(--accent_1-100);
  display: block;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
  border: 0.5px solid var(--accent_1-200);
  backdrop-filter: blur(5px);
  transition: 0.3s;
  pointer-events: auto;
}
.pagination-item *
{
  pointer-events: none;
}
.custom-pagination .pagination-item.active
{
  background-color: var(--accent_1-200);
}

.b-about
{
  padding: 80px 100px;
  background-color: var(--gray-100);
}
.b-about h1
{
    color: var(--accent_1-600);
    font-size: 40px;
    font-weight: 600;
    margin: 0;
}
.b-about .stats-number
{
  display: flex;
  justify-content: center;
  padding: 100px 0 0;
}
.b-about .stat-box h3
{
  color: var(--gray-900);
}
.b-about .stat-box h3 span
{
  color: var(--accent_1-600);
  font-family: hel-bold;
}
.b-about .stat-box
{ 
  text-align: center;
  width: 25%;
}
.b-about .stat-box:not(:last-child)
{
  border-right: 1px solid var(--gray-400);
}
.stat-box .counter-wrap
{
  font-weight:800;
  font-size: 50px;
  margin: 0 0 10px 0;
  line-height: 1;
}
.stat-box p
{
  font-size: 18px;
  color: var(--gray-600);
}

.f-products
{
  padding: 80px 100px;
  text-align: center;
}
.f-products > p
{
  margin: 10px 0 0;
  line-height: 1;
  color: var(--gray-600);
}
.products-wrap
{
  padding-top: 40px;
  width: 100%;
  column-count: 4;
  grid-gap: 30px;
  justify-content: center;
}
.product-card
{
  border: 1px solid var(--gray-300);
  width: 100%;
  padding: 15px;
  border-radius: 24px;
  margin-bottom: 20px;
  page-break-inside: avoid;
}
.product-card img
{
  width: 100%;
  border-radius: 15px;
  margin-bottom: 10px;
  border: 1px solid var(--gray-300);
}
.product-card .product-info
{
  display: flex;
  flex-direction: column-reverse;
  justify-content: space-between;
  color: var(--secondary);  
}
.product-card h4
{
  font-size: 18px;
  margin: 0;
  color: var(--gray-900);
}
.product-card span
{
  font-size: 13px;
  margin: 0;
  font-weight: 400;
  color: var(--gray-500);
}
.product-card .buttons
{
  margin: 10px;
}
.product-card .buttons a
{
  width: 100%;
}


.categories {
  position: relative;
  height: 420vh;
  text-align: center;
}
.categories h2
{
  padding: 60px 100px 0;
  color: var(--accent_1-600);
}
.categories > p
{
  padding: 0 100px;
  margin-bottom: 50px;
  color: var(--gray-600);
}
.cat-wrap {
  border-radius: 30px;
  overflow: hidden;
  width: calc(100% - 100px);
  margin: auto;
  height: calc(100vh - 150px);
  background-size: cover;
  /* background-attachment: fixed; */
  background-position: center center;
  display: flex;
  justify-content: center;
  align-items: center;
  position: sticky;
  top: 100px;
  margin-bottom: 100px;
}

.cat-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.663);
  z-index: 0;
  border-radius: 30px;
}

.cat-content-wrap {
  text-align: center;
  position: relative;
  z-index: 10;
}

.cat-content-wrap h3 {
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: #ffffff;
}

.cat-content-wrap p {
  width: 500px;
  color: #ffffff;
}
.cat-content-wrap a
{
  margin: 10px auto;
}
.factory
{
  overflow: hidden;
  padding: 50px;
  text-align: center;
}
.fac-headers
{
  padding: 0 50px;
  margin-bottom: 50px;
}
.fac-headers p
{
  color: var(--gray-600);
}
.slide-images
{
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.factory img
{
  width: auto;
  height: 300px;
  border-radius: 20px;
  cursor: pointer;
  transition: opacity 0.2s;
}
.factory img:hover
{
  opacity: 0.85;
}
.si-row
{
  display: flex;
  position: relative;
  gap: 10px;
  width: max-content;
  will-change: transform;
}

/* Lightbox */
.lightbox-overlay
{
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0, 0, 0, 0.88);
  align-items: center;
  justify-content: center;
}
.lightbox-overlay.is-active
{
  display: flex;
}
.lightbox-img
{
  max-width: 90vw;
  max-height: 90vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  display: block;
  cursor: default;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
}
.lightbox-close
{
  position: fixed;
  top: 24px;
  right: 28px;
  background: rgba(255,255,255,0.12);
  border: none;
  color: #fff;
  font-size: 22px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}
.lightbox-close:hover
{
  background: rgba(255,255,255,0.24);
}

.clients
{
  padding: 60px 100px;
  text-align: center;
}
.logos-grid
{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  width: 100%;
  gap: 60px 100px;
}
.logos-grid img
{
  width: 100%;
  object-fit: contain;
}
.logos-grid img.small
{
  max-height: 150px;
}

.clients-header p
{
  margin-bottom: 50px;
  color: var(--gray-600);
}

#hero-slider {
    height: calc(100dvh - var(--nav-height) - 30px) !important;
    margin: calc(var(--nav-height) + 15px) 15px 15px 15px;
}


.cat-content-wrap p
{
  margin:auto;
}

/* ================================================================
   ABOUT BRAND SECTION
================================================================ */
.about-brand
{
  padding: 80px 100px;
  background-color: var(--gray-100);
}
.about-brand-inner
{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  max-width: 1300px;
  margin: auto;
}
.about-brand-heading
{
  font-family: hel-bold;
  font-size: 38px;
  line-height: 1.1;
  color: var(--accent_1-600);
  margin: 16px 0 20px;
}
.about-brand-text p
{
  font-size: 16px;
  line-height: 1.75;
  color: var(--gray-600);
  margin-bottom: 18px;
}
.about-brand-text .primary-button
{
  margin-top: 8px;
}
.about-brand-highlights
{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.about-highlight-card
{
  background-color: var(--gray-200);
  border: 1px solid var(--gray-300);
  border-radius: 24px;
  padding: 24px 20px;
}
.about-highlight-card i
{
  font-size: 28px;
  color: var(--accent_1-600);
  display: block;
  margin-bottom: 12px;
}
.about-highlight-card h3
{
  font-family: hel-bold;
  font-size: 15px;
  color: var(--gray-900);
  margin-bottom: 8px;
}
.about-highlight-card p
{
  font-size: 13px;
  line-height: 1.6;
  color: var(--gray-600);
  margin: 0;
}

/* ================================================================
   CONTACT SECTION
================================================================ */
.contact
{
  padding: 80px 100px;
  background-color: var(--gray-200);
}
.contact-inner
{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  max-width: 1300px;
  margin: auto;
}
.contact-label
{
  display: block;
  font-family: hel-med;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray-600);
  margin-bottom: 16px;
}
.contact-heading
{
  font-family: hel-bold;
  font-size: 52px;
  line-height: 1.05;
  color: var(--accent_1-600);
  margin-bottom: 20px;
}
.contact-sub
{
  font-size: 16px;
  line-height: 1.65;
  color: var(--gray-600);
  max-width: 420px;
  margin-bottom: 40px;
}
.contact-other-label
{
  font-family: hel-med;
  font-size: 14px;
  color: var(--gray-700);
  margin-bottom: 16px;
}
.contact-details
{
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-detail-item
{
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--gray-700);
}

.contact-detail-item a
{
  color: var(--gray-700);
  text-decoration: none;
}

.contact-detail-item i
{
  font-size: 20px;
  color: var(--gray-500);
  width: 22px;
  flex-shrink: 0;
}
.contact-map
{
  margin-top: 28px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--gray-300);
}
.contact-map iframe
{
  display: block;
}
.contact-card
{
  background-color: var(--gray-100);
  border-radius: 40px;
  padding: 40px;
  border: 1px solid var(--gray-300);
}
.contact-form .form-group
{
  margin-bottom: 20px;
}
.contact-form .form-row
{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}
.contact-form .form-row .form-group
{
  margin-bottom: 0;
}
.contact-form label
{
  display: block;
  font-family: hel-med;
  font-size: 14px;
  color: var(--gray-700);
  margin-bottom: 8px;
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea
{
  width: 100%;
  padding: 12px 18px;
  border: 1px solid var(--gray-300);
  border-radius: 30px;
  background-color: var(--gray-200);
  font-family: hel-reg;
  font-size: 15px;
  color: var(--gray-900);
  outline: none;
  transition: border-color 0.2s;
}
.contact-form textarea
{
  border-radius: 30px;
  resize: vertical;
  min-height: 120px;
}
.contact-form input:focus,
.contact-form textarea:focus
{
  border-color: var(--accent_1);
}
.contact-form input.field-error,
.contact-form textarea.field-error
{
  border-color: #d94f4f;
  background-color: #fff5f5;
}
/* Tom Select — match form pill style */
.contact-form .ts-wrapper .ts-control
{
  width: 100%;
  padding: 10px 18px;
  border: 1px solid var(--gray-300);
  border-radius: 30px;
  background-color: #fff;
  font-family: hel-med, sans-serif;
  font-size: 14px;
  color: var(--gray-900);
  box-shadow: none;
  outline: none;
  min-height: unset;
  cursor: pointer;
}
.contact-form .ts-wrapper.focus .ts-control
{
  border-color: var(--accent_1);
  box-shadow: none;
}
.contact-form .ts-wrapper .ts-control input
{
  font-family: inherit;
  font-size: 14px;
  color: var(--gray-900);
}
.contact-form .ts-dropdown
{
  border: 1px solid var(--gray-300);
  border-radius: 16px;
  overflow: hidden;
  margin-top: 6px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  font-family: hel-med, sans-serif;
  font-size: 14px;
}
.contact-form .ts-dropdown .ts-dropdown-content
{
  max-height: 220px;
}
.contact-form .ts-dropdown .option
{
  padding: 10px 18px;
  color: var(--gray-800);
}
.contact-form .ts-dropdown .option.active,
.contact-form .ts-dropdown .option:hover
{
  background-color: var(--gray-100);
  color: var(--accent_1-600);
}
.contact-form .ts-dropdown .option.selected
{
  background-color: var(--accent_1-100);
  color: var(--accent_1-600);
}

.contact-form .checkboxes
{
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 4px 0;
}
.checkbox-item
{
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 15px;
  color: var(--gray-700);
  font-family: hel-reg;
}
.checkbox-item input[type="checkbox"]
{
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: var(--accent_1);
  cursor: pointer;
}
.contact-submit
{
  width: 100%;
  padding: 12px 20px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  font-size: 15px;
  margin-top: 8px;
}

/* ================================================================
   FOOTER
================================================================ */
.footer
{
  background-color: var(--gray-900);
  padding: 80px 100px 40px;
}
.footer .links-row
{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}
.footer .links-col h4
{
  font-family: hel-bold;
  font-size: 14px;
  color: var(--gray-100);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.footer .links-col a
{
  display: block;
  font-size: 14px;
  color: var(--gray-500);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.2s;
  font-family: hel-reg;
}
.footer .links-col a:hover
{
  color: var(--gray-300);
}
.footer .credits
{
  border-top: 1px solid var(--gray-800);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer .credits .cc span
{
  font-size: 13px;
  color: var(--gray-600);
  font-family: hel-reg;
}
.footer .credits .cc a
{
  color: var(--gray-500);
  text-decoration: none;
  transition: color 0.2s;
}
.footer .credits .cc a:hover
{
  color: var(--gray-300);
}

/* ================================================================
   RESPONSIVE — 1024px (tablet)
================================================================ */
@media (max-width: 1024px)
{
  .b-about
  {
    padding: 60px 50px;
  }
  .b-about h1
  {
    font-size: 32px;
  }
  .heading-normal
  {
    font-size: 36px;
  }
  .categories h2,
  .categories > p
  {
    padding-left: 50px;
    padding-right: 50px;
  }
  .f-products
  {
    padding: 60px 50px;
  }
  .products-wrap
  {
    column-count:2;
  }
  .categories
  {
    height: auto;
  }
  .cat-wrap
  {
    position: relative;
    top: unset;
    margin-bottom: 20px;
    height: 60vw;
    width: calc(100% - 60px);
  }
  .factory
  {
    padding: 40px 30px;
  }
  .about-brand
  {
    padding: 60px 50px;
  }
  .about-brand-inner
  {
    gap: 50px;
  }
  .about-brand-heading
  {
    font-size: 30px;
  }
  .clients
  {
    padding: 40px 50px;
  }
  .contact
  {
    padding: 60px 60px;
  }
  .contact-heading
  {
    font-size: 40px;
  }
  .footer
  {
    padding: 60px 60px 30px;
  }
  .footer .links-row
  {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ================================================================
   RESPONSIVE — 768px (mobile)
================================================================ */
@media (max-width: 768px)
{
  /* slider */
  .slide-inner-content
  {
    min-width: 100%;
    padding: 22px;
    margin-bottom: 50px;
    border-radius: 25px;
  }
  .slide-inner-content h2
  {
    font-size: 20px;
  }
  .slide-inner-content p
  {
    font-size: 14px;
  }
  .custom-pagination
  {
    right: 0;
    bottom: 0;
    padding: 10px 20px;
    width: 100%;
    justify-content: center;
  }
  .custom-pagination .pagination-item
  {
    width: 50px;
    height: 40px;
  }
  .slide-content
  {
    padding: 10px;
  }
  #hero-slider,
  .splide__track,
  .splide__list,
  .splide__slide,
  .slide-content
  {
    border-radius: 30px;
  }

  /* about */
  .b-about
  {
    padding: 50px 24px;
  }
  .b-about h1
  {
    font-size: 22px;
  }
  .b-about .stats-number
  {
    flex-wrap: wrap;
    padding: 50px 0 0;
  }
  .b-about .stat-box
  {
    width: 50%;
    padding: 20px 0;
  }
  .b-about .stat-box:not(:last-child)
  {
    border-right: none;
  }
  .b-about .stat-box:nth-child(odd)
  {
    border-right: 1px solid var(--gray-400);
  }
  .b-about .stat-box:nth-child(1),
  .b-about .stat-box:nth-child(2)
  {
    border-bottom: 1px solid var(--gray-400);
  }

  /* headings */
  .heading-normal
  {
    font-size: 28px;
  }

  /* categories */
  .categories
  {
    height: auto;
  }
  .categories h2,
  .categories > p
  {
    padding-left: 24px;
    padding-right: 24px;
  }
  .cat-wrap
  {
    position: relative;
    top: unset;
    width: calc(100% - 32px);
    height: 70vw;
    margin-bottom: 16px;
    border-radius: 20px;
  }
  .cat-content-wrap p
  {
    width: auto;
    max-width: 90%;
  }

  /* products */
  .f-products
  {
    padding: 50px 24px;
  }
  .products-wrap
  {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 16px;
  }

  /* factory */
  .factory
  {
    display: none;
  }

  /* clients */
  .clients
  {
    padding: 40px 24px;
  }
  .logos-grid
  {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 40px;
  }

  /* about brand */
  .about-brand
  {
    padding: 50px 24px;
  }
  .about-brand-inner
  {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .about-brand-heading
  {
    font-size: 26px;
  }
  .about-brand-highlights
  {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  /* contact */
  .contact
  {
    padding: 60px 24px;
  }
  .contact-inner
  {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-heading
  {
    font-size: 32px;
  }
  .contact-card
  {
    padding: 28px 20px;
  }
  .contact-form .form-row
  {
    grid-template-columns: 1fr;
  }

  /* footer */
  .footer
  {
    padding: 50px 24px 30px;
  }
  .footer .links-row
  {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .footer .credits
  {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

/* ================================================================
   RESPONSIVE — 480px (small mobile)
================================================================ */
@media (max-width: 480px)
{
  .products-wrap
  {
    grid-template-columns: repeat(1, 1fr);
  }
  .footer .links-row
  {
    grid-template-columns: 1fr;
  }
}

