@charset "UTF-8";
:root {
  --color-brand: #ff6d4d;
  --color-brand-hover: #e55a3a;
  --color-primary: #0e48cc;
  --color-primary-dark: #031b4b;
  --color-secondary: #125ce0;
  --color-text: #121826;
  --color-text-secondary: #232323;
  --color-text-light: #5b5b5b;
  --color-text-muted: #767676;
  --color-text-gray: #797979;
  --color-bg-light: #f7f7f7;
  --color-bg-pink: #fff7f5;
  --color-white: #ffffff;
  --color-border: #e5e7e8;
  --color-border-light: #f4f4f4;
  --color-link: #0077ff;
  --color-star: #fdba72;
  --font-primary: 'Be Vietnam Pro' , 'SF Pro Display' , sans-serif;
  --shadow-box: 0 0 20px rgba(0, 0, 0, 0.1);
  --shadow-light: 0 0 15px rgba(0, 0, 0, 0.1);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px; }

a {
  text-decoration: none;
  color: inherit; }

/*
   ========================================
   BREADCRUMB
   ========================================
*/
.pd-breadcrumb {
  padding: 15px 0;
  background: var(--color-white); }
  .pd-breadcrumb-list {
    display: flex;
    align-items: center;
    list-style: none;
    font-size: 14px; }
  .pd-breadcrumb-item {
    display: flex;
    align-items: center; }
    .pd-breadcrumb-item a {
      color: var(--color-text); }
      .pd-breadcrumb-item a:hover {
        color: var(--color-brand); }
    .pd-breadcrumb-item.active {
      color: var(--color-brand); }
  .pd-breadcrumb-separator {
    margin: 0 8px;
    color: var(--color-text-muted);
    font-size: 10px; }

/*
   ========================================
   PRODUCT SECTION
   ========================================
*/
.pd-product {
  padding: 20px 0 40px; }
  .pd-product-grid {
    display: grid;
    grid-template-columns: 592px 1fr;
    gap: 16px;
    align-items: flex-start; }
    @media (max-width: 1024px) {
      .pd-product-grid {
        grid-template-columns: 1fr;
        display: flex;
        flex-wrap: wrap; }
        .pd-product-grid .pd-product-left {
          width: 100%; } }
  @media (min-width: 1024px) {
    .pd-product .pd-product-left {
      position: sticky;
      top: 20px;
      align-self: flex-start;
      z-index: 10;
      transition: box-shadow 0.3s ease; } }
  .pd-product .pd-product-left .product-main-image {
    padding: 0; }

/* Product Gallery */
.pd-gallery {
  display: flex;
  gap: 16px; }
  @media (max-width: 1024px) {
    .pd-gallery {
      flex-direction: column-reverse; } }
  .pd-gallery-thumbs {
    width: 85px;
    display: flex;
    flex-direction: column;
    gap: 7px; }
    @media (max-width: 1024px) {
      .pd-gallery-thumbs {
        flex-direction: row;
        width: 100%;
        overflow-x: auto; } }
  .pd-gallery-thumb {
    width: 85px;
    height: 85px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--color-border-light);
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.2s; }
    @media (max-width: 1024px) {
      .pd-gallery-thumb {
        flex-shrink: 0; } }
    .pd-gallery-thumb.active {
      border-color: var(--color-primary); }
    .pd-gallery-thumb img {
      width: 100%;
      height: 100%;
      object-fit: contain; }
  .pd-gallery-main {
    flex: 1; }
    .pd-gallery-main-img {
      width: 100%;
      aspect-ratio: 1;
      border-radius: var(--radius-md);
      overflow: hidden; }
      .pd-gallery-main-img img {
        width: 100%;
        height: 100%;
        object-fit: cover; }

.pd-share {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  margin-top: 16px; }
  .pd-share-label {
    font-size: 14px;
    color: var(--color-text-secondary); }
  .pd-share-icons {
    display: flex;
    gap: 10px; }
    .pd-share-icons a {
      width: 24px;
      height: 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #1877f2;
      font-size: 20px; }
      .pd-share-icons a.messenger {
        color: #0084ff; }
      .pd-share-icons a.shopee {
        color: #ee4d2d; }
      .pd-share-icons a.zalo {
        color: #0068ff; }

/* Sales Policy Box */
.pd-policy-box {
  background: var(--color-bg-pink);
  border-radius: var(--radius-md);
  padding: 16px 25px;
  margin-top: 20px; }
  .pd-policy-box .pd-policy-title {
    color: var(--Color-color-Brand, #FF6D4D);
    font-family: var(--TypoFace-Primary, "SF Pro Display");
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 16px; }
  .pd-policy-box .pd-policy-list {
    display: flex;
    flex-direction: column;
    gap: 4px; }
    .pd-policy-box .pd-policy-list .pd-policy-item {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 14px; }
      .pd-policy-box .pd-policy-list .pd-policy-item .pd-policy-icon {
        width: 35px;
        height: 35px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--color-brand);
        font-size: 20px; }

/* Product Info */
.pd-info {
  display: flex;
  flex-direction: column;
  gap: 16px; }

.pd-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-text-secondary);
  line-height: 1.3;
  margin: 0; }
  @media (max-width: 768px) {
    .pd-title {
      font-size: 20px; } }

.pd-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  font-size: 14px;
  color: var(--color-text-secondary); }
  .pd-meta-item {
    display: flex;
    gap: 4px; }
  .pd-meta-label {
    color: var(--color-text-secondary); }
  .pd-meta-value {
    font-weight: 500; }

.pd-rating {
  display: flex;
  align-items: center;
  gap: 8px; }
  .pd-rating .pd-stars {
    display: flex;
    gap: 2px;
    color: var(--color-star); }
  .pd-rating-count {
    font-size: 14px;
    color: var(--color-text-secondary); }

.pd-sold {
  font-size: 12px;
  color: #585858; }
  .pd-sold span {
    color: var(--color-text); }

/* Price Section */
.pd-price-section {
  border-bottom: 1px solid #e6e6e6;
  padding-bottom: 16px; }
  .pd-price-section .pd-price-row {
    display: flex;
    align-items: center;
    gap: 15px; }
    .pd-price-section .pd-price-row .pd-price {
      font-size: 32px;
      font-weight: 700;
      color: var(--color-brand); }
      @media (max-width: 768px) {
        .pd-price-section .pd-price-row .pd-price {
          font-size: 24px; } }
    .pd-price-section .pd-price-row .pd-price-original {
      font-size: 16px;
      color: #aaa;
      text-decoration: line-through; }
    .pd-price-section .pd-price-row .pd-discount-badge {
      background: var(--color-brand);
      color: white;
      padding: 4px 8px;
      border-radius: 10px;
      font-size: 14px; }

/* Flash Sale */
.pd-flash-sale {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(180deg, #FB5B2A 0%, #FFA556 100%);
  padding: 7px 10px;
  border-radius: 7px;
  position: relative;
  max-width: 320px; }
  .pd-flash-sale-text {
    display: flex;
    align-items: center;
    gap: 3px; }
    .pd-flash-sale-text span {
      color: #FFF;
      font-family: SVN-Omnes;
      font-size: 22.075px;
      font-style: normal;
      font-weight: 700;
      line-height: normal; }
    .pd-flash-sale-text .lightning {
      color: #ffeb3b;
      font-size: 24px; }
  .pd-flash-sale.expired {
    opacity: 0.6;
    pointer-events: none; }
    .pd-flash-sale.expired::after {
      content: 'Đã kết thúc';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      background: rgba(0, 0, 0, 0.8);
      color: white;
      padding: 4px 12px;
      border-radius: 4px;
      font-size: 12px;
      font-weight: 600; }

.pd-countdown {
  display: flex;
  gap: 3px; }
  .pd-countdown-item {
    background: white;
    color: var(--color-brand);
    font-weight: 700;
    font-size: 16px;
    padding: 4px 7px;
    border-radius: 4px;
    min-width: 32px;
    text-align: center;
    transition: transform 0.3s ease; }
    .pd-countdown-item.blink {
      animation: countdown-blink 0.5s ease-in-out infinite; }
  .pd-countdown-sep {
    color: white;
    font-weight: 700;
    align-self: center; }

@keyframes countdown-blink {
  0,
  100% {
    opacity: 1;
    transform: scale(1); }
  50% {
    opacity: 0.5;
    transform: scale(1.1); } }

/* Vouchers */
.pd-vouchers {
  padding-bottom: 16px; }
  .pd-vouchers-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px; }
  .pd-vouchers-title {
    font-size: 16px;
    font-weight: 500;
    color: #18181a; }
  .pd-vouchers-link {
    font-size: 14px;
    color: #003dd8;
    text-decoration: underline; }
  .pd-vouchers-list {
    display: flex;
    gap: 16px;
    flex-wrap: wrap; }
    @media (max-width: 480px) {
      .pd-vouchers-list {
        flex-wrap: nowrap;
        overflow-x: auto; } }
  .pd-vouchers .pd-voucher {
    border: 1px dashed var(--color-brand);
    color: var(--color-brand);
    font-size: 14px;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 4px;
    background: white; }
    @media (max-width: 480px) {
      .pd-vouchers .pd-voucher {
        flex-shrink: 0; } }

/* Quantity */
.pd-quantity {
  display: flex;
  align-items: center;
  gap: 33px;
  padding-bottom: 16px; }
  .pd-quantity-label {
    font-size: 16px;
    font-weight: 500;
    color: #18181a; }
  .pd-quantity-control {
    display: flex;
    align-items: center; }
  .pd-quantity-btn {
    width: 36px;
    height: 34px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 20px;
    color: #1a1a1c;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none !important; }
  .pd-quantity-input {
    width: 39px;
    height: 34px;
    text-align: center;
    border: none;
    background: #f3f4f6;
    font-size: 14px;
    border-radius: var(--radius-sm); }

/* Action Buttons */
.pd-actions {
  display: flex;
  gap: 8px; }
  @media (max-width: 480px) {
    .pd-actions {
      flex-direction: column; } }
  .pd-actions .pd-btn {
    flex: 1;
    padding: 16px 10px;
    border-radius: var(--radius-md);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
    outline: none; }
    .pd-actions .pd-btn-primary {
      background: var(--color-brand);
      color: white;
      border: none; }
      .pd-actions .pd-btn-primary:hover {
        background: var(--color-brand-hover); }
    .pd-actions .pd-btn-outline {
      background: white;
      color: var(--color-brand);
      border: 1px solid var(--color-brand); }
      .pd-actions .pd-btn-outline:hover {
        background: var(--color-bg-pink); }

/*
   ========================================
   PRODUCT DETAILS ACCORDION
   ========================================
*/
.pd-details {
  margin-top: 21px; }

.pd-accordion {
  border-bottom: 1px solid var(--color-border); }
  .pd-accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    cursor: pointer; }
  .pd-accordion-title {
    color: var(--Color-color-Brand, #FF6D4D);
    /* Title18/Bold */
    font-family: var(--TypoFace-Primary, "SF Pro Display");
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 160%;
    /* 28.8px */ }
  .pd-accordion-icon {
    font-size: 20px;
    color: var(--color-text);
    transition: transform 0.3s; }
  .pd-accordion-content {
    display: none;
    padding-bottom: 16px; }
  .pd-accordion.active .pd-accordion-icon {
    transform: rotate(180deg); }
  .pd-accordion.active .pd-accordion-content {
    display: block; }

.pd-specs-table {
  width: 100%; }

.pd-specs-row {
  display: flex;
  border-bottom: 1px solid #e5e5e5; }
  .pd-specs-row:last-child {
    border-bottom: none; }

.pd-specs-label {
  width: 122px;
  padding: 10px;
  font-size: 14px;
  color: var(--color-text-gray);
  flex-shrink: 0; }

.pd-specs-value {
  padding: 10px;
  font-size: 14px;
  color: var(--color-text); }
  .pd-specs-value a {
    color: var(--color-link); }

/*
   ========================================
   REVIEWS SECTION
   ========================================
*/
.pd-reviews {
  padding: 40px 0;
  border-top: 1px solid var(--color-border); }
  .pd-reviews-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px; }
    @media (max-width: 768px) {
      .pd-reviews-header {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start; } }
  .pd-reviews-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-brand); }
  .pd-reviews-actions {
    display: flex;
    gap: 10px; }

.pd-btn-review {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 32px;
  border: 1px solid var(--color-text);
  border-radius: var(--radius-sm);
  background: white;
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text);
  cursor: pointer; }

/* Reviews Summary */
.pd-reviews-summary {
  display: flex;
  gap: 16px;
  margin-bottom: 24px; }
  @media (max-width: 768px) {
    .pd-reviews-summary {
      flex-wrap: wrap; } }

.pd-reviews-score {
  text-align: center; }
  .pd-reviews-score-num {
    font-size: 48px;
    font-weight: 700;
    color: var(--color-text); }
  .pd-reviews-score-stars {
    display: flex;
    justify-content: center;
    gap: 8px;
    color: var(--color-star);
    margin: 4px 0; }
  .pd-reviews-score-count {
    font-size: 14px;
    color: #575758; }

.pd-reviews-divider {
  width: 1px;
  background: var(--color-border); }

.pd-reviews-bars {
  display: flex;
  gap: 16px; }
  @media (max-width: 768px) {
    .pd-reviews-bars {
      flex-wrap: wrap; } }

.pd-reviews-stars-col {
  display: flex;
  flex-direction: column;
  gap: 8px; }

.pd-reviews-star-row {
  display: flex;
  gap: 0;
  color: var(--color-star);
  font-size: 16px; }
  .pd-reviews-star-row .empty {
    color: #e5e5e5; }

.pd-reviews-progress-col {
  display: flex;
  flex-direction: column;
  gap: 12px; }

.pd-reviews-progress {
  width: 180px;
  height: 10px;
  background: #f2f2f2;
  border-radius: 20px;
  overflow: hidden;
  margin: 5px 0; }
  .pd-reviews-progress-fill {
    height: 100%;
    background: var(--color-star);
    border-radius: 6px; }

.pd-reviews-percent-col {
  display: flex;
  flex-direction: column;
  gap: 6px; }

.pd-reviews-percent {
  font-size: 14px;
  color: #9f9f9f;
  padding: 3px 0; }

.pd-reviews-count-col {
  display: flex;
  flex-direction: column;
  justify-content: space-between; }

.pd-reviews-count-item {
  font-size: 14px;
  font-weight: 500;
  color: #9f9f9f;
  padding: 3px 0; }

/* Reviews Tabs */
.pd-reviews-tabs {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #ececed;
  padding-top: 12px;
  margin-bottom: 16px; }

.pd-reviews-tab-list {
  display: flex; }

.pd-reviews-tab {
  padding: 16px 20px;
  font-size: 16px;
  font-weight: 700;
  color: #bcbcbc;
  border-bottom: 3px solid #bcbcbc;
  cursor: pointer; }
  .pd-reviews-tab.active {
    color: #002b5c;
    border-bottom-color: #002b5c; }
    .pd-reviews-tab.active .pd-reviews-tab-badge {
      background: var(--color-brand);
      color: white; }
  .pd-reviews-tab:not(.active) .pd-reviews-tab-badge {
    background: #f3f4f6;
    color: #252e3b; }
  .pd-reviews-tab-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 6px;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 700;
    margin-left: 8px; }

.pd-reviews-sort {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 32px;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-sm);
  background: white;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer; }

/* Review Items */
.pd-review-list {
  display: flex;
  flex-direction: column;
  gap: 22px; }

.pd-review-item {
  display: flex;
  gap: 22px;
  padding: 13px 0;
  border-bottom: 1px solid #e5e7eb; }

.pd-review-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0; }
  .pd-review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover; }

.pd-review-content {
  flex: 1; }

.pd-review-stars {
  display: flex;
  gap: 4px;
  color: var(--color-star);
  margin-bottom: 4px; }

.pd-review-author {
  font-size: 16px;
  font-weight: 700;
  color: #575758;
  margin-bottom: 8px; }

.pd-review-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text); }

.pd-review-text {
  font-size: 14px;
  color: #1a1a1c;
  line-height: 1.4; }

.pd-review-actions {
  display: flex;
  gap: 16px;
  margin-top: 8px;
  font-size: 14px;
  color: #727272; }
  .pd-review-actions a:hover {
    color: var(--color-brand); }

/* Reviews Pagination */
.pd-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px; }
  .pd-pagination-item {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    border: 1px solid #f1f1f1;
    background: white;
    color: #333;
    cursor: pointer; }
    .pd-pagination-item.active {
      background: var(--color-brand);
      color: white;
      border-color: var(--color-brand); }
    .pd-pagination-item:hover:not(.active) {
      background: #f5f5f5; }

/*
   ========================================
   RELATED PRODUCTS
   ========================================
*/
.pd-related {
  padding: 40px 0; }
  .pd-related-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px; }
  .pd-related-title {
    color: var(--Color-color-Brand, #FF6D4D);
    /* Heading1 */
    font-family: "SF Pro Display";
    font-size: var(--FontSize-Heading4, 32px);
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin: 0; }
    @media (max-width: 767px) {
      .pd-related-title {
        font-size: 18px; } }
  .pd-related-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-brand);
    font-weight: 600; }
  .pd-related .product-group-slider-wrapper {
    flex: 1;
    position: relative;
    min-width: 0;
    /* Product Group Navigation Button */ }
    .pd-related .product-group-slider-wrapper .pd-similar-swiper {
      overflow: hidden;
      padding: 8px 0; }
      .pd-related .product-group-slider-wrapper .pd-similar-swiper .swiper-slide {
        height: auto; }
    .pd-related .product-group-slider-wrapper .product-group-swiper-next,
    .pd-related .product-group-slider-wrapper .product-group-swiper-prev {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 32px;
      height: 32px;
      background: #fff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #ff6d4d;
      font-size: 14px;
      cursor: pointer;
      transition: all 0.3s;
      box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
      z-index: 10; }
      .pd-related .product-group-slider-wrapper .product-group-swiper-next:hover,
      .pd-related .product-group-slider-wrapper .product-group-swiper-prev:hover {
        background: #ff6d4d;
        color: #fff;
        transform: translateY(-50%) scale(1.1); }
      .pd-related .product-group-slider-wrapper .product-group-swiper-next::after,
      .pd-related .product-group-slider-wrapper .product-group-swiper-prev::after {
        content: ''; }
      .pd-related .product-group-slider-wrapper .product-group-swiper-next.swiper-button-disabled,
      .pd-related .product-group-slider-wrapper .product-group-swiper-prev.swiper-button-disabled {
        opacity: 0.5;
        cursor: not-allowed; }
    .pd-related .product-group-slider-wrapper .product-group-prev-similar {
      left: -15px; }
    .pd-related .product-group-slider-wrapper .product-group-next-similar {
      right: -15px; }

.pd-products-slider {
  position: relative; }

.pd-product-card {
  background: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s , box-shadow 0.2s; }
  .pd-product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-box); }
  .pd-product-card-img {
    aspect-ratio: 1;
    overflow: hidden; }
    .pd-product-card-img img {
      width: 100%;
      height: 100%;
      object-fit: cover; }
  .pd-product-card-body {
    padding: 12px; }
  .pd-product-card-title {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
    height: 39px; }
  .pd-product-card-price {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px; }
    .pd-product-card-price-current {
      font-size: 16px;
      font-weight: 700;
      color: var(--color-brand); }
    .pd-product-card-price-original {
      font-size: 12px;
      color: #aaa;
      text-decoration: line-through; }
  .pd-product-card-rating {
    display: flex;
    gap: 2px;
    color: var(--color-star);
    font-size: 12px; }

/* Swiper Navigation */
.pd-swiper-btn {
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 50%;
  box-shadow: var(--shadow-light);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10; }
  .pd-swiper-btn-prev {
    left: -20px; }
  .pd-swiper-btn-next {
    right: -20px; }

/*
   ========================================
   FLOATING BUTTONS
   ========================================
*/
.pd-floating {
  position: fixed;
  right: 20px;
  bottom: 100px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 10px; }
  .pd-floating-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: white;
    box-shadow: var(--shadow-box);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    transition: transform 0.2s; }
    .pd-floating-btn:hover {
      transform: scale(1.1); }
    .pd-floating-btn i {
      font-size: 20px; }

.slider-wrap {
  display: flex;
  flex-wrap: wrap; }
  .slider-wrap .pd_slide {
    padding: 0 !important; }

/* SCSS converted from CSS, structured based on HTML */
.product-details {
  max-width: 592px;
  font: 400 14px/1.4 SF Pro Display, -apple-system, Roboto, Helvetica, sans-serif; }
  .product-details .details-list {
    margin: 0;
    padding: 0; }
    .product-details .details-list .detail-row {
      border-color: #e5e5e5;
      border-bottom-width: 1px;
      border-bottom-style: solid;
      display: flex;
      width: 100%;
      align-items: center;
      gap: 40px 60px;
      justify-content: start;
      flex-wrap: wrap;
      margin-top: 8px; }
      .product-details .details-list .detail-row:first-child {
        margin-top: 0; }
      .product-details .details-list .detail-row.detail-row-last {
        border-bottom: none; }
      @media (max-width: 991px) {
        .product-details .details-list .detail-row {
          max-width: 100%; } }
      .product-details .details-list .detail-row:nth-child(2) .detail-label {
        padding: 10px 8px 10px 10px; }
      .product-details .details-list .detail-row:nth-child(4) .detail-label {
        white-space: nowrap; }
        @media (max-width: 991px) {
          .product-details .details-list .detail-row:nth-child(4) .detail-label {
            white-space: initial; } }
      .product-details .details-list .detail-row:nth-child(5) .detail-value, .product-details .details-list .detail-row:nth-child(6) .detail-value, .product-details .details-list .detail-row:nth-child(8) .detail-value {
        white-space: nowrap; }
        @media (max-width: 991px) {
          .product-details .details-list .detail-row:nth-child(5) .detail-value, .product-details .details-list .detail-row:nth-child(6) .detail-value, .product-details .details-list .detail-row:nth-child(8) .detail-value {
            white-space: initial; } }
      .product-details .details-list .detail-row:nth-child(7) .detail-label {
        justify-content: center; }
      .product-details .details-list .detail-row .detail-label {
        align-self: stretch;
        display: flex;
        align-items: center;
        gap: 10px;
        color: #797979;
        justify-content: start;
        width: 122px;
        margin: auto 0;
        padding: 10px; }
        .product-details .details-list .detail-row .detail-label.detail-label-flexible {
          flex-grow: 1;
          flex-shrink: 1;
          width: 98px;
          padding: 10px 0 10px 10px; }
        .product-details .details-list .detail-row .detail-label .label-text {
          align-self: stretch;
          margin: auto 0;
          /* Biến CSS đã được thay thế */
          font: 14px "SF Pro Display"; }
      .product-details .details-list .detail-row .detail-value {
        align-self: stretch;
        display: flex;
        align-items: center;
        gap: 10px;
        color: #000;
        justify-content: center;
        margin: auto 0;
        padding: 10px; }
        .product-details .details-list .detail-row .detail-value.detail-value-wide {
          min-width: 240px;
          width: 340px; }
        .product-details .details-list .detail-row .detail-value .value-text {
          align-self: stretch;
          margin: auto 0;
          /* Biến CSS đã được thay thế */
          font: 14px "SF Pro Display"; }
          .product-details .details-list .detail-row .detail-value .value-text.value-link {
            color: #0077ff;
            width: 320px; }

.tab-content .table-responsive > .table {
  width: 100% !important;
  table-layout: fixed; }

.tab-content .table-responsive > .table > tbody > tr > td,
.tab-content .table-responsive > .table > tbody > tr > th,
.tab-content .table-responsive > .table > tfoot > tr > td,
.tab-content .table-responsive > .table > tfoot > tr > th,
.tab-content .table-responsive > .table > thead > tr > td,
.tab-content .table-responsive > .table > thead > tr > th {
  white-space: pre-line !important;
  width: 100% !important;
  border: 0;
  font-weight: normal; }
