@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Mulish:wght@200..1000&display=swap");
:root {
  --page-bg: #F3F3F3;
  --white-color: #fff;
  --primary-color: #EF6A37;
  --pr-hover-color: #e26634;
  --dark-color: #141414;
  --grey-color: #DCE0E3;
}

.product-simple {
  margin-top: 100px;
}

ul.breadcrumb {
  padding: 10px 16px;
  list-style: none;
}

ul.breadcrumb li {
  display: inline;
  font-size: 16px;
}

ul.breadcrumb li + li:before {
  padding: 8px;
  color: var(--dark-color);
  content: "/ ";
}

ul.breadcrumb li a {
  color: var(--primary-color);
  text-decoration: none;
}

ul.breadcrumb li a:hover {
  color: var(--pr-hover-color);
  text-decoration: underline;
}

/*------- section_product -----------*/
.section_product {
  margin: 30px 0 100px;
}

.product__cart {
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: clamp(20px, 2vw, 50px);
}

.cart__image {
  min-width: 0;
}
.cart__info p {
  margin-bottom: 10px;
}
.cart__title {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 20px;
}

.cart__description p {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.cart__description h3 {
  font-weight: 800;
  margin: 20px 0;
}

.swiper {
  width: 100%;
  height: 300px;
  margin-left: auto;
  margin-right: auto;
}

.swiper-slide {
  background-size: cover;
  background-position: center;
}

.mySwiper2 {
  height: 60%;
  width: 100%;
}

.mySwiper {
  height: 20%;
  box-sizing: border-box;
  padding: 10px 0;
}

.mySwiper .swiper-slide {
  width: 25%;
  height: 100%;
  opacity: 0.4;
}

.mySwiper .swiper-slide-thumb-active {
  opacity: 1;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 15px;
}

/*------- Table -----------------------*/
.table__title {
  font-size: 20px;
  font-weight: 700;
  margin: 20px 0;
}

.table_component {
  display: block;
  overflow: auto;
  max-width: 100%;
}

.table_component table {
  height: 100%;
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  border-spacing: 1px;
  text-align: left;
}

.table_component thead tr {
  border-radius: 10px;
}

.table_component th {
  background-color: #DCE0E3;
  color: #000000;
  padding: 12px;
  font-size: 16px;
}

.table_component td {
  color: #000000;
  padding: 10px;
  font-size: 14px;
}

.table_component tr:nth-child(even) {
  background: #e9ecef;
}

/* Responsive table */
table.responsive {
  border: 1px solid #ccc;
  width: 100%;
  margin: 0;
  padding: 0;
  border-collapse: collapse;
  border-spacing: 0;
}

table.responsive tr {
  border: 1px solid #ddd;
  padding: 5px;
}

table.responsive th, table.responsive td {
  padding: 10px;
}

@media screen and (max-width: 767px) {
  table.responsive {
    border: 0;
  }
  table.responsive thead {
    display: none;
  }
  table.responsive tr {
    margin-bottom: 10px;
    display: block;
    border-bottom: 2px solid #ddd;
  }
  table.responsive td {
    display: block;
    width: 100% \9 ;
    float: left\9 ;
    text-align: right;
    border-bottom: 1px dotted #ccc;
  }
  table.responsive td:last-child {
    border-bottom: 0;
  }
  table.responsive td:before {
    content: attr(data-label);
    float: left;
    font-weight: bold;
  }
}
/*=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/==/=*/
/*================= АДАПТАЦІЯ СТИЛІВ ДЛЯ МОБІЛЬНИХ ПРИСТРОЇВ ===================================*/
/*=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/*/
@media (max-width: 959.98px) {
  .product__cart {
    grid-template-columns: 1fr;
  }
}/*# sourceMappingURL=simple-product.css.map */