/* ==========================================================================
   KEYSHU PRODUCT DETAIL PAGE - PREMIUM STYLES
   ========================================================================== */

:root {
  --primary-color: #03B0B1;
  --primary-light: #e6f7f7;
  --primary-dark: #028e90;
  --text-main: #0f172a;
  --text-muted: #64748b;
  --border-color: #f1f5f9;
  --white: #ffffff;
  --rating-color: #f59e0b;
  --shadow-premium: 0 12px 35px rgba(3, 176, 177, 0.06);
  --shadow-hover: 0 16px 40px rgba(3, 176, 177, 0.12);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-detail-page {
  padding: 40px 0 80px;
  background: linear-gradient(180deg, #ffffff 0%, var(--primary-light) 100%);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* 1. Breadcrumbs */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 30px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  flex-wrap: wrap;
}

.breadcrumb a {
  text-decoration: none;
  color: var(--text-muted);
  transition: var(--transition);
}

.breadcrumb a:hover {
  color: var(--primary-color);
}

.breadcrumb span {
  opacity: 0.6;
}

/* 2. Main Product Info Layout */
.product-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  background-color: #ffffff;
  border-radius: 20px;
  padding: 40px;
  border: 1px solid #f1f5f9;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  margin-bottom: 60px;
}

/* Gallery column */
.product-gallery {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.main-image {
  background-color: transparent;
  border-radius: 0;
  border: none;
  overflow: visible;
  height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: none;
}

.main-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 12px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-image:hover img {
  transform: scale(1.06);
}

.thumbnail-list {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.thumb-item {
  width: 76px;
  height: 76px;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid #e2e8f0;
  cursor: pointer;
  background-color: #f8fafc;
  transition: var(--transition);
}

.thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumb-item:hover {
  border-color: var(--primary-color);
}

.thumb-item.active {
  border-color: var(--primary-color);
  box-shadow: 0 4px 12px rgba(3, 176, 177, 0.2);
}

/* Info Column */
.product-info {
  display: flex;
  flex-direction: column;
}

.product-category {
  font-size: 11px;
  font-weight: 800;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
  background-color: var(--primary-light);
  padding: 3px 10px;
  border-radius: 99px;
  display: inline-block;
  align-self: flex-start;
}

.product-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.3;
  margin: 0 0 10px;
}

.product-meta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 15px;
  font-size: 13px;
}

.rating-box {
  display: flex;
  align-items: center;
  gap: 4px;
}

.rating-box i {
  color: var(--rating-color);
}

.review-count {
  color: var(--text-muted);
  font-weight: 600;
  margin-left: 4px;
}

.sku-info {
  color: var(--text-muted);
  font-weight: 600;
  padding-left: 16px;
  border-left: 1.5px solid #e2e8f0;
}

.product-price-box {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
  background-color: #f8fafc;
  padding: 10px 16px;
  border-radius: 12px;
}

.current-price {
  font-size: 24px;
  font-weight: 800;
  color: #e53935;
}

.old-price {
  font-size: 14px;
  font-weight: 700;
  text-decoration: line-through;
  color: #94a3b8;
}

.discount-tag {
  background-color: #fee2e2;
  color: #ef4444;
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 800;
}

.product-short-desc {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0 0 18px;
  font-weight: 500;
}

/* Dung tich size options */
.option-group {
  margin-bottom: 18px;
}

.option-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 8px;
}

.size-list {
  display: flex;
  gap: 12px;
}

.size-item {
  padding: 8px 18px;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  color: #475569;
  cursor: pointer;
  transition: var(--transition);
}

.size-item:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.size-item.active {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(3, 176, 177, 0.2);
}

/* Purchase Actions row */
.purchase-actions {
  display: flex;
  gap: 12px;
  margin-top: 30px;
  margin-bottom: 20px;
  align-items: center;
}

.quantity-selector {
  display: flex;
  align-items: center;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  height: 42px;
  background-color: #ffffff;
  overflow: hidden;
}

.qty-btn {
  width: 36px;
  height: 100%;
  border: none;
  background: none;
  cursor: pointer;
  font-size: 14px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.qty-btn:hover {
  background-color: #f1f5f9;
  color: var(--primary-color);
}

.qty-input {
  width: 36px;
  border: none;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-main);
  outline: none;
}

.add-to-cart-icon-btn {
  height: 42px;
  width: 42px;
  border-radius: 8px;
  border: 2px solid var(--primary-color);
  background-color: var(--primary-light);
  color: var(--primary-color);
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.add-to-cart-icon-btn:hover {
  background-color: var(--primary-color);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(3, 176, 177, 0.2);
}

.buy-now-btn {
  flex: 1;
  height: 42px;
  background: linear-gradient(135deg, #f44336 0%, #c62828 100%);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  box-shadow: 0 6px 15px rgba(198, 40, 40, 0.2);
  transition: var(--transition);
}

.buy-now-btn:hover {
  background: linear-gradient(135deg, #d32f2f 0%, #b71c1c 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(183, 28, 28, 0.38);
}

.wishlist-btn {
  height: 42px;
  width: 42px;
  border-radius: 8px;
  border: 2px solid #e2e8f0;
  background-color: #ffffff;
  color: #94a3b8;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.wishlist-btn:hover {
  border-color: #fee2e2;
  background-color: #fee2e2;
  color: #ef4444;
}

.wishlist-btn.active {
  border-color: #fee2e2;
  background-color: #fee2e2;
  color: #ef4444;
  animation: heartPop 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes heartPop {
  50% {
    transform: scale(1.3);
  }
}

/* Trust Badges */
.trust-badges {
  display: flex;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1.5px solid #f1f5f9;
  gap: 15px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: #475569;
}

.trust-item i {
  color: var(--primary-color);
  font-size: 14px;
}

/* 3. Description / Ingredients / Usage Tabs */
.product-tabs-container {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 40px;
  border: 1px solid #f1f5f9;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  margin-bottom: 60px;
}

.tabs-header {
  display: flex;
  justify-content: center;
  border-bottom: 1.5px solid #e2e8f0;
  margin-bottom: 30px;
  gap: 30px;
}

.tab-btn {
  background: none;
  border: none;
  font-family: 'Quicksand', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-muted);
  padding: 12px 20px;
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
  border-bottom: 3px solid transparent;
}

.tab-btn:hover {
  color: var(--primary-color);
}

.tab-btn.active {
  color: var(--primary-color);
  border-bottom-color: var(--primary-color);
}

.tab-content {
  display: none;
  max-width: 960px;
  margin: 0 auto;
  animation: tabContentFade 0.4s ease forwards;
}

.tab-content.active {
  display: block;
}

@keyframes tabContentFade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tab-content h4 {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-main);
  margin: 0 0 15px;
}

.tab-content p {
  font-size: 15px;
  line-height: 1.7;
  color: #475569;
  margin: 0 0 20px;
}

.tab-content ul,
.tab-content ol {
  padding-left: 20px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tab-content li {
  font-size: 15px;
  color: #475569;
  line-height: 1.6;
}

.tab-content li strong {
  color: var(--text-main);
}

/* 4. Related Products section */
.related-section {
  margin-top: 80px;
}

.related-section .section-title {
  font-size: 26px;
  font-weight: 800;
  color: var(--text-main);
  text-align: center;
  margin-bottom: 40px;
}

.related-product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* Product Detail Toast notifications */
.pd-toast-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.pd-toast {
  background-color: #0f172a;
  color: #ffffff;
  padding: 14px 24px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: slideInPdToast 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards, fadeOutPdToast 0.3s 2.5s ease-in forwards;
  pointer-events: auto;
}

@keyframes slideInPdToast {
  from {
    transform: translateX(100%);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fadeOutPdToast {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translateY(10px);
  }
}

/* ==========================================================================
   RESPONSIVE DESIGN (BREAKPOINTS)
   ========================================================================== */

@media (max-width: 1024px) {
  .product-main {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 20px 24px 24px !important;
  }

  .main-image {
    height: 380px;
  }

  .related-product-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .product-detail-page {
    padding: 20px 0 50px;
  }

  .breadcrumb {
    margin-bottom: 50px;
    background-color: var(--primary-light);
    border: 1px solid rgba(3, 176, 177, 0.25);
    padding: 8px 16px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    box-shadow: 0 4px 12px rgba(3, 176, 177, 0.05);
    max-width: 100%;
    box-sizing: border-box;
  }

  .breadcrumb a {
    color: var(--primary-dark);
    font-weight: 700;
  }

  .breadcrumb span {
    color: #475569;
  }

  .product-main {
    grid-template-columns: 1fr;
    padding: 20px 16px 16px !important;
    border-radius: 12px;
    gap: 24px;
  }

  .main-image {
    height: 320px;
  }

  .product-gallery {
    gap: 0px !important;
    margin: 0px !important;
    padding: 0px !important;
  }

  .thumb-item {
    width: 60px;
    height: 60px;
    border-radius: 8px;
  }

  .thumbnail-list {
    gap: 8px;
    padding-top: 10px;
  }

  .product-title {
    font-size: 20px;
  }

  .product-meta-row {
    flex-wrap: wrap;
    gap: 8px 12px;
    margin-bottom: 12px;
  }

  .product-price-box {
    padding: 8px 12px;
    gap: 12px;
    margin-bottom: 15px;
  }

  .current-price {
    font-size: 22px;
  }

  .purchase-actions {
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px !important;
    margin-bottom: 35px !important;
  }

  .quantity-selector {
    width: 110px;
    height: 38px;
  }

  .qty-btn {
    width: 32px;
  }

  .qty-input {
    width: 30px;
  }

  .add-to-cart-icon-btn {
    height: 38px;
    width: 38px;
    font-size: 15px;
  }

  .wishlist-btn {
    height: 38px;
    width: 38px;
    font-size: 15px;
  }

  .buy-now-btn {
    width: 100%;
    height: 38px;
    order: 4;
    /* Push buy button to new line */
  }

  .related-product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .trust-badges {
    flex-direction: column;
    gap: 12px;
    padding-top: 20px;
  }
}

@media (max-width: 480px) {
  .product-main {
    grid-template-columns: 1fr;
    padding: 20px 12px 12px !important;
    border-radius: 8px;
  }

  .main-image {
    height: 280px;
  }

  .product-gallery {
    gap: 0px !important;
    margin: 0px !important;
    padding: 0px !important;
  }

  .thumb-item {
    width: 52px;
    height: 52px;
  }

  .thumbnail-list {
    gap: 6px;
    padding-top: 10px;
  }

  .related-product-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .tabs-header {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
    border-bottom: 1.5px solid #e2e8f0;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 2px;
  }

  .tabs-header::-webkit-scrollbar {
    display: none;
  }

  .tab-btn {
    flex-shrink: 0;
    border-bottom: 3px solid transparent;
    border-left: none;
    text-align: center;
    padding: 12px 14px;
    font-size: 15px;
    white-space: nowrap;
  }

  .tab-btn.active {
    border-bottom-color: var(--primary-color);
  }
}

/* ==========================================================================
   2.5 Promo Add-on Deal Widget (Frequently Bought Together Vertical)
   ========================================================================== */
.addon-deal-widget {
  background: linear-gradient(180deg, #ffffff 0%, #f8fdfd 100%);
  border: 1.5px solid rgba(3, 176, 177, 0.25);
  border-radius: 16px;
  padding: 16px;
  margin: 20px 0;
  box-shadow: 0 8px 30px rgba(3, 176, 177, 0.06);
  width: 100%;
  box-sizing: border-box;
}

.ad-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.ad-badge {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: #ffffff;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.ad-title {
  font-size: 13px;
  font-weight: 700;
  color: #0f172a;
}

.ad-body-vertical {
  width: 100%;
}

.ad-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.ad-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background-color: #ffffff;
  transition: all 0.25s ease;
  cursor: pointer;
  user-select: none;
  box-sizing: border-box;
  width: 100%;
}

.ad-item:hover {
  border-color: var(--primary-color);
  background-color: rgba(3, 176, 177, 0.01);
}

.ad-item.checked {
  border-color: var(--primary-color);
  background-color: rgba(3, 176, 177, 0.04);
  box-shadow: 0 4px 12px rgba(3, 176, 177, 0.05);
}

.ad-check-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ad-check-box input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.ad-check-label {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 2px solid #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: transparent;
  font-size: 9px;
  transition: all 0.2s ease;
  cursor: pointer;
}

.ad-item.checked .ad-check-label {
  border-color: var(--primary-color);
  background-color: var(--primary-color);
  color: #ffffff;
}

.ad-thumb {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  border: 1px solid #f1f5f9;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3px;
  flex-shrink: 0;
}

.ad-thumb img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.ad-details {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex-grow: 1;
  min-width: 0;
}

.ad-name {
  font-size: 13px;
  font-weight: 600;
  color: #334155;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}

.ad-item.checked .ad-name {
  color: #0f172a;
}

.ad-hot-tag {
  background: linear-gradient(135deg, #ff4e50 0%, #f9d423 100%);
  color: #ffffff;
  font-size: 8.5px;
  font-weight: 850;
  padding: 2px 6px;
  border-radius: 4px;
  text-transform: uppercase;
  box-shadow: 0 2px 6px rgba(255, 78, 80, 0.2);
  display: inline-block;
}

.ad-price {
  font-size: 13px;
  font-weight: 700;
  color: #0f172a;
  display: flex;
  align-items: center;
  gap: 6px;
}

.ad-promo-price {
  color: #ef4444;
}

.ad-old-price {
  font-size: 11px;
  font-weight: 500;
  color: #94a3b8;
  text-decoration: line-through;
}

.ad-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #f1f5f9;
  padding-top: 14px;
  gap: 12px;
}

.ad-pricing-summary {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ad-price-row {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.ad-label {
  font-size: 12px;
  color: #64748b;
}

.ad-combo-price {
  font-size: 18px;
  font-weight: 800;
  color: #e53935;
}

.ad-old-total {
  font-size: 12px;
  color: #94a3b8;
  text-decoration: line-through;
}

.ad-save-badge {
  font-size: 11px;
  font-weight: 700;
  color: #15803d;
  background-color: #f0fdf4;
  border: 1px solid #bbf7d0;
  padding: 2px 8px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  width: fit-content;
}

.ad-buy-btn {
  background: linear-gradient(135deg, #ff4d4d 0%, #c62828 100%);
  color: #ffffff;
  border: none;
  border-radius: 10px;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  box-shadow: 0 6px 16px rgba(198, 40, 40, 0.25);
}

.ad-buy-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(198, 40, 40, 0.38);
}

/* Responsive */
@media (max-width: 768px) {
  .addon-deal-widget {
    padding: 12px;
    border-radius: 12px;
    margin: 15px 0;
  }

  .ad-item {
    padding: 10px;
    gap: 8px;
  }

  .ad-name {
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    word-break: break-word;
  }

  .ad-footer {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .ad-buy-btn {
    justify-content: center;
    width: 100%;
  }
}

/* ==========================================================================
   2.6 Product Commitments / Services Grid (Left Column Below Thumbnails)
   ========================================================================== */
.product-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 15px;
  padding: 16px;
  background-color: var(--primary-light);
  border: 1px dashed rgba(3, 176, 177, 0.3);
  border-radius: 16px;
  box-sizing: border-box;
  width: 100%;
}

.service-card-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px;
  transition: all 0.25s ease;
  box-sizing: border-box;
  min-width: 0;
}

.service-card-item:hover {
  transform: translateY(-2px);
}

.service-icon-box {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(3, 176, 177, 0.2);
  color: var(--primary-color);
  font-size: 15px;
  transition: all 0.25s ease;
}

.service-card-item:hover .service-icon-box {
  background-color: var(--primary-color);
  color: #ffffff;
  border-color: var(--primary-color);
  box-shadow: 0 4px 10px rgba(3, 176, 177, 0.25);
}

.service-text-content {
  min-width: 0;
  flex-grow: 1;
}

.service-main-title {
  font-size: 12px;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.service-sub-title {
  font-size: 10.5px;
  font-weight: 600;
  color: #64748b;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Responsive adjustment */
@media (max-width: 768px) {
  .product-services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 12px;
  }
}

@media (max-width: 480px) {
  .product-services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    padding: 10px;
  }

  .service-card-item {
    padding: 2px;
    gap: 6px;
    min-width: 0;
  }

  .service-icon-box {
    width: 28px;
    height: 28px;
    font-size: 11px;
  }

  .service-main-title {
    font-size: 10px;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    word-break: break-word;
  }

  .service-sub-title {
    font-size: 9px;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    word-break: break-word;
  }
}

/* ==========================================================================
   REVIEWS TAB UNIQUE STYLES
   ========================================================================== */
.reviews-summary-wrap {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 40px;
  margin-top: 20px;
}

.reviews-score-box {
  background-color: #f8fafc;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid #e2e8f0;
}

.average-score {
  font-size: 48px;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1;
  margin-bottom: 8px;
}

.rating-stars {
  display: flex;
  gap: 4px;
  color: var(--rating-color);
  font-size: 16px;
  margin-bottom: 8px;
}

.total-reviews-count {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
}

.reviews-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.review-item {
  border-bottom: 1.5px solid #f1f5f9;
  padding-bottom: 16px;
}

.review-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.reviewer-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-main);
}

.reviewer-rating {
  display: flex;
  gap: 2px;
  color: var(--rating-color);
  font-size: 12px;
}

.review-text {
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .reviews-summary-wrap {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}