@font-face {
  font-family: "DM Sans";
  src: url(../fonts/DMSans-VariableFont_opsz\,wght.ttf);
  font-display: swap;
}

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

body {
  font-family: 'DM Sans', sans-serif;
  background-color: #ffffff;
  color: #0E1311;
  line-height: 1.4;
  font-size: 17px;
}

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

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

.page-width {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ----- BUTTONS & UTILITIES ----- */
.btn {
  display: inline-block;
  background-color: #0E1311;
  color: #fff;
  padding: 11px 25px;
  border-radius: 50px;
  font-weight: 500;
  text-align: center;
  transition: 0.2s;
  border: none;
  cursor: pointer;
  font-size: 16px;
}

/* ----- HEADER & NAVIGATION (static tabbed blogs) ----- */
.toolbar {
  background-color: #f4f5f7;
  font-size: 14px;
  padding: 8px 0;
}

.toolbar .page-width {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.announcement-bar {
  font-weight: 500;
}
.announcement-bar a {
  text-decoration: underline;
}

.site-header {
  background-color: #b0c8e9;
  border-bottom: 1px solid #eaeef2;
}

.header-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  flex-wrap: wrap;
}

.site-header__logo img {
  max-height: 40px;
  width: auto;
}

/* ---- static navigation (blog style tabs) ---- */
.site-nav {
  background: #fff;
  border-top: 1px solid #eaeef2;
  border-bottom: 1px solid #eaeef2;
}

.site-nav .page-width {
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 12px 20px;
  flex-wrap: wrap;
}

.site-nav a {
  font-size: 18px;
  font-weight: 500;
  color: #0E1311;
}

/* product grid */
.product-grid__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin: 40px 0;
  align-items: flex-start;
}
.product-single__sticky {
  position: sticky;
  top: 10px;
}

.product__photos {
  display: flex;
  gap: 20px;
  position: relative;
}

.product__main-photos {
  flex: 1;
}

.product-slideshow img {
  width: 100%;
  border-radius: 20px;
  background: #f4f5f7;
}

/* THUMBNAIL CONTAINER WITH CUSTOM SCROLL (no visible scrollbar) */
.product__thumbs-wrapper {
  position: relative;
  width: 90px;
}
.product__thumbs {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 520px;
  overflow-y: auto;
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE/Edge */
  padding: 4px 0;
}
.product__thumbs::-webkit-scrollbar {
  display: none;
  /* Chrome/Safari */
}
.product__thumb-item {
  cursor: pointer;
  border-radius: 12px;
  transition: 0.1s;
}
.product__thumb-item img {
  border-radius: 12px;
  border: 1px solid #e2e6ea;
}
.product__thumb-item.active img {
  border: 2px solid #0E1311;
}
/* custom navigation arrows */
.thumb-nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  border: 1px solid #ddd;
  border-radius: 30px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: 0.1s;
}
.thumb-nav:hover {
  background: #f0f0f0;
}
.thumb-nav-up {
  top: -10px;
}
.thumb-nav-down {
  bottom: -10px;
}
.thumb-nav i {
  font-size: 14px;
  color: #0E1311;
}

.product-single__meta {
  padding-left: 20px;
}

.breadcrumb {
  font-size: 14px;
  color: #666;
  margin-bottom: 12px;
}

.product-single__title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 12px;
}

.product__price {
  font-size: 28px;
  font-weight: 600;
  display: block;
  margin: 15px 0;
}

.variant-wrapper {
  margin-bottom: 20px;
}

.variant__label {
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
}

select {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 30px;
  background: white;
  font-size: 16px;
}

.add-to-cart {
  width: 100%;
  margin: 10px 0 20px 0;
  background: #0E1311;
}

.sales-points {
  list-style: none;
  margin: 20px 0;
}

.sales-point {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-and-text svg {
  width: 24px;
  fill: none;
  stroke: #0E1311;
  stroke-width: 1.5;
}

.rte {
  margin-top: 20px;
  line-height: 1.5;
}

.collapsibles-wrapper {
  margin: 30px 0;
  border-top: 1px solid #eaeef2;
}

.collapsible-trigger {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-size: 18px;
  font-weight: 500;
  padding: 18px 0;
  cursor: pointer;
  border-bottom: 1px solid #eaeef2;
  display: flex;
  justify-content: space-between;
}

.collapsible-content {
  display: none;
  padding: 15px 0 25px;
}

.collapsible-content.open {
  display: block;
}

/* consultation form */
.consultation-form {
  background: #f9fafb;
  padding: 32px;
  border-radius: 24px;
  margin: 40px 0;
  scroll-margin-top: 30px;
}
.consultation-form h3 {
  font-size: 24px;
  margin-bottom: 12px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #ccd3db;
  border-radius: 40px;
  font-size: 16px;
  font-family: inherit;
}
.checkbox-group {
  margin: 16px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.checkbox-group label {
  font-size: 14px;
  font-weight: normal;
  cursor: pointer;
}
.footer {
  background: #b0c8e9;
  padding: 40px 0 20px;
  margin-top: 60px;
}
.footer__blocks {
  display: grid;
  grid-template-columns: 1fr 1fr 3fr;
  gap: 40px;
}
textarea {
  resize: none;
}
input, textarea {
  outline: none !important;
}
.footer__title {
  margin-bottom: 16px;
  font-size: 18px;
}
.footer__menu {
  list-style: none;
}
.footer__menu li {
  margin-bottom: 10px;
}
.payment-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}
@media (max-width: 768px) {
  .product-grid__container {
    grid-template-columns: 1fr;
  }
  .product-single__sticky {
    position: relative;
    top: 0;
  }
  .product-single__meta {
    padding-left: 0;
  }
    .product-single__meta ul {
      padding-left: 20px;
    }
  .product__photos {
    flex-direction: column-reverse;
  }
  .product__thumbs-wrapper {
    width: 100%;
  }
  .product__thumbs {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    overflow-x: auto;
    max-height: none;
    padding-bottom: 8px;
  }
    .product__thumb-item {
      width: 50px;
      height: auto;
    }
  .thumb-nav {
    display: none;
  }
  .header-layout {
    flex-direction: column;
    gap: 15px;
  }
  .footer__blocks {
    grid-template-columns: 1fr;
  }
}
.docs {
  padding-top: 30px;
  word-break: break-word;
}
.docs h1 {
  margin-bottom: 20px;
}
.docs p {
  margin-bottom: 16px;
}