.product_hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bigbox_hero {
  background-image: url("../images/products/bigbox/bigbox-hero-bg.jpg");
}

.product_hero_content {
  width: 100%;
  padding: 150px 7% 80px;
  text-align: center;
  color: #111;
}

.bigbox_hero .product_hero_content {
  padding-top: 220px;
}

.product_small {
  color:rgba(91, 100, 117, 0.788);
  font-weight: 800;
  letter-spacing: 2px;
}

.product_hero_content h1 {
  font-size: clamp(44px, 6vw, 100px);
}

.product_hero_content p {
  max-width: 850px;
  margin: 0 auto;
  font-size: 36px;
  line-height: 1.6;
}

.hero_product_image {
  display: block;
  width: min(1200px, 90%);
  margin: 5px auto 0;
  filter: drop-shadow(0 35px 55px rgba(0, 0, 0, 0.22));
}

.product_info_section {
  min-height: 100vh;
  padding: 120px 7%;
  display: flex;
  align-items: center;
  gap: 60px;
  position: relative;
  background-image: url("../images/products/bigbox/bigbox-section-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.product_text {
  width: 50%;
}

.product_text h2 {
  font-size: clamp(44px, 4vw, 62px);
  line-height: 1.08;
}

.product_text p {
  font-size: 36px;
  line-height: 1.75;
}

.feature_list {
  margin-top: 45px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.feature_list div {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 34px;
  font-weight: 700;
}

.feature_list img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.product_large_image {
  width: 50%;
  transform: translateX(-255px);
}

.product_large_image img {
  width: 160%;
  max-height: 920px;
  object-fit: contain;
}

.spec_section {
  padding: 120px 7%;
  background-color: #f7f9f7;
}

.spec_intro {
  max-width: 950px;
  margin-bottom: 60px;
}

.spec_intro h2 {
  font-size: clamp(44px, 4vw, 60px);
  line-height: 1.1;
}

.spec_intro p {
  font-size: 22px;
  line-height: 1.7;
}

.product_table {
  width: 100%;
  border-collapse: collapse;
  background-color: white;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.08);
}

.product_table th,
.product_table td {
  padding: 24px;
  text-align: left;
  border-bottom: 1px solid #e8e8e8;
  font-size: 18px;
}

.product_table th {
  background-color: rgba(91, 100, 117, 0.788);
  color: white;
}

.product_side_section {
  min-height: 110vh;
  padding: 120px 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: white;
  overflow: hidden;
}

.side_text {
  width: 100%;
  max-width: 1800px;
  margin-bottom: 60px;
  padding: 0 7%;
}

.side_text h2 {
  font-size: clamp(48px, 5vw, 80px);
  line-height: 1.08;
}

.side_text p {
  font-size: 28px;
  line-height: 1.8;
}

.side_image {
  width: 100vw;
  display: flex;
  justify-content: center;
  overflow: visible;
}

.side_image img {
  width: 115vw;
  max-width: none;
  max-height: 950px;
  object-fit: contain;
}

.product_cta {
  padding: 130px 7%;
  text-align: center;
  background-color: white;
}

.product_cta h2 {
  font-size: clamp(36px, 4vw, 62px);
}

.product_cta p {
  font-size: 23px;
  line-height: 1.7;
}

.product_cta_button {
  display: inline-block;
  margin-top: 35px;
  background-color: rgba(91, 100, 117, 0.788);
  color: white;
  text-decoration: none;
  padding: 18px 34px;
  border-radius: 50px;
  font-size: 32px;
  font-weight: 800;
}

.product_transition_image img {
  width: 100%;
  height: 720px;
  object-fit: cover;
  display: block;
}

@media (max-width: 900px) {
  .product_info_section {
    flex-direction: column;
  }

  .product_text,
  .product_large_image,
  .side_text,
  .side_image {
    width: 100%;
  }

  .product_large_image {
    transform: none;
  }

  .product_large_image img,
  .side_image img {
    width: 100%;
  }

  .feature_list {
    grid-template-columns: 1fr;
  }

  .product_table {
    display: block;
    overflow-x: auto;
  }
}