.breadcrumb_wrapper {
  background:
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("../images/breadcrumb.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  padding: 70px 0;
  color: var(--white-color);
  text-align: center;
}

.breadcrumb_wrapper__content h1 {
  text-transform: capitalize;
  font-size: 50px;
  font-weight: 600;
}

.breadcrumb_menu {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1rem;
  gap: 1rem;
}
.breadcrumb_menu a,
.breadcrumb_menu span,
.breadcrumb_menu p {
  color: var(--white-color);
  font-size: 20px;
  text-transform: capitalize;
}
.breadcrumb_menu p {
  font-weight: 600;
  color: var(--main-color);
}

/* product-flex */
.product_img {
  position: sticky;
  top: 2rem;
}
.product_img img {
  width: 100%;
  /* box-shadow: 0 0 4px rgba(0, 0, 0, 0.5); */
  border-radius: 10px;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
}

.product-info h2 {
  font-size: 25px;
  font-weight: 500;
  color: var(--main-color);
}
.product-info h3 {
  margin: 1rem 0 !important;
  font-size: 20px;
}
.product-info p {
  font-size: 18px;
}

.product-info ul {
  margin-top: 20px;
  padding-left: 20px !important;
}
.product-info ul li {
  list-style: disc !important;
  margin-bottom: 12px;
  font-size: 18px;
}
.product-info h6 {
  margin-bottom: 1rem !important;
  font-size: 18px;
  color: var(--main-color);
  margin-top: 1rem;
}

.table-container {
  max-width: 100%;
  overflow-x: auto;
}

table {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  border-collapse: collapse;
}

th,
td {
  text-align: left;
  padding: 15px;
  border: 1px solid #ddd;
}

th {
  background-color: var(--main-color);
  color: white;
}

tr:nth-child(even) {
  background-color: #f2f2f2;
}

tr:hover {
  background-color: #ddd;
}

.advantage_box {
  background-color: var(--white-color);
  height: 100%;
  overflow: hidden;
  padding: 20px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  position: relative;
  z-index: 2;
}
.advantage_box:hover {
  color: var(--white-color);
}
.global_heading {
  text-align: center;
}
.global_heading h2 {
  color: var(--main-color);
}
.global_heading p {
  margin-top: 10px;
}
.advantage_box::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  height: 50px;
  width: 50px;
  transition: 0.4s ease;
  z-index: -1;
  border-radius: 0 0 0 100px;
  right: 0;
  top: 0;
  background-color: var(--main-color);
}
.advantage_box:hover::after {
  border-radius: 0;
  height: 100%;
  width: 100%;
  transition: 0.4s ease;
}
.advantage_box:hover h4 {
  background-color: var(--white-color);
  color: var(--main-color);
  transition: 0.3s ease;
}

.advantage_content h3 {
  text-transform: capitalize;
  font-size: 20px;
  margin-top: 1rem;
  font-weight: 500;
}
.advantage_content h4 {
  height: 50px;
  width: 50px;
  border-radius: 100px;
  display: flex;
  font-size: 20px;
  justify-content: center;
  align-items: center;
  color: var(--white-color);
  background-color: var(--main-color);
}
.advantage_content p {
  margin-top: 5px;
  font-size: 16px;
}
.advantage_right {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.spec-table {
  width: 100%;
  color: var(--white-color);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.spec-header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  background: #4fb0b6;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.spec-header div {
  padding: 14px 18px;
}

.spec-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
}

.spec-row:nth-child(odd) {
  background: #243655;
}

.spec-row:nth-child(even) {
  background: #2c3f61;
}

.spec-cell {
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.spec-cell.label {
  font-weight: 600;
}

.spec-footer {
  background: #1f3f57;
  padding: 14px 18px;
  font-style: italic;
  color: #cfe9ec;
  border-top: 2px solid #4fb0b6;
}

.table--box {
  background-color: whitesmoke;
  border: 1px solid #ccc;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
}
.table--box h3,
.material_right h3 {
  text-transform: capitalize;
  font-size: 20px;
  color: var(--main-color);
  margin-bottom: 12px !important;
}
.table--box ul li {
  margin-bottom: 12px;
}
.table--box ul li i {
  color: var(--main-color);
  margin-right: 7px;
}
.material_right {
  position: sticky;
  top: 1rem;
}

@media (max-width: 1200px) {
  .product-info p,
  .product-info ul li {
    font-size: 15px;
  }
}

@media (max-width: 992px) {
  .advantage_right {
    grid-template-columns: repeat(2, 1fr);
  }
  .spec-row,
  .spec-header {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .material_right {
    margin-top: 12px;
  }
}

@media (max-width: 768px) {
  th,
  td {
    padding: 10px;
    font-size: 14px;
  }
  .breadcrumb_wrapper {
    padding: 50px 0;
  }
  .breadcrumb_wrapper__content h1 {
    font-size: 25px;
  }

  .product_img {
    display: flex;
    gap: 1rem;
  }
  .product_img img {
    width: 200px;
    height: 100px;
    object-fit: contain;
  }
  .product-info h2 {
    font-size: 20px;
  }
  .product-info h3 {
    font-size: 18px;
  }
  .product-info h6,
  .breadcrumb_menu a,
  .breadcrumb_menu span,
  .breadcrumb_menu p {
    font-size: 16px;
  }
  .breadcrumb_menu {
    margin-top: 10px;
  }
  .product-info ul li {
    margin-bottom: 10px;
  }
  .product-info ul {
    margin-top: 10px;
  }
  .product-info h6 {
    margin-bottom: 10px !important;
  }
}

@media (max-width: 480px) {
  th,
  td {
    padding: 8px;
  }
  .advantage_box::after {
    height: 40px;
    width: 40px;
  }

  table {
    font-size: 14px;
  }
  .advantage_right {
    grid-template-columns: repeat(1, 1fr);
  }
  .spec-footer {
    font-size: 12px;
    padding: 8px;
  }
  .spec-header div,
  .spec-cell {
    font-size: 15px;
    padding: 10px;
  }
}
