/* Start custom CSS for html, class: .elementor-element-4dad800 */.product-detail {
  padding: 50px 20px 70px;
  font-family: Arial, Helvetica, sans-serif;
  color: #1f2933;
}

.product-detail-container {
  max-width: 1180px;
  margin: 0 auto;
}

.product-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.85fr);
  gap: 52px;
  align-items: center;
  margin-bottom: 70px;
}

.product-hero-image img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid #d9e2ec;
  border-radius: 8px;
  box-shadow: 0 16px 35px rgba(15, 23, 42, 0.12);
}

.product-eyebrow {
  margin: 0 0 10px;
  color: #1e73be;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.product-hero-content h1 {
  margin: 0 0 28px;
  color: #0f172a;
  font-size: 34px;
  line-height: 1.2;
}

.product-hero-content ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-hero-content li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 24px;
  color: #475569;
  font-size: 16px;
  line-height: 1.6;
}

.product-hero-content li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #1e73be;
}

.product-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: 24px;
  padding: 12px 24px;
  border-radius: 6px;
  background: #1e73be;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.product-button:hover {
  background: #155f9d;
  color: #ffffff;
  transform: translateY(-2px);
}

.product-tabs {
  margin-bottom: 70px;
}

.product-tabs input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.product-tab-nav {
  display: flex;
  gap: 10px;
  border-bottom: 1px solid #d9e2ec;
  margin-bottom: 34px;
}

.product-tab-nav label {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 12px 22px;
  border-radius: 6px 6px 0 0;
  color: #334155;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}

#tab-description:checked ~ .product-tab-nav label[for="tab-description"],
#tab-kit:checked ~ .product-tab-nav label[for="tab-kit"] {
  background: #1e73be;
  color: #ffffff;
}

.product-tab-panel {
  display: none;
}

#tab-description:checked ~ .product-tab-panels .product-tab-description,
#tab-kit:checked ~ .product-tab-panels .product-tab-kit {
  display: block;
}

.product-description-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 44px;
}

.product-description-grid h2 {
  margin: 0 0 14px;
  padding-bottom: 8px;
  border-bottom: 3px solid #1e73be;
  color: #0f172a;
  font-size: 21px;
  line-height: 1.35;
}

.product-description-grid p {
  margin: 0 0 28px;
  color: #475569;
  font-size: 16px;
  line-height: 1.75;
}

.product-kit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.product-kit-grid ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-kit-grid li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid #e5e7eb;
  color: #475569;
  font-size: 15px;
  line-height: 1.5;
}

.product-kit-grid strong {
  flex: 0 0 auto;
  color: #1e73be;
  font-weight: 700;
  white-space: nowrap;
}

.product-gallery {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.product-gallery img {
  display: block;
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
}

@media (max-width: 900px) {
  .product-detail {
    padding: 32px 16px 52px;
  }

  .product-hero,
  .product-description-grid,
  .product-kit-grid,
  .product-gallery {
    grid-template-columns: 1fr;
  }

  .product-hero {
    gap: 30px;
    margin-bottom: 48px;
  }

  .product-hero-content h1 {
    font-size: 28px;
  }

  .product-tab-nav {
    flex-wrap: wrap;
  }

  .product-tab-nav label {
    width: 100%;
    justify-content: center;
    border-radius: 6px;
  }

  .product-gallery img {
    height: auto;
  }
}/* End custom CSS */