/*product-detail*/
.detail-product {
    padding-top: 60px;
}

.detail-product .container {
    display: flex;
    flex-wrap: wrap;
}

.product-meta p {
    font-size: 14px;
    margin: 4px 0;
    color: var(--text-light-color);
}

.product-meta strong {
    color: var(--black-color);
}

.product-short-desc p {
    font-size: 15px;
    margin: 12px 0;
    color: var(--text-color);
    line-height: 1.5;
}

.in-stock {
    color: green;
    font-weight: 600;
}

.detail-product .product-silder {
    max-width: 500px;
width:100%;
    margin-right: 47px;
    text-align: center;
}
.detail-product .product-info {
}
.detail-product .product-silder img {
    max-width: 100%;
    object-fit: cover;
    aspect-ratio: 1 / 1;
}

.detail-product .product-gallery-slider {
    margin-bottom: 14px;
    border: 1px solid #707070;
}

.detail-product .product-gallery-slider button {
    display: none !important;
}

.detail-product .product-thumb-slider {
    margin: 0 -9px 14px;
    padding: 0 30px;
  }
  .detail-product .product-thumb-slider .slick-track{
width: 100%!important;
}
  
  .product-gallery-slider .slick-track{
    display: block;
  }
  .product-thumb-slider .slick-track{
    display: flex;
    scrollbar-width: thin;            
    scrollbar-color: #999 transparent;
    gap: 10px;
}

.product-thumb-slider .click-pre {
    left: 12px;
}
.detail-product .product-thumb-slider img {
  cursor: pointer;
}
.product-thumb-slider .click-pre:hover,
.product-thumb-slider .click-next:hover {
    opacity: 0.5;
}

.product-thumb-slider .click-pre:before {
    content: "";
    background: url(../images/previous.png);
    width: 24px;
    height: 24px;
    background-size: contain;
    background-repeat: no-repeat;
    display: inherit;
}

.product-thumb-slider .click-next {
    right: 12px;
}

.product-thumb-slider .click-next:before {
    content: "";
    background: url(../images/next.png);
    width: 24px;
    height: 24px;
    background-size: contain;
    background-repeat: no-repeat;
    display: inherit;
}

.detail-product .view-full {
    display: inline-block;
    font-size: 14px;
    line-height: 16.5px;
    text-decoration: underline;
    color: var(--text-color)
}

.detail-product .product-info {
    width: calc(100% - 585px);
    padding-top: 10px;
}

.detail-product .product-info h1 {
    font-size: 24px;
    line-height: 24px;
    margin-bottom: 8px;
    font-weight: bold;
}

.detail-product .product-sub-name,
.detail-product .product-point {
    font-weight: 300px;
    color: #2B2B2B;
    font-size: 13px;
    line-height: 17px;
}


.detail-product .add-cart {
    display: flex;
    margin-top: 20px;

    flex-direction: column;
}
.add-cart .btn-whatsapp {
       max-width: fit-content;
width:100%;
}
.detail-product .add-cart .icon img {
	width: 23px;
}
/* detai product */
/* Tabs container */
.other-product {
    padding: 30px 0;
}
.product-tabs {
    padding-top: 20px;
    width: 100%;
  }
  
  /* Tab navigation */
  .tab-nav {
    display: flex;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
  
    justify-content: center;
  }
  
  .tab-nav li {
    padding: 10px 20px;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    font-weight: 500;
    color: var(--text-light-color);
    transition: all 0.3s ease;
  }
  
  .tab-nav li:hover {
    color: var(--black-color);
  }
  
  .tab-nav li.active {
    border-color: var(--black-color);
    color: var(--black-color);
  }
  .row-2col {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
  }
  
  .row-2col > div {
    flex: 1;
    min-width: 200px;
  }
  
  .review-form label {
    font-weight: 500;
    font-size: 14px;
    display: block;
    margin-bottom: 5px;
  }
  
  /* Tab content */
  .tab-content {
    font-size: 15px;
    line-height: 1.6;
    color: #333;
  }
  
  .tab-pane {
    display: none;
  }
  
  .tab-pane.active {
    display: block;
  }
  
  /* Reviews */
  .review-item {
    border-bottom: 1px solid #eee;
    padding: 10px 0;
  }
  .review-item p {
    margin-bottom: 10px;
  }
  .review-item:last-child {
    border-bottom: none;
  }
  
  .review-item strong {
    font-weight: 600;
  }
  
  .stars {
    color: #f5a623;
    font-size: 18px;
    margin: 5px 0;
  }
  
  /* Form đánh giá */
  .review-form {
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
  }
  
  .review-form h4 {
    font-size: 18px;
    margin-bottom: 15px;
  }
  
  .review-form input,
  .review-form textarea {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    resize: vertical;
  }
  
  .review-form textarea {
    height: 100px;
  }
  
  .review-form button {
    padding: 10px 20px;
    background-color: var(--black-color);
    color: #fff;
    border: none;
    font-size: 14px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  .review-form button:hover {
    background-color: #444;
  }
  
  /* Rating stars */
  .star-rating {
    font-size: 24px;
    margin-bottom: 10px;
    color: #ccc;
  }
  
  .star-rating .star {
    cursor: pointer;
    transition: color 0.2s ease;
  }
  
  .star-rating .star.active {
    color: #f5a623;
  }
  
  /* Responsive for tablet & mobile */
  @media (max-width: 768px) {
    .tab-nav {
      flex-direction: column;
      gap: 10px;
      border-bottom: none;
    }
  
    .tab-nav li {
      padding: 10px 0;
      border-bottom: 1px solid var(--border-color);
    }
  
    .review-form h4 {
      font-size: 16px;
    }
  
    .review-form input,
    .review-form textarea {
      font-size: 13px;
    }
  
    .review-form button {
      width: 100%;
      font-size: 14px;
    }
  
    .star-rating {
      font-size: 20px;
    }
  
    .review-item {
      font-size: 14px;
    }
.detail-product .product-silder {
    max-width: 500px;
width:100%;
  
}
.detail-product .product-info {
 
width:100%;
}
.detail-product {
    padding-top: 30px;
}
  }
  