.product-div {
  display: flex;
  align-items: center;
  column-gap: 4rem;
  max-width: 80%;
  margin: 0 auto;
}
.product-div .product-div__content {
}
.product-div .product-div__content .product-title {
  line-height: 50px;
  color: #1f234c;
  margin-top: 10px;
  margin-bottom: 20px;
  padding-left: 5px;
  padding-right: 5px;
  font-family: PT Serif, serif;
  font-size: 32px;
  font-weight: 400;
  display: flex;
  text-align: left;
  justify-content: flex-start;
  align-items: center;
}
.product-div .product-div__content .product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 2px solid black;
  border-bottom: 2px solid black;
}
.product-div .product-div__content .product-meta .product-sku,
.product-div .product-div__content .product-meta .product-material {
    font-family: Montserrat, sans-serif;
  opacity: 1;
  align-items: center;
  margin: 0 0 15px;
  padding-top: 0;
  font-weight: 400;
  line-height: 20px;
  color: #1f1a1a;
  text-align: left;
  justify-content: flex-start;
  font-size: 14px;
  display: block;
}
.back-button {
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: #1a1b1f;
  border-radius: 8px;
  padding: 12px 25px;
  font-size: 12px;
  line-height: 20px;
  text-decoration: none;
  display: inline-block;
  margin: 1rem 0 1rem 2rem;
  transition: background-color 0.4s, opacity 0.4s, color 0.4s;
}
.back-button:hover {
    background-color: #444;
}
.product-div .product-div__content .product-data {
}
.product-div .product-div__content .product-data li {
  margin: 0.8rem 0;
    font-family: Montserrat, sans-serif;
  opacity: 1;
  align-items: center;
  margin: 0 0 15px;
  padding-top: 0;
  font-weight: 400;
  line-height: 20px;
  color: #1f1a1a;
  text-align: left;
  justify-content: flex-start;
  font-size: 14px;
  display: block;
}
.product-detail-section {
  padding: 1rem;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  background: #f0f0f0;
  margin-top: 4rem;
}
.product-detail-section .product-detail-container {
  max-width: 80%;
}
.product-div .zoom-box {
  position: relative;
  overflow: hidden;
  width: 22rem;
  height: 22rem;
  border-radius: 8px;
}

.product-div .zoom-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.2s ease; /* smooth zoom on mousemove */
}

.product-detail-section .accordion {
  background-color: #eee;
  color: #444;
  cursor: pointer;
  padding: 18px;
  width: 100%;
 font-family: Montserrat, sans-serif;
  box-sizing: border-box;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 500;
  line-height: 20px;
  opacity: 0.6;
  color: #000;
}

.product-detail-section .active,
.product-detail-section .accordion:hover {
  background-color: #ccc;
}

.product-detail-section .accordion:after {
  content: "\002B";
  color: #777;
  font-weight: bold;
  float: right;
  margin-left: 5px;
}

.product-detail-section .active:after {
  content: "\2212";
}

.product-detail-section .panel {
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out, padding 0.2s ease-out;
  padding: 0 18px;
    font-family: Montserrat, sans-serif;
  opacity: 1;
  align-items: center;
  margin: 0 0 15px;
  padding-top: 0;
  font-weight: 400;
  line-height: 20px;
  color: #1f1a1a;
  text-align: left;
  justify-content: flex-start;
  font-size: 14px;
  display: block;
}
.product-detail-section .panel.open {
  padding: 18px !important;
}
@media (max-width: 768px) {
  .product-div {
    flex-direction: column;
    align-items: center;
    max-width: 100%;
    padding: 1rem;
  }
  .product-detail-section {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f0f0f0;
    margin-top: 2rem;
  }
  .product-detail-section .product-detail-container {
    max-width: 100%;
  }
}
