/* =========================
   PRODUCT PAGE MAKEOVER
   FLAT / NO RADIUS VERSION
   BRAND COLOR: #5c3e98
========================= */

:root {
  --primary: #5c3e98;
  --primary-dark: #4b327d;
  --accent: #f5f1fc;
  --text: #2f2a33;
  --muted: #777;
  --border: #ddd3f0;
  --success: #5e9b64;
  --danger: #d94b4b;
  --white: #fff;
  --shadow: 0 8px 24px rgba(92, 62, 152, 0.10);
  --transition: all 0.3s ease;
}

/* GLOBAL */
body {
  color: var(--text);
  background: #fff;
}

a {
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
}

/* =========================
   BREADCRUMB / PAGE TOP
========================= */
.breadcrumb-area,
.page-header,
.breadcrumb-wrap {
  background: linear-gradient(180deg, #f8f5fd, #fff) !important;
  padding: 24px 0 18px;
  border-bottom: 1px solid #ece4f8;
}

.breadcrumb,
.breadcrumb-nav,
.breadcrumb-content {
  font-size: 14px;
  color: var(--muted);
}

.breadcrumb a,
.breadcrumb-nav a {
  color: var(--primary-dark);
  text-decoration: none;
}

/* =========================
   PRODUCT MAIN SECTION
========================= */
.product-details-area,
.product-single-area,
.product-details-page {
  padding-top: 40px;
  padding-bottom: 50px;
}

/* LEFT GALLERY */
.product-gallery img,
.product-details-gallery img,
.product-large-image img,
.product-image-main img {
  max-height: 430px;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.product-gallery:hover img,
.product-details-gallery:hover img,
.product-large-image:hover img,
.product-image-main:hover img {
  transform: scale(1.04);
}

/* THUMBNAILS */
.product-thumbs,
.product-small-img,
.product-gallery-thumbs {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.product-thumbs img,
.product-small-img img,
.product-gallery-thumbs img {
  background: #fff;
  border: 1px solid var(--border);
  padding: 8px;
  transition: var(--transition);
  cursor: pointer;
}

.product-thumbs img:hover,
.product-small-img img:hover,
.product-gallery-thumbs img:hover {
  border-color: var(--primary);
  box-shadow: 0 6px 14px rgba(92, 62, 152, 0.12);
  transform: translateY(-2px);
}

/* =========================
   PRODUCT INFO
========================= */
.product-details-content,
.product-summary,
.product-info {
  padding-left: 20px;
}

.product-details-content h2,
.product-details-content .product-title,
.product-summary h1,
.product-summary h2 {
  font-size: 38px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.2;
}

/* RATING */
.product-details-content .rating-wrap,
.product-details-content .product-rating,
.rating-review,
.product-review {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #f4b400;
  font-size: 15px;
  margin-bottom: 14px;
}

.product-details-content .rating-wrap span,
.product-details-content .product-rating span,
.rating-review span,
.product-review span {
  color: var(--muted);
  font-size: 14px;
}

/* PRICE */
.price-box,
.product-price,
.product-details-content .price,
.product-details-content .new-price {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 18px 0;
}

.product-price .old-price,
.product-details-content del,
.product-details-content .old-price {
  font-size: 20px;
  color: #999;
  text-decoration: line-through;
}

.discount-badge,
.save-badge,
.offer-badge {
  background: #eee7fb;
  color: var(--primary-dark);
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 700;
  display: inline-block;
}

/* SHORT DESCRIPTION */
.product-details-content p,
.product-summary p {
  color: #666;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* =========================
   VARIANT SECTION
========================= */
.variant-wrapper,
.variant-grid,
.product-variant-list {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 18px;
  margin-bottom: 28px;
}

.variant-card,
.variant-item,
.product-variant-box,
.variant-option {
  width: 150px;
  border: 2px solid #eee;
  padding: 14px 12px;
  background: #fff;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  box-shadow: 0 3px 10px rgba(0,0,0,0.03);
}

.variant-card:hover,
.variant-item:hover,
.product-variant-box:hover,
.variant-option:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 18px rgba(92, 62, 152, 0.14);
  transform: translateY(-3px);
}

.variant-card.active,
.variant-item.active,
.product-variant-box.active,
.variant-option.active,
.variant-card.selected,
.variant-item.selected {
  border-color: var(--primary) !important;
  background: #f7f3fc;
  box-shadow: 0 8px 18px rgba(92, 62, 152, 0.14);
}

.variant-card img,
.variant-item img,
.product-variant-box img,
.variant-option img {
  height: auto;
  object-fit: contain;
}

.variant-card h6,
.variant-item h6,
.product-variant-box h6,
.variant-option h6 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}

.variant-card .price,
.variant-item .price,
.product-variant-box .price,
.variant-option .price {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
}

.variant-card .old-price,
.variant-item .old-price,
.product-variant-box .old-price,
.variant-option .old-price {
  display: block;
  font-size: 13px;
  color: #999;
  text-decoration: line-through;
  margin-top: 3px;
}

.variant-card .offer-badge,
.variant-item .offer-badge,
.product-variant-box .offer-badge,
.variant-option .offer-badge {
  margin-top: 10px;
}

/* =========================
   QTY + CTA
========================= */
.product-details-action,
.qty-cart-wrap,
.product-cart-area {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.quantity,
.qty-box,
.pro-qty {
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  overflow: hidden;
  background: #fff;
  height: 52px;
}

.quantity button,
.qty-box button,
.pro-qty button,
.pro-qty a {
  width: 42px;
  height: 52px;
  border: none;
  background: #f5f1fc;
  color: var(--text);
  font-size: 18px;
  font-weight: 600;
  transition: var(--transition);
}

.quantity button:hover,
.qty-box button:hover,
.pro-qty button:hover,
.pro-qty a:hover {
  background: #ebe3f8;
  color: var(--primary-dark);
}

.quantity input,
.qty-box input,
.pro-qty input {
  width: 60px;
  text-align: center;
  border: none;
  outline: none;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
}

/* BUTTONS */
button,
.btn,
.cart-btn,
.add-to-cart-btn,
.product-details-content .btn {
  transition: var(--transition);
  font-weight: 600;
}

.add-to-cart-btn,
.cart-btn,
.btn-cart {
  background: var(--primary) !important;
  color: #fff !important;
  border: none !important;
  min-height: 52px;
  padding: 0 28px !important;
  box-shadow: 0 8px 20px rgba(92, 62, 152, 0.18);
}

.add-to-cart-btn:hover,
.cart-btn:hover,
.btn-cart:hover {
  background: var(--primary-dark) !important;
  transform: translateY(-2px);
}

.buy-now-btn,
.btn-buy {
  background: #2f2a33 !important;
  color: #fff !important;
  border: none !important;
  min-height: 52px;
  padding: 0 28px !important;
}

.buy-now-btn:hover,
.btn-buy:hover {
  transform: translateY(-2px);
}

/* WISHLIST */
.add-to-wishlist,
.wishlist-btn,
.product-wishlist {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-dark);
  font-weight: 600;
  margin-top: 10px;
}

.add-to-wishlist:hover,
.wishlist-btn:hover,
.product-wishlist:hover {
  color: var(--primary);
}

/* META INFO */
.product-meta,
.product-details-meta,
.product-category,
.product-share {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid #e7def5;
  color: #666;
  font-size: 14px;
}

.product-meta a,
.product-details-meta a,
.product-category a,
.product-share a {
  color: var(--primary-dark);
}

/* =========================
   TRUST BADGES
========================= */
.trust-row,
.product-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 22px;
  color: #666;
  font-size: 14px;
}

.trust-row span,
.product-trust-badges span {
  background: #f7f3fc;
  border: 1px solid #e7def5;
  padding: 10px 14px;
}

/* =========================
   TABS SECTION
========================= */
.product-details-tab,
.product-tabs,
.nav-tabs {
  margin-top: 70px;
  border-bottom: none !important;
}

.product-details-tab .nav-link,
.product-tabs .nav-link,
.nav-tabs .nav-link {
  border: 1px solid var(--border) !important;
  background: #f6f2fc !important;
  color: var(--primary-dark) !important;
  padding: 14px 24px !important;
  margin-right: 10px;
  margin-bottom: 10px;
  font-weight: 600;
}

.product-details-tab .nav-link.active,
.product-tabs .nav-link.active,
.nav-tabs .nav-link.active {
  background: var(--primary) !important;
  color: #fff !important;
  border-color: var(--primary) !important;
}

.tab-content,
.tab-content-box,
.product-tab-content {
  margin-top: 24px;
  padding: 28px;
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: 0 4px 14px rgba(0,0,0,0.03);
}

/* =========================
   REVIEWS
========================= */
.review-wrapper,
.review-section,
.comment-list,
.product-reviews {
  margin-top: 10px;
}

.review-card,
.single-review,
.comment-item {
  border: 1px solid #e8e0f4;
  padding: 20px;
  margin-bottom: 16px;
  background: #fff;
}

.review-card .name,
.single-review .name,
.comment-item .name {
  font-weight: 700;
  color: var(--text);
}

.review-card .date,
.single-review .date,
.comment-item .date {
  color: #999;
  font-size: 13px;
}

.review-card .stars,
.single-review .stars,
.comment-item .stars {
  color: #f4b400;
  margin: 8px 0;
}

.no-review,
.empty-review {
  background: #f7f3fc;
  border: 1px dashed var(--border);
  padding: 22px;
  color: #777;
}

/* =========================
   FAQ SECTION
========================= */
.faq-area,
.faq-section {
  margin-top: 70px;
}

.faq-area h3,
.faq-section h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--text);
}

.accordion-item,
.faq-item {
  border: 1px solid var(--border) !important;
  overflow: hidden;
  margin-bottom: 14px;
  background: #fff !important;
}

.accordion-button,
.faq-question {
  background: #f5f1fc !important;
  color: var(--text) !important;
  font-weight: 600;
  font-size: 16px;
  box-shadow: none !important;
  padding: 18px 22px !important;
}

.accordion-button:not(.collapsed) {
  background: #ece5f8 !important;
  color: var(--primary-dark) !important;
}

.accordion-body,
.faq-answer {
  padding: 18px 22px !important;
  color: #666;
  line-height: 1.8;
}

/* =========================
   RELATED PRODUCTS
========================= */
.related-products,
.you-may-also-like,
.product-slider-area {
  margin-top: 80px;
}

.related-products h3,
.you-may-also-like h3,
.product-slider-area h3 {
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 36px;
  color: var(--text);
}

.product-card,
.single-product,
.product-default {
  background: #fff;
  border: 1px solid #e8e0f4;
  padding: 20px;
  text-align: center;
  transition: var(--transition);
  height: 100%;
  box-shadow: 0 4px 14px rgba(0,0,0,0.03);
}

.product-card:hover,
.single-product:hover,
.product-default:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 34px rgba(0,0,0,0.05);
  border-color: var(--primary);
}

.product-card img,
.single-product img,
.product-default img {
  max-height: 220px;
  object-fit: contain;
  margin-bottom: 16px;
}

.product-card h4,
.single-product h4,
.product-default h4,
.product-card .product-title,
.single-product .product-title {
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}

.product-card .price,
.single-product .price,
.product-default .price {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.product-card .rating,
.single-product .rating,
.product-default .rating {
  color: #f4b400;
  font-size: 14px;
}

/* PRODUCT GALLERY FIX */
.product-gallery figure{
  background: #f8f5fd;
  border: 1px solid var(--border);
  padding: 5px;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-gallery-vertical .btn-product-gallery {
    right: 2rem;
    bottom: 2rem;
}

.product-gallery-vertical .product-image-gallery,
.product-gallery-vertical .product-main-image {
    padding-left: .5rem;
    padding-right: .5rem;
}

.product-gallery-vertical .product-main-image {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    width: 100% !important;
    order: 1;
    text-align: center;
}

.product-gallery-vertical .product-image-gallery {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    width: 100% !important;
    order: 2;
    margin-top: 1rem;
    display: flex;
    flex-direction: row !important;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-left: 0;
    margin-right: 0;
}

.product-gallery-vertical .product-gallery-item {
    flex: 0 0 auto !important;
    max-width: 90px !important;
    width: 90px !important;
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 0 !important;
}

.product-gallery-vertical .product-gallery-item img {
    width: 100%;
    height: 90px;
    object-fit: contain;
    border: 1px solid var(--border);
    background: #fff;
    padding: 4px;
    transition: all 0.3s ease;
}

.product-gallery-vertical .product-gallery-item img:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 14px rgba(92, 62, 152, 0.18);
}

.product-gallery-vertical .product-gallery-item.active img,
.product-gallery-vertical .active .product-gallery-item img,
.product-gallery-vertical .slick-current img {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(92, 62, 152, 0.12);
}

.product-gallery-vertical .product-main-image img {
    max-width: 100%;
    max-height: 500px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: inline-block;
}

.product-gallery-vertical .slick-track {
    display: flex !important;
    flex-direction: row !important;
    transform: none !important;
    width: auto !important;
}

.product-gallery-vertical .slick-slide {
    float: none !important;
    height: auto !important;
    width: 90px !important;
    margin-right: 10px;
}

/* PRODUCT DESCRIPTION */
.product-description {
    border: 1px solid var(--border);
    border-radius: 8px;
    background: #fff;
    overflow: hidden;
}

.product-description h3 {
    background: var(--primary-dark);
    color: #fff;
    margin: 0;
    padding: 12px 20px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-align: center;
}

.product-description-body {
    padding: 20px 24px;
    font-size: 14px;
    color: #555;
    line-height: 1.9;
}

/* FAQ Accordion Theme */
#accordion-1 {
    margin-top: 20px;
}

#accordion-1 .card {
    border: 1px solid var(--border) !important;
    background: #fcfbfe !important;
    margin-bottom: 12px;
    box-shadow: 0 4px 14px rgba(92, 62, 152, 0.06);
    overflow: hidden;
    transition: all 0.3s ease;
}

#accordion-1 .card:hover {
    box-shadow: 0 8px 20px rgba(92, 62, 152, 0.10);
}

#accordion-1 .card-header {
    background: #f5f1fc !important;
    border-bottom: 1px solid var(--border) !important;
    padding: 0 !important;
}

#accordion-1 .card-title {
    margin: 0;
}

#accordion-1 .card-title a {
    display: block;
    position: relative;
    padding: 16px 50px 16px 18px;
    font-size: 15px;
    font-weight: 600;
    color: #2f2a33;
    text-decoration: none;
    transition: all 0.3s ease;
    background: #f5f1fc;
}

#accordion-1 .card-title a:hover {
    background: #ece5f8;
    color: var(--primary-dark);
}

#accordion-1 .card-title a:not(.collapsed) {
    background: var(--primary);
    color: #fff;
}

#accordion-1 .card-title a::after {
    content: "+" !important;
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 22px;
    font-weight: 500;
    color: var(--primary);
    transition: all 0.3s ease;
}

#accordion-1 .card-title a:not(.collapsed)::after {
    content: "−";
    color: #fff;
}

#accordion-1 .card-body {
    background: #fcfbfe;
    color: #555;
    font-size: 14px;
    line-height: 1.8;
    padding: 18px 20px;
    border-top: 1px solid #e9e0f7;
}

#accordion-1 .card-body p {
    margin-bottom: 10px;
}

/* MOBILE */
@media (max-width: 991px) {
  .product-details-content,
  .product-summary,
  .product-info {
    padding-left: 0;
    margin-top: 30px;
  }

  .product-details-content h2,
  .product-details-content .product-title,
  .product-summary h1,
  .product-summary h2 {
    font-size: 30px;
  }

  .product-gallery,
  .product-details-gallery,
  .product-large-image,
  .product-image-main {
    min-height: 400px;
    padding: 20px;
  }

  .variant-card,
  .variant-item,
  .product-variant-box,
  .variant-option {
    width: calc(50% - 8px);
  }
}

@media (max-width: 767px) {
  .product-details-content h2,
  .product-details-content .product-title,
  .product-summary h1,
  .product-summary h2 {
    font-size: 26px;
  }

  .variant-wrapper,
  .variant-grid,
  .product-variant-list {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 10px;
  }

  .variant-card,
  .variant-item,
  .product-variant-box,
  .variant-option {
    min-width: 140px;
    flex: 0 0 auto;
  }

  .product-details-action,
  .qty-cart-wrap,
  .product-cart-area {
    flex-direction: column;
    align-items: stretch;
  }

  .add-to-cart-btn,
  .cart-btn,
  .btn-cart,
  .buy-now-btn,
  .btn-buy {
    width: 100%;
  }

  .tab-content,
  .tab-content-box,
  .product-tab-content {
    padding: 20px;
  }

  .trust-row,
  .product-trust-badges {
    gap: 10px;
  }

  .product-gallery-vertical .product-gallery-item {
      max-width: 70px !important;
      width: 70px !important;
  }

  .product-gallery-vertical .product-gallery-item img {
      height: 70px;
  }

  .product-gallery-vertical .product-main-image img {
      max-height: 320px;
  }
}

/* ============================================================
   PRODUCT PAGE — BODY SECTION IMPROVEMENTS
   ============================================================ */



/* ── Product main content wrapper ── */
.page-content {
  background: #faf8ff;
  padding-top:10px;
}
.product-details-top {
  background: #fff;
  /* border-radius: 20px; */
  /* box-shadow: 0 4px 32px rgba(92,62,152,0.08); */
  padding: 28px 24px !important;
  /* margin-top: 24px; */
  /* margin-bottom: 24px; */
  border: 1px solid #ede8f8;
}

/* ── Gallery panel ── */
.product-gallery.product-gallery-vertical {
  /* background: #f7f4fc; */
  /* border-radius: 16px; */
  /* padding: 16px;
  border: 1px solid #ede8f8; */
}
.product-main-image {
  /* border-radius: 12px; */
  overflow: hidden;
  background: #fff;
  border: 1px solid #ede8f8;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
}
.product-gallery-item {
  border: 2px solid #ede8f8 !important;
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.product-gallery-item.active,
.product-gallery-item:hover {
  border-color: #5c3e98 !important;
  box-shadow: 0 3px 10px rgba(92,62,152,0.18);
}

/* ── Product title ── */
h1.product-title {
  font-size: 24px !important;
  font-weight: 800 !important;
  color: #2f2a33 !important;
  line-height: 1.3 !important;
  margin-bottom: 10px !important;
}

/* ── Star ratings ── */
.ratings-container {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}
.ratings-container .ratings-text {
  font-size: 12px;
  color: #9e90bc;
  text-decoration: none;
}
.ratings-container .ratings-text:hover { color: #5c3e98; }

/* ── Price ── */
#product-price,
.product-price {
  font-size: 28px !important;
  font-weight: 800 !important;
  color: #5c3e98 !important;
  margin: 12px 0 !important;
  letter-spacing: -0.5px;
}

/* ── Variant summary pill ── */
.variant-summary,
#variant-summary {
  background: linear-gradient(135deg, #f5f1fc, #ede8f8) !important;
  border: 1.5px solid #ddd3f0 !important;
  border-left: 4px solid #5c3e98 !important;
  border-radius: 10px !important;
  padding: 10px 14px !important;
  color: #2f2a33 !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  margin-bottom: 14px;
}
.variant-summary strong,
#variant-summary strong {
  color: #5c3e98;
  font-weight: 700;
}
.variant-summary .text-success,
#variant-summary .text-success {
  color: #5e9b64 !important;
  font-weight: 700;
}

/* ── Short description ── */
.product-content {
  font-size: 14px;
  color: #5a4d7a;
  line-height: 1.8;
  margin-bottom: 18px;
  padding: 12px 14px;
  background: #faf8ff;
  border-radius: 10px;
  border: 1px solid #ede8f8;
}

/* ── "Select a Pack" label ── */
.mb-4 > label,
#variant-container + label,
label[for="variant-container"] {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px !important;
  font-weight: 700 !important;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #5c3e98 !important;
  margin-bottom: 12px !important;
}
.mb-4 > label::before {
  content: '';
  display: inline-block;
  width: 3px;
  height: 14px;
  background: #5c3e98;
  border-radius: 2px;
  flex-shrink: 0;
}

/* ── Variant cards ── */
.variant-card {
  border-radius: 14px !important;
  border: 2px solid #ede8f8 !important;
  background: #fff !important;
  padding: 14px 12px !important;
  box-shadow: 0 2px 10px rgba(92,62,152,0.06) !important;
  transition: all 0.2s !important;
}
.variant-card:hover {
  border-color: #c4b8e0 !important;
  box-shadow: 0 6px 20px rgba(92,62,152,0.14) !important;
  transform: translateY(-3px) !important;
}
.variant-card.active {
  border-color: #5c3e98 !important;
  background: linear-gradient(160deg,#f5f1fc,#ede8f8) !important;
  box-shadow: 0 6px 20px rgba(92,62,152,0.20) !important;
}
.variant-name-vertical {
  font-size: 11px;
  font-weight: 700;
  color: #2f2a33;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 8px;
}
.variant-price-sale {
  font-size: 13px;
  font-weight: 800;
  color: #5c3e98;
  margin-top: 4px;
}
.variant-price-original {
  font-size: 11px;
  color: #b0a4cc;
  text-decoration: line-through;
  margin-top: 2px;
}

/* =========================
   PRODUCT DESCRIPTION TABLE
========================= */
.product-description-body table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  color: var(--text);
  border: 1px solid #dee2e6;
}

.product-description-body table thead tr th {
  background: transparent;
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
  padding: 16px 24px !important;
  text-align: left;
  border: 1px solid #dee2e6;
  border-bottom: 2px solid #dee2e6;
}

.product-description-body table thead tr th:first-child {
  width: 32%;
}

.product-description-body table tbody tr {
  background: #fff;
  transition: background 0.15s ease;
}

.product-description-body table tbody tr:hover {
  background: #f8f9fa;
}

.product-description-body table tbody tr td {
  padding: 16px 24px !important;
  vertical-align: middle;
  line-height: 1.6;
  text-align: left;
  color: var(--text);
  border: 1px solid #dee2e6;
}

.product-description-body table tbody tr td:first-child {
  font-weight: 700;
}