* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #ffffff;
  color: #000000;
  line-height: 1.5;
  font-weight: 500;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 24px;
}

h1,
h2,
h3,
.hero-title,
.product-title {
  font-family: 'new-kansas', 'Inter', sans-serif;
  font-weight: 600;
  letter-spacing: 0.25px;
}

h1 {
  font-size: 28px;
}

@media (min-width: 801px) {
  h1 {
    font-size: 32px;
  }
}

.btn {
  display: inline-block;
  background-color: #383736;
  border: 1px solid #383736;
  color: #000000;
  padding: 12px 40px;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 45px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
  letter-spacing: 0.5px;
}

.btn-primary {
  background-color: #93E5E1;
  border-color: #93E5E1;
  color: #000;
}

.btn-primary:hover {
  background-color: #0BBDCA;
  border-color: #0BBDCA;
  color: #000;
  box-shadow: 3px 6px 12px rgba(0, 0, 0, 0.2);
}

.header {
  background: white;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

.logo img {
  max-height: 40px;
  width: auto;
}

.nav-menu {
  display: flex;
  gap: 24px;
  list-style: none;
}

.nav-menu a {
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  padding: 8px 0;
}

.nav-menu a:hover {
  text-decoration: underline;
  text-decoration-color: #0BBDCA;
  text-underline-offset: 5px;
}

.promo-bar {
  background-color: #02656E;
  color: #FDED98;
  text-align: center;
  padding: 10px 16px;
  font-size: 0.875rem;
  font-weight: 600;
  display: flex;
  justify-content: center;
  gap: 10px 40px;
  flex-wrap: wrap;
}

.promo-bar span {
  font-size: 0.875rem;
}

@media (min-width: 801px) {
  .promo-bar {
    font-size: 1rem;
    gap: 64px;
  }
}

.breadcrumbs {
  font-size: 0.875rem;
  margin: 20px 0;
  text-align: left;
}

.breadcrumbs span {
  color: #726e6e;
}

.breadcrumbs span:not(:last-child):after {
  content: "/";
  margin: 0 8px;
}

.product-view {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: flex-start;
  gap: 32px;
  margin: 24px 0 48px;
}
.product-gallery {
  position: sticky;
  top: 10px;
}

.main-image {
  border: 1px solid #ccc;
  border-radius: 12px;
  padding: 8px;
  background: #fff;
  text-align: center;
}

.main-image img {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.thumb-grid {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.thumb {
  width: 80px;
  border: 1px solid #ccc;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.2s;
}

.thumb.active {
  border-color: #02656E;
  border-width: 2px;
}

.product-sku {
  color: #726e6e;
  font-size: 0.9rem;
  margin: 8px 0;
}

.product-price {
  font-size: 2rem;
  font-weight: 700;
  color: #02656E;
  margin: 16px 0;
}

.stock-status {
  color: #ad0000;
  font-weight: 600;
  margin: 8px 0;
}

.consult-form {
  background: #F4F1F2;
  padding: 24px;
  border-radius: 20px;
  margin: 24px 0;
}

.consult-form h3 {
  font-family: 'new-kansas', sans-serif;
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: #02656E;
}

.consult-form input,
.consult-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 14px;
  border: 1px solid #ccc;
  border-radius: 12px;
  font-family: inherit;
}

.checkbox-group {
  margin: 12px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
}

.checkbox-group input {
  width: 18px;
  height: 18px;
  margin: 0;
}

.send-btn {
  width: 100%;
  background: #93E5E1;
  border: none;
  margin-top: 8px;
}

.desc-tabs {
  margin-top: 40px;
  border-top: 1px solid #d3d3d3;
}

.tab-title {
  font-size: 1.2rem;
  font-weight: 700;
  padding: 16px 0;
  border-bottom: 1px solid #d3d3d3;
  cursor: pointer;
  position: relative;
}

.tab-title:after {
  content: "＋";
  position: absolute;
  right: 0;
  top: 16px;
}

.tab-title.open:after {
  content: "−";
}

.tab-content {
  display: none;
  padding: 20px 0;
  line-height: 1.6;
}

.tab-content.open {
  display: block;
}

.three-policies {
  background: #93E5E1;
  color: #02656E;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 40px;
  padding: 24px 16px;
  margin: 40px 0;
  text-align: center;
  font-weight: 600;
}

.feature-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  margin: 48px 0;
  text-align: center;
}

.feature-icons img {
  max-width: 80px;
  margin-bottom: 12px;
}

.feature-item {
  flex: 1;
  min-width: 140px;
}

.footer {
  background: #F4F1F2;
  padding: 40px 0;
  margin-top: 60px;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.footer-col ul {
  list-style: none;
}
input,
textarea {
  outline: none;
}
.footer-col h4 {
  margin-bottom: 16px;
}

.footer-col li {
  margin-bottom: 8px;
}

.footer-col a {
  text-decoration: none;
  font-weight: 500;
}

.footer-col a:hover {
  text-decoration: underline;
}

.copyright {
  text-align: center;
  margin-top: 40px;
  font-size: 0.8rem;
  border-top: 1px solid #ccc;
  padding-top: 24px;
}

@media (max-width: 760px) {
  .nav-menu {
    display: none;
  }

  .header-flex {
    justify-content: space-between;
  }

  .product-view {
    grid-template-columns: 1fr;
  }
  .product-gallery {
    position: relative;
    top: 0;
  }
}
.docs {
  padding: 50px 0 20px;
  word-break: break-word;
}
.docs h1 {
  margin-bottom: 20px;
}
.docs p {
  margin-bottom: 16px;
}