/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.product_section {
  font-family: 'Poppins', sans-serif;
}
/* ===== MAIN SECTION ===== */
.product_section {
  background: #000;
  color: #fff;
  padding: 120px 0 80px;
}

/* ===== TOP HEADING ===== */
.products_base {
  text-align: center;
  margin-bottom: 60px;
}

.our_products {
  font-size: 20px;
  opacity: 0.8;
  margin-bottom: 10px;
}

.product_names {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: 1px;
}

.product_names a {
  color: #fff;
  text-decoration: none;
}

.spacer_heading {
  margin: 0 20px;
  color: #888;
}

/* ===== MAIN LAYOUT ===== */
.product_detail {
  display: flex;
  flex-direction: column;
  gap: 100px;
}

/* ===== PRODUCT ROW ===== */
.product-showcase {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}

/* ===== REVERSE SECOND SECTION ===== */
.product-showcase.reverse {
  flex-direction: row-reverse;
}

/* ===== IMAGE SIDE ===== */
.product-image {
  width: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image img {
  width: 100%;
  max-height: 320px;
  object-fit: contain;
  border-radius: 12px;
}

/* ===== BUTTON ON IMAGE ===== */
.view-button {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #1e40ff;
  color: #fff;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.view-button:hover {
  background: #0f2edb;
}

/* ===== CONTENT SIDE ===== */
.product-content {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-content h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

.product-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #ddd;
  margin-bottom: 25px;
}

/* ===== FEATURES ===== */
.feature_heading {
  font-size: 22px;
  margin-bottom: 20px;
}

/* GRID FEATURES */
.product-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.product-features-data {
  background: #2a2a2a;
  padding: 14px 10px;
  border-radius: 10px;
  font-size: 14px;
  text-align: center;
  transition: 0.3s ease;
}

.product-features-data:hover {
  background: #3a3a3a;
}

/* ===== PROMOTION SECTION ===== */
.blog_page_promotion {
  margin-top: 100px;
  background: #111;
  border-radius: 16px;
  padding: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.blog_page_promotion_left {
  width: 50%;
}

.blog_page_promotion_text {
  font-size: 22px;
  margin-bottom: 20px;
}

.btn-get-started {
  background: #ffb300;
  color: #000;
  padding: 12px 24px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  display: inline-block;
}

.blog_page_promotion_right {
  width: 40%;
}

.blog_page_promotion_image {
  width: 100%;
}

/* ========================= */
/* ===== RESPONSIVE ===== */
/* ========================= */

/* ===== TABLET ===== */
@media (max-width: 992px) {
  .product-showcase {
    gap: 40px;
  }

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

  .product_names {
    font-size: 40px;
  }
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {

  .product_section {
    padding: 80px 20px;
  }

  .product_names {
    font-size: 32px;
  }

  .product-showcase {
    flex-direction: column;
    gap: 30px;
  }

  .product-showcase.reverse {
    flex-direction: column;
  }

  .product-image,
  .product-content {
    width: 100%;
  }

  .product-content {
    text-align: center;
  }

  .product-features {
    grid-template-columns: repeat(2, 1fr);
  }

  .view-button {
    left: 50%;
  }

  .blog_page_promotion {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .blog_page_promotion_left,
  .blog_page_promotion_right {
    width: 100%;
  }
}

/* ===== SMALL MOBILE ===== */
@media (max-width: 480px) {

  .product_names {
    font-size: 26px;
  }

  .product-content h2 {
    font-size: 24px;
  }

  .product-content p {
    font-size: 14px;
  }

  .product-features {
    grid-template-columns: 1fr;
  }

  .product-features-data {
    font-size: 13px;
    padding: 10px;
  }

  .view-button {
    padding: 10px 20px;
    font-size: 14px;
  }
}