section {
  margin: 28% 0 20%;
}
section .breadcrumb {
  margin-bottom: 20px;
  padding-bottom: 0;
  background: transparent;
}
section .breadcrumb .active {
  color: #C9A07A;
}
section a, section a:hover {
  color: rgb(122.472972973, 116.027027027, 116.027027027);
}
section .product {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
section .col-12 {
  padding: 0;
}
section .col-lg-5 {
  margin-top: 40px;
}
section .col-lg-5 div {
  display: flex;
  font-size: 19px;
}
section .col-lg-5 div + div {
  margin-top: 3%;
}
section h2 {
  color: #685844;
  display: inline-block;
  margin-bottom: 0;
  font-weight: bold;
}
section .product .big_img {
  width: 100%;
  height: 250px;
  -o-object-fit: contain;
     object-fit: contain;
}
section .product .small_img {
  display: flex;
  margin-top: 20px;
}
section .product .small_img img {
  width: 30%;
  height: 100px;
  -o-object-fit: contain;
     object-fit: contain;
  cursor: pointer;
}
section .product .small_img img + img {
  margin-left: 20px;
}
section .product p {
  display: flex;
  align-items: center;
  font-size: 19px;
}
section .film1 {
  width: 100%;
  height: 250px;
}
section .table td, section .table th {
  font-size: 16px;
  font-weight: normal;
  vertical-align: middle;
}
section p, section p:not(:last-child) {
  margin-bottom: 0;
}
section .button_box .btn {
  border: 1px solid #D9C79A;
  color: #C9A07A;
}
section .button_box .form-control {
  width: 100px;
  margin: 0 10px;
  border: 1px solid #D9C79A;
  color: #C9A07A;
  text-align: center;
  font-weight: bold;
  font-size: 18px;
}
section .btn_select:hover {
  background: #847767;
  color: #fff;
}
section .btn_select.selected {
  background-color: #847767;
  color: #fff;
  border-color: #847767;
}
section p.discount_price {
  font-size: 32px;
  font-weight: bold;
  color: #f24;
}
section .cartBtn {
  width: 150px;
  height: 45px;
  border: none;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: white;
  font-weight: 500;
  position: relative;
  background: rgb(145.6446808511, 131.8425531915, 114.8553191489);
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  overflow: hidden;
}
section .cartBtn .cart {
  z-index: 2;
}
section .cartBtn:active {
  transform: scale(0.96);
}
section .item {
  position: absolute;
  width: 12px;
  border-radius: 3px;
  content: "";
  left: 22px;
  bottom: 23.5px;
  opacity: 0;
  z-index: 1;
  fill: white;
}
section .cartBtn:hover .item {
  animation: slide-in-top 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
@keyframes slide-in-top {
  0% {
    transform: translateY(-30px);
    opacity: 1;
  }
  100% {
    transform: translateY(0) rotate(-90deg);
    opacity: 1;
  }
}
section .cartBtn:hover .cartBtn .cart {
  animation: slide-in-left 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
@keyframes slide-in-left {
  0% {
    transform: translateX(-10px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
section .button1 {
  line-height: 1;
  height: 45px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background-color: #C9A07A;
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  padding: 20px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: background-color 0.3s;
  margin-left: 5%;
  font-size: 19px;
}
section .button1:hover {
  background-color: #C9A07A;
  color: #fff;
}
section .button__icon-wrapper {
  flex-shrink: 0;
  width: 25px;
  height: 25px;
  position: relative;
  color: #C9A07A;
  background-color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  overflow: hidden;
}
section .button:hover .button__icon-wrapper {
  color: #C9A07A;
}
section .button__icon-svg--copy {
  position: absolute;
  transform: translate(-150%, 150%);
}
section .button1:hover .button__icon-svg:first-child {
  transition: transform 0.3s ease-in-out;
  transform: translate(150%, -150%);
}
section .button1:hover .button__icon-svg--copy {
  transition: transform 0.3s ease-in-out 0.1s;
  transform: translate(0);
}

section.other_product {
  margin: 5% 0 0 0;
  background: #f5f5f5;
  padding: 8% 30px;
}
section.other_product .container {
  padding: 0;
}
section.other_product .title {
  margin-bottom: 8%;
  font-weight: bold;
}
section.other_product article {
  background: #fff;
  border: 1px solid #e5e7eb;
  transition: box-shadow 0.3s;
  height: 100%;
  display: flex;
  flex-direction: column;
}
section.other_product article:hover {
  box-shadow: 0 4px 6px rgba(168, 168, 168, 0.3);
}
section.other_product article:hover h3 {
  color: #E9A319;
}
section.other_product article:hover img {
  transform: scale(1.05);
}
section.other_product article .img_box {
  width: 100%;
  height: 250px;
  overflow: hidden;
  align-self: center;
}
section.other_product article .img_box img {
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: 100%;
  transition: transform 0.3s;
}
section.other_product article h3 {
  font-size: 22px;
  transition: color 0.3s;
  margin-bottom: 2%;
  color: #C9A07A;
  transition: color 0.3s;
}
section.other_product article p {
  display: flex;
  align-items: center;
  color: #f24;
  margin-bottom: 0;
}
section.other_product article small {
  font-size: 14px;
}
section.other_product .text {
  padding: 4% 8%;
  display: flex;
  flex-direction: column;
  align-items: start;
}
section.other_product .text div {
  display: flex;
  align-items: center;
}
section.other_product .slick-list, section.other_product .slick-track {
  padding-bottom: 1%;
}
section.other_product .slick-prev,
section.other_product .slick-next {
  z-index: 2;
}
section.other_product .slick-prev:before,
section.other_product .slick-next:before {
  color: #C9A07A;
  opacity: 1;
  font-size: 40px;
}
section.other_product .slick-prev {
  left: -25px;
}
section.other_product .slick-next {
  right: -5px;
}
section.other_product .slick-dots {
  display: none;
}

@media (min-width: 700px) and (max-width: 1200px) {
  section {
    margin: 17% 0 10%;
  }
  section .col-lg-5 {
    margin-top: 0;
  }
  section .product {
    flex-direction: row;
  }
  section .product .big_img {
    width: 100%;
  }
  section .product .small_img img + img {
    margin-left: 15px;
  }
  section .button_box .form-control {
    width: 80px;
  }
  section.other_product {
    padding: 8% 15px;
    min-height: auto;
  }
  section.other_product article h3 {
    font-size: 20px;
  }
  section.other_product article .img_box {
    height: 200px;
  }
  section.other_product .title {
    margin-bottom: 3%;
  }
  section.other_product .slick-list, section.other_product .slick-track {
    width: 100% !important;
    height: 390px;
  }
  section.other_product .slick-track {
    display: flex;
    justify-content: space-between;
  }
  section.other_product .slick-slide {
    width: 220px !important;
  }
  section.other_product .slick-prev {
    left: -40px;
  }
  section.other_product .slick-next {
    right: -20px;
  }
}
@media (min-width: 1200px) {
  section {
    margin: 10% 0 3%;
  }
  section .col-12 {
    padding: 0 15px;
  }
  section .col-lg-5 {
    margin-top: 0;
  }
  section .product {
    flex-direction: row;
  }
  section .product .big_img {
    height: 350px;
  }
  section .product .small_img img {
    height: 150px;
  }
  section .product .small_img img + img {
    margin-left: 26.5px;
  }
  section .film1 {
    width: 525px;
    height: 400px;
  }
  section .btn_select {
    border: 1px solid #ccc;
    padding: 5px 10px;
    background-color: #fff;
    cursor: pointer;
  }
  section.other_product {
    padding: 2% 0;
  }
  section.other_product article h3 {
    font-size: 20px;
  }
  section.other_product .title {
    margin-bottom: 3%;
  }
  section.other_product .slick-list, section.other_product .slick-track {
    width: 100% !important;
    height: 400px;
  }
  section.other_product .slick-slide {
    width: 250px !important;
  }
  section.other_product .slick-slide + .slick-slide {
    margin-left: 1.5%;
  }
  section.other_product .slick-prev {
    left: -35px;
  }
  section.other_product .slick-next {
    right: -15px;
  }
}/*# sourceMappingURL=product.css.map */