/* Swiper Base Styles */
.swiper-container {
  position: relative;
  overflow: hidden;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(
    --swiper-wrapper-transition-timing-function,
    initial
  );
  box-sizing: content-box;
}

.quick-view__main .swiper-button-next::after,
.quick-view__main .swiper-button-prev::after {
  display: none !important;
}

/* Product Gallery Swiper Styles */
.product-gallery {
  width: 100%;
  min-height: 200px;
}

.product-gallery__container {
  display: flex;
  gap: 16px;
  min-height: 300px;
  max-width: 100%;
  overflow: hidden;
}

/* Main Swiper */
.product-gallery__main {
  flex: 1;
  border-radius: 12px;
  overflow: hidden;
  background: #f8f8f8;
  min-height: 300px;
  max-width: 100%;
  width: 100%;
}

.product-gallery__main .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100% !important;
  max-width: 100%;
  height: auto !important;
  min-height: 400px;
}

.product-gallery__main-item {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-gallery__main-img {
  max-width: 100%;
  max-height: 500px;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  cursor: zoom-in;
}

.product-gallery__main-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  opacity: 0.9;
  transition:
    opacity 0.3s,
    transform 0.3s;
  background: rgba(0, 0, 0, 0.7);
  padding: 10px;
  border-radius: 50%;
  z-index: 5;
}

.product-gallery__main-play:hover {
  opacity: 1;
  background: rgba(0, 0, 0, 0.9);
  transform: translate(-50%, -50%) scale(1.1);
}

/* Swiper Navigation */
.product-gallery__main .swiper-button-next,
.product-gallery__main .swiper-button-prev {
  color: var(--primary-color, #333);
  background: rgba(255, 255, 255, 0.9);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 20;
}

.product-gallery__main .swiper-button-next::after,
.product-gallery__main .swiper-button-prev::after {
  font-size: 18px;
  font-weight: bold;
}

/* Thumbs Swiper - Vertical (Desktop) */
.product-gallery__thumbs--vertical {
  width: 100px;
  height: 420px;
  flex-shrink: 0;
}

.product-gallery__thumbs--vertical .swiper-wrapper {
  flex-direction: column;
}

/* Thumbs Swiper - Horizontal (Mobile) */
.product-gallery__thumbs--horizontal {
  width: 100%;
  margin-top: 16px;
}

.product-gallery__thumbs .swiper-slide {
  cursor: pointer;
  opacity: 0.6;
  transition:
    opacity 0.3s,
    border-color 0.3s;
}

.product-gallery__thumbs .swiper-slide-thumb-active {
  opacity: 1;
}

.product-gallery__thumbs
  .swiper-slide-thumb-active
  .product-gallery__thumb-item {
  border-color: var(--primary-color, #333);
}

.product-gallery__thumb-item {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  background: #f8f8f8;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-gallery__thumb-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.product-gallery__thumb-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 24px !important;
  height: 24px !important;
  opacity: 0.8;
}

/* Iframe Video */
.iframe-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.iframe-video iframe {
  width: 100%;
  height: 100%;
  border-radius: 8px;
}

.iframe-close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  z-index: 11;
  background: rgba(0, 0, 0, 0.5);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: none;
}

.iframe-close-btn:hover {
  background: rgba(0, 0, 0, 0.8);
}

.custom-slide .swiper-wrapper .swiper-slide {
  width: 200px !important;
}

/* Product Wishlist Button Styles */
.product-wishlist-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.product-wishlist-btn .wishlist-btn {
  background: transparent;
  border: none;
  padding: 12px 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-wishlist-btn .wishlist-btn:hover {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 8px;
}

.product-wishlist-btn .wishlist-btn:hover i {
  transform: scale(1.1);
}

.product-wishlist-btn .wishlist-btn i {
  font-size: 24px;
  color: #999;
  transition: all 0.3s ease;
}

.product-wishlist-btn .wishlist-btn.added-heart i {
  color: #e74c3c;
}

.product-wishlist-btn .wishlist-btn.unadded-heart:hover i {
  color: #e74c3c;
}

.product-wishlist-btn .wishlist-link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 14px;
  transition: all 0.3s ease;
}

.product-wishlist-btn .wishlist-link:hover {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 8px;
}

.product-wishlist-btn .wishlist-link:hover i {
  color: #e74c3c;
  transform: scale(1.1);
}

.product-wishlist-btn .wishlist-link i {
  font-size: 24px;
  color: #999;
  transition: all 0.3s ease;
}

.product-wishlist-btn .product-loader {
  position: absolute;
}

/* ===== PRODUCT INFO SECTION STYLES ===== */

/* Base text color - Black */
.products-details-page,
.products-details-page h1,
.products-details-page h2,
.products-details-page h3,
.products-details-page h4,
.products-details-page p,
.products-details-page span,
.products-details-page label,
.products-details-page .lang {
  color: #000;
}

/* Product Title */
.products-details-page h1 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

/* Product Features Section */
.products-details-page .product-features {
  font-size: 14px;
  margin-top: 12px;
  gap: 12px;
  color: #333;
}

.products-details-page .product-count .lang,
.products-details-page .low-quantity-section .low-quantity,
.products-details-page .bundle-offer-section .bundle-offer-title {
  color: #333;
  font-size: 14px;
}

/* Price Styling */
/*.products-details-page .product-formatted-price {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-color, #333) !important;
  margin: 1rem 0 0.25rem 0;
}

.products-details-page .product-formatted-price-old {
  color: #888;
  font-size: 16px;
}

 .products-details-page .product-formatted-price-discount {
  color: #e74c3c !important;
  font-size: 14px;
  font-weight: 600;
} */

/* Short Description */
.products-details-page .text-short-description {
  color: #444;
  font-size: 15px;
  line-height: 1.6;
  margin: 1rem 0;
  padding: 0;
}

.products-details-page .text-short-description a {
  color: var(--primary-color, #333);
  font-weight: 500;
}

/* Section Dividers */
.products-details-page .border-product {
  border-top: 1px solid #e8e8e8;
  margin: 20px 0;
}

/* Product SKU & Weight Sections */
.products-details-page .div-product-sku,
.products-details-page .div-product-weight {
  background: #f9f9f9;
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 16px !important;
}

.products-details-page .div-product-sku .product-title,
.products-details-page .div-product-weight .product-title {
  font-size: 13px;
  font-weight: 600;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.products-details-page .product-sku,
.products-details-page .product-weight {
  color: #000;
  font-size: 15px;
  font-weight: 500;
}

/* ===== FORM & INPUT STYLES ===== */

/* Size/Variant Options Box */
.products-details-page .size-box {
  margin: 20px 0;
}

.products-details-page .size-box label,
.products-details-page .size-box .product-title {
  color: #000;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
}
.size-box #product-variants-options ul {
  list-style: none;
  margin: 0px;
  padding: 0px;
}

.size-box #product-variants-options ul li {
  width: auto;
  padding: 5px 10px;
  margin-right: 10px;
  cursor: pointer;
  border: 1px solid #efefef;
  text-align: center;
  margin-bottom: 10px;
  display: inline-block;
}

.rtl .size-box #product-variants-options ul li {
  margin-right: 0px;
  margin-left: 10px;
}

.size-box #product-variants-options ul li a {
  color: #222222;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.size-box #product-variants-options ul li.active {
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
}

/* Form Controls - General */
.products-details-page .form-control {
  background: #fff;
  border: 1.5px solid #ddd;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 15px;
  color: #000;
  transition: all 0.2s ease;
}

.products-details-page .form-control:focus {
  border-color: var(--primary-color, #333);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
  outline: none;
}

.products-details-page .form-control::placeholder {
  color: #999;
}

/* Select Dropdowns */
.products-details-page select.form-control,
.products-details-page .form-select {
  background: #fff
    url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23333' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e")
    no-repeat right 12px center;
  background-size: 14px;
  padding-right: 40px;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

/* Radio & Checkbox Options */
.products-details-page input[type="radio"],
.products-details-page input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--primary-color, #333);
  cursor: pointer;
}

/* Variant Buttons/Pills */
.products-details-page .variant-option,
.products-details-page .option-btn {
  display: inline-block;
  padding: 10px 20px;
  border: 2px solid #ddd;
  border-radius: 8px;
  background: #fff;
  color: #000;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  margin: 4px;
}

.products-details-page .variant-option:hover,
.products-details-page .option-btn:hover {
  border-color: var(--primary-color, #333);
}

.products-details-page .variant-option.selected,
.products-details-page .variant-option.active,
.products-details-page .option-btn.selected,
.products-details-page .option-btn.active {
  border-color: var(--primary-color, #333);
  background: var(--primary-color, #333);
  color: #fff;
}

/* Quantity Controls */
.quantity-wrapper {
  display: inline-flex;
  align-items: center;
  border: 2px solid #ddd;
  border-radius: 10px;
  padding: 8px 16px;
  gap: 16px;
  background: #fff;
}

.quantity-input {
  width: 50px;
  text-align: center;
  background: transparent;
  border: none;
  color: #000;
  font-size: 16px;
  font-weight: 600;
}

.quantity-input::-webkit-outer-spin-button,
.quantity-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.minus_q,
.plus_q {
  background: #f5f5f5;
  border: none;
  color: #000;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  padding: 6px 12px;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.minus_q:hover,
.plus_q:hover {
  background: var(--primary-color, #333);
  color: #fff;
}

.minus_q:focus,
.plus_q:focus,
.quantity-input:focus {
  outline: none;
}

.select-quantity-div {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 20px 0;
}

.select-quantity-div .product-title {
  font-size: 14px;
  font-weight: 600;
  color: #000;
  margin: 0;
}

/* ===== NOTIFY ME SECTION ===== */
.products-details-page .section-out-of-stock-notify-me {
  background: #fef9f9;
  border: 1px solid #f5e0e0;
  border-radius: 12px;
  padding: 20px;
  margin: 20px 0;
}

.products-details-page .section-out-of-stock-notify-me .product-title {
  color: #c0392b;
  font-weight: 600;
  margin-bottom: 16px;
}

.products-details-page .form-notify-me {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.products-details-page .form-notify-me h4 {
  color: #000;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
}

.products-details-page .form-notify-me .form-control {
  padding: 12px 14px;
  font-size: 14px;
}

.products-details-page .form-notify-me-phone-row {
  display: flex;
  gap: 10px;
}

.products-details-page .form-notify-me-phone-row .send-notify-country-key {
  width: 80px;
  flex-shrink: 0;
}

.products-details-page .btn-send-notify {
  background: var(--primary-color, #333);
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 8px;
}

.products-details-page .btn-send-notify:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

/* ===== DESCRIPTION SECTION ===== */
.products-details-page #product-description {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  border: 1px solid #eee;
}

.products-details-page .description-icon {
  font-size: 24px;
  color: var(--primary-color, #333);
  margin-right: 12px;
}

/* .products-details-page .description-title {
  font-size: 18px;
  font-weight: 700;
  color: #000;
  line-height: 1.4;
} */

/* .products-details-page .description-paragrah {
  font-size: 15px;
  line-height: 1.8;
  color: #333;
  margin-top: 16px;
}

.products-details-page .description-paragrah p,
.products-details-page .description-paragrah span,
.products-details-page .description-paragrah li {
  color: #333;
}
.products-details-page .description-paragrah img {
  object-fit: contain;
  width: 100%;
  height: auto;
} */

/* ===== PRODUCT SELECTION / VARIANTS TABLE ===== */
.products-details-page .product-selection {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  border: 1px solid #f0f0f0;
}

.products-details-page .product-selection .description-icon {
  background: linear-gradient(
    135deg,
    var(--primary-color, #333) 0%,
    rgba(0, 0, 0, 0.7) 100%
  );
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
}

.products-details-page .product-selection .description-icon span {
  color: #fff;
  font-size: 20px;
}

/* .products-details-page .product-selection .description-title {
  font-size: 20px;
  font-weight: 700;
  color: #000;
} */

.products-details-page .product-selection .card-table {
  margin-top: 20px;
}

.products-details-page .product-selection .card {
  border: none;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 12px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.products-details-page .product-selection .card-table-header {
  background: linear-gradient(135deg, #f8f9fa 0%, #f0f0f0 100%);
  border-bottom: 2px solid #e8e8e8;
}

.products-details-page .product-selection .card-table-header .row {
  font-weight: 600;
  font-size: 13px;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.products-details-page .product-selection .card-body {
  padding: 16px 20px;
  background: #fff;
}

.products-details-page .product-selection .options-table .card {
  border: 1px solid #eee;
  transition: all 0.2s ease;
}

.products-details-page .product-selection .options-table .card:hover {
  border-color: var(--primary-color, #333);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.products-details-page .product-selection .options-table .col {
  display: flex;
  align-items: center;
  color: #333;
  font-size: 14px;
}

.products-details-page .product-selection .variant-name-sm {
  font-size: 11px;
  font-weight: 600;
  color: #888;
  text-transform: uppercase;
  margin-right: 8px;
  background: #f5f5f5;
  padding: 2px 8px;
  border-radius: 4px;
}

.products-details-page .product-selection .variant-image-wrapper {
  margin-right: 8px;
}

.products-details-page .product-selection .variant-image-wrapper .box-1-1 {
  width: 60px;
  height: 60px;
  border: 2px solid #eee;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.2s ease;
}

.products-details-page
  .product-selection
  .variant-image-wrapper
  .box-1-1:hover {
  border-color: var(--primary-color, #333);
}

.products-details-page .product-selection .variant-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.products-details-page .product-selection .price-detail {
  color: var(--primary-color, #333);
  font-weight: 700;
}

.products-details-page .product-selection .price-detail del {
  color: #999;
  font-weight: 400;
  margin-left: 8px;
  font-size: 0.9em;
}

/* ===== REVIEW DETAILS / QUESTIONS SECTION ===== */
.products-details-page .review-details {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  border: 1px solid #f0f0f0;
}

.products-details-page .review-details .description-icon {
  background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
}

.products-details-page .review-details .description-icon span {
  color: #fff;
  font-size: 20px;
}

/* .products-details-page .review-details .description-title {
  font-size: 20px;
  font-weight: 700;
  color: #000;
  flex: 1;
} */

.products-details-page .review-details .add-review-btn,
.products-details-page .review-details #addQuestionButton {
  background: var(--primary-color, #333);
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.products-details-page .review-details .add-review-btn:hover,
.products-details-page .review-details #addQuestionButton:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.products-details-page .review-details .add-review-btn span,
.products-details-page .review-details #addQuestionButton span {
  color: #fff;
}

/* Questions List */
.products-details-page .review-details .questions-list,
.products-details-page .review-details .reviews-list {
  margin-top: 24px;
}

.products-details-page .review-details .question-item,
.products-details-page .review-details .review-item {
  background: #f9f9f9;
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 12px;
  border-left: 4px solid var(--primary-color, #333);
}

.products-details-page .review-details .question-item:hover,
.products-details-page .review-details .review-item:hover {
  background: #f5f5f5;
}

.products-details-page .review-details .empty-state {
  text-align: center;
  padding: 40px 20px;
  color: #888;
}

.products-details-page .review-details .empty-state i {
  font-size: 48px;
  color: #ddd;
  margin-bottom: 16px;
  display: block;
}

/* ===== ACTION BUTTONS ===== */
.products-details-page .finish-buy {
  width: 100%;
}

.products-details-page .btn-add-to-cart {
  flex: 1;
  min-width: 200px;
}
.btn-add-to-cart {
  background-color: var(--primary-color);
  color: var(--text-color-primary-bg);
  width: 100%;
  padding: 10px;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.products-details-page .btn-buy-now {
  flex: 1;
  min-width: 200px;
}
.btn-buy-now {
  background-color: transparent;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  width: 100%;
  height: 100%;
  padding: 10px;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
/* Share Product Section */
.products-details-page .product-social {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.products-details-page .product-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #ddd;
  border-radius: 50%;
  color: #555;
  font-size: 16px;
  transition: all 0.2s ease;
}

.products-details-page .product-social a:hover {
  border-color: var(--primary-color, #333);
  color: var(--primary-color, #333);
  background: #f9f9f9;
}

/* Product Icon */
.product-icon {
  margin-top: 10px;
}

/* Responsive: Mobile */
@media (max-width: 991.98px) {
  .product-gallery {
    max-width: 100%;
    overflow: hidden;
  }

  .product-gallery__container {
    flex-direction: column;
    max-width: 100%;
  }

  .product-gallery__main {
    max-width: 100%;
    width: 100%;
  }

  .product-gallery__main-img {
    max-height: 400px;
  }

  .product-gallery__thumbs--vertical {
    display: none !important;
  }

  .product-gallery__thumbs--horizontal {
    display: block !important;
    max-width: 100%;
    overflow: hidden;
  }

  .products-details-page .product-selection,
  .products-details-page .review-details {
    padding: 16px;
  }

  .products-details-page .product-selection .description-icon,
  .products-details-page .review-details .description-icon {
    width: 36px;
    height: 36px;
    margin-right: 12px;
  }

  .products-details-page .product-selection .description-icon span,
  .products-details-page .review-details .description-icon span {
    font-size: 16px;
  }

  /* .products-details-page .product-selection .description-title,
  .products-details-page .review-details .description-title {
    font-size: 16px;
  } */
}

@media (max-width: 767px) {
  .select-quantity-div {
    flex-direction: column;
    align-items: flex-start;
  }

  .product-gallery {
    padding-left: 0;
    padding-right: 0;
    max-width: 100vw;
    overflow: hidden;
  }

  .product-gallery__main {
    min-height: 250px;
    max-width: 100%;
  }

  .product-gallery__main .swiper-slide {
    max-width: 100%;
  }

  .product-gallery__main-img {
    max-height: 350px;
  }

  .quantity-wrapper {
    width: 100%;
    max-width: 220px;
    justify-content: space-between;
  }

  .products-details-page h1 {
    font-size: 1.5rem;
  }

  /* .products-details-page .product-formatted-price {
    font-size: 24px;
  } */

  .products-details-page .finish-buy {
    width: 100%;
  }

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

  .products-details-page #product-description {
    padding: 16px;
  }

  .products-details-page .review-details .add-review-btn,
  .products-details-page .review-details #addQuestionButton {
    padding: 8px 14px;
    font-size: 12px;
    margin-left: 0;
    margin-top: 12px;
    width: 100%;
    justify-content: center;
  }

  .products-details-page .review-details > div:first-child {
    flex-wrap: wrap;
  }

  .col-product-info {
    padding-top: 20px;
  }

  .product-gallery__main-play {
    width: 40px;
    height: 40px;
    padding: 8px;
  }

  .iframe-close-btn {
    width: 30px;
    height: 30px;
    font-size: 20px;
  }
}

/* Ensure content is visible */
.products-details-page {
  background: #fff;
  min-height: 100vh;
  padding: 15px 0;
}

.products-details-page .container {
  background: #fff;
}

.product-imgs {
  background: #fff;
}

/* ===== Product Tabs & Navigation Styling ===== */
.product-tabs {
  margin-top: 40px;
  border-top: 1px solid #ddd;
}

.tabs-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  border-bottom: 2px solid #eee;
  position: relative;
}

.tab-btn {
  padding: 15px 20px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: #666;
  transition: all 0.3s ease;
  position: relative;
}

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

.tab-btn.active {
  color: var(--primary-color, #003366);
  border-bottom: 3px solid var(--primary-color, #003366);
  padding-bottom: 12px;
}

.tabs-content {
  padding: 20px 0;
}

.tab-pane {
  display: none;
}

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

@media (max-width: 768px) {
  .tabs-nav {
    gap: 5px;
  }

  .tab-btn {
    padding: 12px 15px;
    font-size: 13px;
  }
}

/* Text styling */
.products-details-page .description-paragrah {
  font-size: 1.5rem;
  line-height: 1.5;
  color: var(--white-color);
}

.products-details-page .description-title {
  font-size: 1.5rem;
  line-height: 1.5;
  color: #ffd665;
}

.products-details-page .product-formatted-price {
  font-size: 32px;
  font-weight: 500;
  color: var(--primary-color);
  margin: 1rem 0;
}

.add-review-btn {
  margin-left: 15px;
}

.rtl .add-review-btn {
  margin-left: unset;
  margin-right: 15px;
}

.add-review-btn {
  background-color: var(--primary-color) !important;
  color: var(--text-color-primary-bg) !important;
  border: none !important;
}

.description-paragrah p img {
  width: 100%;
  object-fit: contain;
  height: auto;
}
