:root {
  --primary-color: #00bcd4;
  --primary-dark: #0097a7;
  --secondary-color: #ff6b35;
  --success-color: #4caf50;
  --text-primary: #1a1a1a;
  --text-secondary: #666;
  --border-color: #e5e7eb;
  --bg-light: #f8fafc;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
}

.page-container .related-products-section {
  padding: 0;
}

.zomzem-package-detail-wrapper .container.section {
  padding: 60px 0;
}

.zomzem-package-detail-wrapper .page-container {
  max-width: 60vw;
  padding: 0;
}

.zomzem-package-detail-wrapper .product-detail-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 30px;
}

/* ===== GALLERY SECTION ===== */
.zomzem-package-detail-wrapper .product-gallery-section {
  position: sticky;
  top: 120px;
  align-self: start;
}

.zomzem-package-detail-wrapper .product-gallery {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.zomzem-package-detail-wrapper .main-image {
  position: relative;
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  aspect-ratio: 1;
}

/* Override for Package Detail Page - 7/5 ratio */
.package-detail-page .zomzem-package-detail-wrapper .main-image {
  aspect-ratio: 7/5;
}

.zomzem-package-detail-wrapper .main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.zomzem-package-detail-wrapper .main-image:hover img {
  transform: scale(1.05);
}

.zomzem-package-detail-wrapper .image-zoom-hint {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  opacity: 0;
  transition: opacity 0.3s;
}

.zomzem-package-detail-wrapper .main-image:hover .image-zoom-hint {
  opacity: 1;
}

.zomzem-package-detail-wrapper .thumbnail-images {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.zomzem-package-detail-wrapper .thumb-item {
  cursor: pointer;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-sm);
  overflow: hidden;
  width: 90px;
  height: 90px;
  transition: all 0.3s ease;
  position: relative;
}

.zomzem-package-detail-wrapper .thumb-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background 0.3s;
}

.zomzem-package-detail-wrapper .thumb-item:hover::after {
  background: rgba(0, 0, 0, 0.1);
}

.zomzem-package-detail-wrapper .thumb-item.active {
  border-color: var(--zz-blue);
  box-shadow: 0 0 0 1px var(--zz-blue);
}

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

/* ==================== PRODUCT INFO ==================== */
.zomzem-package-detail-wrapper .product-info-section {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.zomzem-package-detail-wrapper .product-header {
  border-bottom: 2px solid #f0f0f0;
  padding-bottom: 20px;
}

.zomzem-package-detail-wrapper .product-title {
  font-size: 32px;
  font-weight: 600;
  color: var(--zz-blue-dark);
  line-height: 1.3;
  margin: 0 0 15px 0;
  font-family: 'Philosopher', serif;
}

.zomzem-package-detail-wrapper .product-rating {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.zomzem-package-detail-wrapper .stars {
  display: flex;
  gap: 3px;
  color: #ffc107;
  font-size: 16px;
}

.zomzem-package-detail-wrapper .rating-count,
.zomzem-package-detail-wrapper .sold-count {
  font-size: 14px;
  color: #666;
}

.zomzem-package-detail-wrapper .separator {
  color: #ddd;
}

.zomzem-package-detail-wrapper .product-detail-excerpt {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 5px;
}

/* Price Section */
.zomzem-package-detail-wrapper .price-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 25px;
  border-radius: 12px;
  border-left: 4px solid var(--zz-blue-dark);
}

.zomzem-package-detail-wrapper .price-main {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.zomzem-package-detail-wrapper .price-value {
  font-size: 36px;
  font-weight: 600;
  color: #e74c3c;
  font-family: 'Philosopher', serif;
}

.zomzem-package-detail-wrapper .price-original {
  font-size: 22px;
  color: #999;
  text-decoration: line-through;
}

.zomzem-package-detail-wrapper .price-discount {
  background: #e74c3c;
  color: #fff;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

/* ===== SERVICES HIGHLIGHT ===== */
.zomzem-package-detail-wrapper .services-highlight {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.zomzem-package-detail-wrapper .service-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-size: 13px;
  color: var(--text-secondary);
  transition: all 0.3s;
}

.zomzem-package-detail-wrapper .service-badge:hover {
  background: white;
  border-color: var(--zz-blue);
  color: var(--zz-blue);
  box-shadow: var(--shadow-sm);
}

.zomzem-package-detail-wrapper .service-badge i {
  color: var(--zz-blue);
  font-size: 16px;
}

/* ===== PURCHASE SECTION ===== */
.zomzem-package-detail-wrapper .purchase-section {
  padding-bottom: 20px;
}

.zomzem-package-detail-wrapper .quantity-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
}

.zomzem-package-detail-wrapper .quantity-label {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 15px;
}

.zomzem-package-detail-wrapper .quantity-selector {
  display: flex;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: white;
}

.zomzem-package-detail-wrapper .qty-btn {
  width: 44px;
  height: 44px;
  border: none;
  background: var(--bg-light);
  cursor: pointer;
  font-size: 14px;
  color: var(--text-primary);
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.zomzem-package-detail-wrapper .qty-btn:hover {
  background: var(--zz-blue);
  color: white;
}

.zomzem-package-detail-wrapper .qty-btn:active {
  transform: scale(0.95);
}

.zomzem-package-detail-wrapper #quantity {
  width: 70px;
  border: none;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  -moz-appearance: textfield;
  /* Firefox */
}

/* Hide spin buttons for Chrome, Safari, Edge, Opera */
.zomzem-package-detail-wrapper #quantity::-webkit-outer-spin-button,
.zomzem-package-detail-wrapper #quantity::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* ===== BUY BUTTONS ===== */
.zomzem-package-detail-wrapper .buy-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.zomzem-package-detail-wrapper .btn-add-cart,
.zomzem-package-detail-wrapper .btn-buy-now {
  height: 54px;
  border: none;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.zomzem-package-detail-wrapper .btn-add-cart {
  background: white;
  color: var(--zz-blue);
  border: 2px solid var(--zz-blue);
}

.zomzem-package-detail-wrapper .btn-add-cart:hover {
  background: var(--zz-blue);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.zomzem-package-detail-wrapper .btn-buy-now {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #ff8855 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.zomzem-package-detail-wrapper .btn-buy-now:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.zomzem-package-detail-wrapper .btn-buy-now:active,
.zomzem-package-detail-wrapper .btn-add-cart:active {
  transform: translateY(0);
}

/* ===== PROMOTIONS SECTION ===== */
.zomzem-package-detail-wrapper .promotions-section {
  background: linear-gradient(135deg, #e8f5e9 0%, #f1f8f4 100%);
  padding: 24px;
  border-radius: var(--radius-md);
  border: 1px solid #c8e6c9;
}

.zomzem-package-detail-wrapper .promotion-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.zomzem-package-detail-wrapper .promotion-header i {
  font-size: 22px;
  color: var(--success-color);
}

.zomzem-package-detail-wrapper .promotion-header h3 {
  margin: 0;
  font-size: 17px;
  color: #2e7d32;
  font-weight: 600;
}

.zomzem-package-detail-wrapper .promotion-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.zomzem-package-detail-wrapper .promotion-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--text-primary);
  line-height: 1.6;
  font-size: 14px;
}

.zomzem-package-detail-wrapper .promotion-list li:last-child {
  margin-bottom: 0;
}

.zomzem-package-detail-wrapper .promotion-list i {
  color: var(--success-color);
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

/* ===== DELIVERY INFO ===== */
.zomzem-package-detail-wrapper .delivery-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 20px;
  background: var(--bg-light);
  border-radius: var(--radius-md);
}

.zomzem-package-detail-wrapper .info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.zomzem-package-detail-wrapper .info-item i {
  font-size: 24px;
  color: var(--zz-blue);
  flex-shrink: 0;
  margin-top: 2px;
}

.zomzem-package-detail-wrapper .info-item strong {
  display: block;
  font-size: 14px;
  color: var(--text-primary);
  margin-bottom: 4px;
  font-weight: 600;
}

.zomzem-package-detail-wrapper .info-item p {
  font-size: 13px;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.4;
}

/* ===== TABS ===== */
.zomzem-package-detail-wrapper .product-tabs-wrapper {
  margin: 20px 0;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.zomzem-package-detail-wrapper .product-tabs {
  display: flex;
  border-bottom: 2px solid var(--border-color);
  background: var(--bg-light);
}

.zomzem-package-detail-wrapper .tab-btn {
  flex: 1;
  padding: 18px 24px;
  border: none;
  background: transparent;
  color: var(--text-secondary);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 15px;
  position: relative;
}

.zomzem-package-detail-wrapper .tab-btn::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--zz-blue);
  transform: scaleX(0);
  transition: transform 0.3s;
}

.zomzem-package-detail-wrapper .tab-btn:hover {
  color: var(--zz-blue);
  background: rgba(0, 188, 212, 0.05);
}

.zomzem-package-detail-wrapper .tab-active {
  color: var(--zz-blue);
  background: white;
}

.zomzem-package-detail-wrapper .tab-active::after {
  transform: scaleX(1);
}

.zomzem-package-detail-wrapper .tab-panels {
  padding: 32px;
  background: white;
}

/* ===== DESCRIPTION ===== */
.zomzem-package-detail-wrapper .product-description-wrapper {
  position: relative;
  max-width: 100%;
  overflow: hidden;
}

.zomzem-package-detail-wrapper .product-description {
  line-height: 1.8;
  font-size: 15px;
  color: var(--text-primary);
  max-height: 400px;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.zomzem-package-detail-wrapper .product-description.expanded {
  max-height: none;
}

.zomzem-package-detail-wrapper .description-gradient {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 50px;
  height: 80px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
  transition: opacity 0.3s;
}

.zomzem-package-detail-wrapper .product-description.expanded~.description-gradient {
  opacity: 0;
}

.zomzem-package-detail-wrapper .btn-toggle-description {
  margin-top: 20px;
  background: var(--bg-light);
  border: 2px solid var(--border-color);
  color: var(--zz-blue);
  padding: 12px 28px;
  border-radius: var(--radius-md);
  cursor: pointer;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
  font-size: 14px;
}

.zomzem-package-detail-wrapper .btn-toggle-description:hover {
  background: var(--zz-blue);
  color: white;
  border-color: var(--zz-blue);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.zomzem-package-detail-wrapper .btn-toggle-description i {
  transition: transform 0.3s;
}

/* ===== MARKDOWN CONTENT STYLES ===== */
.zomzem-package-detail-wrapper .product-description h2 {
  font-size: 1.6rem;
  color: var(--zz-blue-dark);
  font-weight: 600;
  margin: 40px 0 20px 0;
  padding-left: 15px;
  border-left: 4px solid var(--zz-blue);
  font-family: 'Philosopher', serif;
  line-height: 1.3;
}

.zomzem-package-detail-wrapper .product-description h3 {
  font-size: 1.25rem;
  color: #34495e;
  font-weight: 600;
  margin: 30px 0 15px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.zomzem-package-detail-wrapper .product-description p {
  margin-bottom: 1.5em;
  color: #555;
}

.zomzem-package-detail-wrapper .product-description strong {
  color: var(--zz-blue);
  font-weight: 600;
}

.zomzem-package-detail-wrapper .product-description ul,
.zomzem-package-detail-wrapper .product-description ol {
  margin: 0 0 25px 0;
  padding-left: 25px;
}

.zomzem-package-detail-wrapper .product-description li {
  position: relative;
  margin-bottom: 8px;
}

.zomzem-package-detail-wrapper .product-description li::marker {
  color: var(--zz-blue);
}

.zomzem-package-detail-wrapper .product-description hr {
  border: 0;
  border-top: 2px solid #eee;
  margin: 40px auto;
  width: 80%;
}

/* Tables */
.zomzem-package-detail-wrapper .product-description table {
  width: 100%;
  border-collapse: collapse;
  margin: 25px 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  font-size: 15px;
}

.zomzem-package-detail-wrapper .product-description th,
.zomzem-package-detail-wrapper .product-description td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #eee;
}

.zomzem-package-detail-wrapper .product-description th {
  background: var(--zz-blue);
  color: #fff;
  font-weight: 600;
}

.zomzem-package-detail-wrapper .product-description tr:hover {
  background: var(--zz-blue-light);
}

/* Responsive Tables */
@media (max-width: 768px) {
  .zomzem-package-detail-wrapper .product-description table {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    font-size: 14px;
  }
  
  .zomzem-package-detail-wrapper .product-description th,
  .zomzem-package-detail-wrapper .product-description td {
    padding: 8px 10px;
    white-space: nowrap;
  }
}

/* Images */
.zomzem-package-detail-wrapper .product-description img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 25px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Toggle Button Icon Rotation */
.zomzem-package-detail-wrapper .product-description.expanded ~ .btn-toggle-description i {
  transform: rotate(180deg);
}

/* ===== COMMENTS ===== */
.zomzem-package-detail-wrapper .comment-box h3 {
  margin: 0 0 24px 0;
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
}

.zomzem-package-detail-wrapper .rating-overview {
  background: var(--bg-light);
  padding: 24px;
  border-radius: var(--radius-md);
  margin-bottom: 24px;
  text-align: center;
}

.zomzem-package-detail-wrapper .rating-score {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.zomzem-package-detail-wrapper .score-number {
  font-size: 48px;
  font-weight: 800;
  color: var(--text-primary);
}

.zomzem-package-detail-wrapper .score-stars {
  display: flex;
  gap: 6px;
  color: #ffa726;
  font-size: 20px;
}

.zomzem-package-detail-wrapper .score-text {
  color: var(--text-secondary);
  font-size: 14px;
}

.zomzem-package-detail-wrapper .comment-form {
  margin-bottom: 32px;
}

.zomzem-package-detail-wrapper .comment-form textarea {
  width: 100%;
  border: 2px solid var(--border-color);
  padding: 16px;
  border-radius: var(--radius-md);
  resize: vertical;
  margin-bottom: 16px;
  font-size: 15px;
  font-family: inherit;
  transition: border-color 0.3s;
}

.zomzem-package-detail-wrapper .comment-form textarea:focus {
  outline: none;
  border-color: var(--zz-blue);
}

.zomzem-package-detail-wrapper .btn-submit-comment {
  padding: 12px 24px;
  border: none;
  background: var(--zz-blue);
  color: white;
  border-radius: var(--radius-md);
  cursor: pointer;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
  font-size: 15px;
}

.zomzem-package-detail-wrapper .btn-submit-comment:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.zomzem-package-detail-wrapper .empty-comment {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-secondary);
}

.zomzem-package-detail-wrapper .empty-comment i {
  font-size: 64px;
  color: var(--border-color);
  margin-bottom: 16px;
}

.zomzem-package-detail-wrapper .empty-comment p {
  margin: 0;
  font-size: 15px;
}

/* ===== WARRANTY INFO ===== */
.zomzem-package-detail-wrapper .warranty-info {
  font-size: 15px;
  margin-bottom: 20px;
  color: #2c3e50;
  font-weight: 500;
  display: flex;
  align-items: center;
}

.zomzem-package-detail-wrapper .warranty-info i {
  color: #27ae60;
  margin-right: 8px;
  font-size: 16px;
}

.zomzem-package-detail-wrapper .warranty-info span span {
  font-weight: 600;
}

@media (max-width: 1250px) {
  .zomzem-package-detail-wrapper .container.section {
    padding: 60px 20px;
  }
}

@media (max-width: 1336px) {
  .zomzem-package-detail-wrapper .product-title {
    font-size: 26px; /* Reduced from 32px */
    margin-bottom: 10px;
  }

  .zomzem-package-detail-wrapper .price-value {
    font-size: 20px; /* Reduced from 36px */
  }

  .zomzem-package-detail-wrapper .price-section {
    padding: 15px;
  }

  .zomzem-package-detail-wrapper .price-original {
    font-size: 16px;
  }
  .zomzem-package-detail-wrapper .price-discount {
    font-size: 10px;
  }
  
  .zomzem-package-detail-wrapper .product-info-section {
    gap: 18px; /* Reduced from 30px */
  }

  .zomzem-package-detail-wrapper .service-badge {
    padding: 8px 12px;
    font-size: 12px;
    gap: 6px;
  }

  .zomzem-package-detail-wrapper .btn-add-cart,
  .zomzem-package-detail-wrapper .btn-buy-now {
    height: 48px; /* Reduced from 54px */
    font-size: 14px;
  }
  
  .zomzem-package-detail-wrapper .rating-count,
  .zomzem-package-detail-wrapper .sold-count {
      font-size: 13px;
  }
  .zomzem-package-detail-wrapper .page-container {
    max-width: 60vw;
  }
}

@media (max-width: 768px) {
  .zomzem-package-detail-wrapper .container.section {
    padding: 40px 10px;
  }

  .zomzem-package-detail-wrapper .page-container,
  .zomzem-package-detail-wrapper .page-container {
    max-width: 95vw;
  }

  .zomzem-package-detail-wrapper .product-detail-wrapper {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 10px;
  }

  .zomzem-package-detail-wrapper .product-gallery-section {
    position: relative;
    top: 0;
    margin-bottom: 12px;
  }

  .zomzem-package-detail-wrapper .main-image {
    border-radius: 12px;
    aspect-ratio: 1/1;
    min-height: 220px;
    max-height: 600px;
  }

  .zomzem-package-detail-wrapper .thumbnail-images {
    gap: 6px;
    margin-top: 8px;
  }

  .zomzem-package-detail-wrapper .thumb-item {
    width: 56px;
    height: 56px;
    border-radius: 8px;
  }

  .zomzem-package-detail-wrapper .product-info-section {
    gap: 14px;
  }

  .zomzem-package-detail-wrapper .product-header {
    padding-bottom: 12px;
  }

  .zomzem-package-detail-wrapper .product-title {
    font-size: 1.15rem;
    margin-bottom: 6px;
  }

  .zomzem-package-detail-wrapper .product-rating {
    gap: 6px;
    font-size: 13px;
  }

  .zomzem-package-detail-wrapper .price-section {
    padding: 12px;
    border-radius: 10px;
  }

  .zomzem-package-detail-wrapper .price-main {
    gap: 8px;
  }

  .zomzem-package-detail-wrapper .price-value {
    font-size: 1.3rem;
  }

  .zomzem-package-detail-wrapper .price-original {
    font-size: 1rem;
  }

  .zomzem-package-detail-wrapper .price-discount {
    font-size: 12px;
    padding: 2px 8px;
    border-radius: 4px;
  }

  .zomzem-package-detail-wrapper .services-highlight {
    gap: 6px;
  }

  .zomzem-package-detail-wrapper .service-badge {
    padding: 7px 10px;
    font-size: 12px;
    border-radius: 7px;
  }

  .zomzem-package-detail-wrapper .purchase-section {
    padding-bottom: 10px;
  }

  .zomzem-package-detail-wrapper .quantity-wrapper {
    gap: 8px;
  }

  .zomzem-package-detail-wrapper .quantity-label {
    font-size: 13px;
  }

  .zomzem-package-detail-wrapper .quantity-selector {
    border-radius: 7px;
  }

  .zomzem-package-detail-wrapper .qty-btn {
    width: 32px;
    height: 32px;
    font-size: 13px;
  }

  .zomzem-package-detail-wrapper #quantity {
    width: 40px;
    font-size: 14px;
  }

  .zomzem-package-detail-wrapper .buy-buttons {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .zomzem-package-detail-wrapper .btn-add-cart,
  .zomzem-package-detail-wrapper .btn-buy-now {
    height: 44px;
    font-size: 13px;
    border-radius: 8px;
    gap: 6px;
  }

  .zomzem-package-detail-wrapper .promotions-section {
    padding: 12px;
    border-radius: 10px;
  }

  .zomzem-package-detail-wrapper .promotion-header h3 {
    font-size: 15px;
  }

  .zomzem-package-detail-wrapper .promotion-list li {
    font-size: 12px;
    gap: 8px;
    margin-bottom: 8px;
  }

  .zomzem-package-detail-wrapper .delivery-info {
    padding: 10px;
    border-radius: 10px;
    gap: 8px;
    grid-template-columns: 1fr;
  }

  .zomzem-package-detail-wrapper .info-item strong {
    font-size: 12px;
  }

  .zomzem-package-detail-wrapper .info-item p {
    font-size: 11px;
  }

  .zomzem-package-detail-wrapper .product-tabs-wrapper {
    margin-top: 24px;
    margin-inline: 0;
    border-radius: 10px;

  }

  .product-tabs {
    font-size: 13px;
  }

  .tab-btn {
    padding: 10px 8px;
    font-size: 13px;
  }

  .tab-panels {
    padding: 10px;
  }

  .product-description {
    font-size: 13px;
    max-height: 220px;
  }

  .btn-toggle-description {
    padding: 8px 16px;
    font-size: 12px;
    border-radius: 8px;
    margin-top: 10px;
  }

  .comment-box h3 {
    font-size: 16px;
  }

  .rating-overview {
    padding: 12px;
    border-radius: 10px;
  }

  .score-number {
    font-size: 2rem;
  }

  .score-stars {
    font-size: 1.1rem;
  }

  .comment-form textarea {
    padding: 10px;
    font-size: 13px;
    border-radius: 8px;
  }

  .btn-submit-comment {
    padding: 8px 14px;
    font-size: 13px;
    border-radius: 8px;
  }

  .empty-comment {
    padding: 30px 4px;
    font-size: 13px;
  }

  .empty-comment i {
    font-size: 36px;
    margin-bottom: 8px;
  }

  .related-products-section .section-title {
    font-size: 1.2rem;
    margin-bottom: 16px;
  }

  .related-products-section .products-grid {
    gap: 10px;
    grid-template-columns: 1fr 1fr;
  }
}