.page-product {
  min-height: 100vh;

  .padding-right {
    padding-right: 50px;
  }
  .custom-table th,
  .product-info-container h3 {
	  text-transform:uppercase;
  }
  .product-container {
    position: relative;
    border: 1px solid var(--main-bg-color-custom);
    border-radius: 20px;
    padding: 55px;
    background-color: #fff;
  }
  .product-seal-top-right {
    position: absolute;
    top: 0;
    right: 50px;
    width: 170px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .product-image-wrapper {
    position: relative;
  }
  .product-badge-left {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 120px;
  }
  .product-badge-right {
    position: absolute;
    top: 10px;
    right: 60px;
    width: 120px;
  }
  .product-detail {  
    padding-top: 0px;
  }
  .product-detail-image {
    width: 100%;
    margin-bottom: 30px;
    padding-top: 55px;
  }
  .product-detail-subtitle,
  .product-detail-title {
    color: var(--main-bg-color-custom);
    line-height: 1.2;	
  }
  .product-detail-subtitle {
    font-size: 1.22rem;
	text-transform:uppercase;
	margin-bottom: 0;
  }
  .product-detail-title {
    font-weight: var(--font-weight-bold);
    font-size: 1.8rem;
    margin-bottom: 20px;
	margin-top: 0;
  }
  .product-info-section {
    border-top: 1px solid #707070;
    padding-top: 0px;
    padding-bottom: 20px;
  }
  .product-info-container h3 {
    color: var(--main-bg-color-custom);
    font-weight: var(--font-weight-bold);
    font-size: 1rem;
    margin-bottom: 10px;
  }
  .product-info-container p {
    margin-bottom: 0;
  }
  .flex-wrapper {
    display: flex;
  }
  .custom-table {
    width: 100%;
    border-collapse: collapse;
  }
  .custom-table th {
    font-weight: var(--font-weight-bold);
    color: var(--main-bg-color-custom);
    font-size: 1rem;
    text-align: center;
    padding: 10px;
    border: none;
  }
  .custom-table td {
    border: 1px solid #707070;
    text-align: center;
    padding: 10px;
  }
  .custom-table td:not(:last-child) {
    border-right: 1px solid #707070;
  }
  .back-link-container {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    text-align: right;
  }
  .back-link-container .back-link {
    display: inline-flex;
    align-items: center;
    color: var(--main-bg-color-custom);
    text-decoration: none;
    border-bottom: 0;
    transition: color 0.3s ease;
  }
  .back-link-container .back-text {
    margin-right: 10px;
  }
  .back-link-container .arrow-circle {
    width: 45px;
    height: 45px;
    border: 1px solid #d71c25;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--main-bg-color-custom);
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  .back-link-container .arrow-circle .arrow-left {
    display: flex;
    transform: rotate(180deg);
    transition: transform 0.3s ease;
    margin-top: 0.3em;
  }
  .back-link-container .back-link:hover .arrow-circle {
    background-color: var(--main-bg-color-custom);
    color: #fff;
  }

  /* RESPONSIVE STRUCTURE
--------------------------------------- */

  @media screen and (max-width: 1366px) {
    .padding-right {
      padding-right: 35px;
    }
    .product-container {
      border-radius: 12px;
      padding: 35px;
    }
    .product-seal-top-right {
      right: 35px;
      width: 130px;
    }
    .product-badge-left {
      width: 85px;
    }
    .product-badge-right {
      right: 45px;
      width: 85px;
    }
    .product-detail-image {
      padding-top: 30px;
    }
    .product-detail-subtitle {
      font-size: 1.11rem;
    }
    .product-detail-title {
      font-size: 1.22rem;
      margin-bottom: 15px;
    }
    .product-info-section {
      padding-top: 15px;
      padding-bottom: 15px;
    }
    .back-link-container .arrow-circle {
      width: 30px;
      height: 30px;
    }
  }

  @media screen and (max-width: 767px) {
    .padding-right {
      padding-right: 0;
    }
    .product-container {
      padding: 30px 15px;
    }
    .product-seal-top-right {
      right: 30px;
      width: 80px;
    }
    .product-badge-left {
      top: 30px;
      width: 60px;
    }
    .product-badge-right {
      top: 30px;
      right: 10px;
      width: 60px;
    }
    .product-info-container > div:first-child {
      margin-bottom: 15px;
    }
    .flex-wrapper {
      display: block;
    }
    .custom-table {
      margin-bottom: 15px;
    }
    .product-header {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .product-header > div {
      text-align: center;
    }
    .product-header .title_box {
      margin-bottom: 30px;
    }
  }
}

.show-more, .show-more2, .show-more3, .show-more4,
.hide-more, .hide-more2, .hide-more3, .hide-more4 {
	color: var(--main-bg-color-custom);
	margin-top:10px;
	cursor:pointer;
	display: block;
}

