:root {
  --status-switch-bg: linear-gradient(135deg, #f8faf8 0%, #f0fdf4 100%);
  --theme-bg: #f8faf8;
  --theme-bg-light: rgb(188 189 188 / 0.40);
  --theme-color: #252830;
  --theme-border-color: #d1d5db;
}

body.theme-dark {
  --status-switch-bg: linear-gradient(135deg, #252830 0%, #252830 100%);
  --theme-bg: #252830;
  --theme-bg-light: rgb(78 78 78 / 0.40);
  --theme-color: #f8faf8;
  --theme-border-color: rgba(255, 255, 255, 0.08);
}

.pd-gallery-container {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 10px;
  position: relative;
}

.pd-main-img-box {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  background: #fff;
  border: 1.5px solid var(--border-color, rgba(0, 0, 0, 0.08));
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.pd-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

.pd-thumbnails-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 100%;
  overflow-y: auto;
  scrollbar-width: none;
}
.pd-thumbnails-grid::-webkit-scrollbar {
  display: none;
}

.pd-thumb {
  width: 68px;
  height: 68px;
  border-radius: 0.75rem;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  opacity: 0.6;
  transition: all 0.25s ease;
  flex-shrink: 0;
}

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

.pd-thumb.is-active,
.pd-thumb:hover {
  border-color: var(--primary-color, #198754);
  opacity: 1;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.pd-gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition: all 0.2s ease;
  font-size: 1.1rem;
  color: #333;
}

.pd-gallery-nav:hover {
  background: var(--primary-color, #198754);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
}

.pd-gallery-prev {
  left: 12px;
}

.pd-gallery-next {
  right: 12px;
}

.pd-main-img-box .pd-gallery-nav {
  pointer-events: auto;
}

.pd-main-img-box .pd-main-img {
  pointer-events: none;
}

@media (max-width: 991.98px) {
  .pd-gallery-container {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }
  .pd-main-img-box {
    order: 1;
    max-height: 420px;
  }
  .pd-thumbnails-grid {
    flex-direction: row;
    order: 2;
    overflow-x: auto;
    overflow-y: hidden;
    max-height: none;
    padding-bottom: 4px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .pd-thumbnails-grid::-webkit-scrollbar {
    display: none;
  }
  .pd-thumb {
    width: 60px;
    height: 60px;
  }
}
@media (max-width: 575.98px) {
  .pd-main-img-box {
    max-height: 320px;
    border-radius: 0.75rem;
  }
  .pd-thumb {
    width: 50px;
    height: 50px;
    border-radius: 0.5rem;
  }
  .pd-gallery-nav {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
  }
  .pd-gallery-prev {
    left: 8px;
  }
  .pd-gallery-next {
    right: 8px;
  }
}
.pd-verified-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, var(--home-alt-primary, #5bb318) 0%, #3d7a0f 100%);
  border-radius: 50px;
  box-shadow: 0 2px 8px rgba(91, 179, 24, 0.35);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.pd-verified-badge iconify-icon {
  font-size: 0.8rem;
  flex-shrink: 0;
}

@media (max-width: 575.98px) {
  .pd-verified-badge {
    top: 6px;
    left: 6px;
    padding: 3px 8px;
    font-size: 0.55rem;
    gap: 3px;
  }
  .pd-verified-badge iconify-icon {
    font-size: 0.7rem;
  }
}
.pd-action-row {
  display: grid;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  grid-template-columns: auto 1fr;
}

.pd-cart-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pd-icon-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  width: 100%;
}

.pd-action-row .pd-action-btn,
.pd-action-row .pd-action-qty,
.pd-action-row .pd-action-qty-label,
.pd-action-row .pd-action-buy-now, .pd-action-row .btn-add-cart {
  height: 40px !important;
  min-height: 40px;
  padding-top: 0;
  padding-bottom: 0;
}
.pd-action-row .pd-action-btn {
  height: auto !important;
  min-height: unset;
  padding: 0.5rem 2rem !important;
  font-size: 0.875rem !important;
  border-radius: 50px;
  flex-shrink: 0;
  font-weight: 600 !important;
  border: 1px solid rgba(26, 71, 42, 0.2);
  background-color: #5bb318 !important;
}
.pd-action-row .pd-action-qty {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pd-action-row .pd-action-qty-label {
  line-height: 40px;
  font-size: 0.875rem;
  flex-shrink: 0;
}
.pd-action-row .pd-action-btn,
.pd-action-row .pd-action-buy-now {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-wrap: nowrap;
}
.pd-action-row .pd-action-btn.btn-sm,
.pd-action-row .pd-action-buy-now.btn-sm {
  font-size: 0.875rem;
}
.pd-action-row .btn-add-cart {
  min-width: 0;
}
.pd-action-row .pd-action-buy-now {
  font-size: 0.9375rem;
}
.pd-action-row .mimba-share-trigger {
  height: 40px;
  min-height: 40px;
  padding: 0 0.75rem;
  border-radius: 50px;
  font-size: 0.875rem;
}
.pd-action-row .mimba-share-trigger.pd-action-btn {
  height: auto !important;
  min-height: unset !important;
}
.pd-action-row .mimba-share-trigger.pd-action-btn span {
  line-height: 0 !important;
}

@media (max-width: 767.98px) {
  .pd-cart-group {
    flex: 1 1 100%;
  }
  .vendor-info-card .row .col-4 {
    font-size: 0.85rem;
  }
}
@media (max-width: 575.98px) {
  .pd-action-row {
    gap: 0.4rem;
  }
  .pd-cart-group {
    flex: 1 1 100%;
  }
  .pd-icon-group {
    flex: 1 1 100%;
    justify-content: flex-start;
  }
  .pd-action-row .pd-action-btn.btn-sm {
    font-size: 0.8rem;
  }
  .pd-action-row .btn-add-cart {
    font-size: 0.8rem;
  }
}
@media (max-width: 450px) {
  .pd-action-row .pd-action-btn {
    padding: 0.5rem 1rem !important;
    font-size: 0.7rem !important;
  }
  .pd-cart-group {
    grid-column: 1/span 2;
  }
  .pd-cart-group .btn-add-cart {
    width: 100%;
  }
  .pd-cart-group-1 {
    grid-area: 2/1/span 1/span 2;
  }
}
@media (max-width: 991.98px) {
  .product-detail-page .row.g-5 {
    --bs-gutter-x: 1.25rem;
    --bs-gutter-y: 1.5rem;
  }
}
@media (max-width: 767.98px) {
  .product-detail-page .container {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
  .product-detail-page h1 {
    font-size: 1.35rem;
  }
  .product-detail-page .display-6 {
    font-size: 1.5rem;
  }
  .product-detail-page .row.g-5 {
    --bs-gutter-x: 1rem;
    --bs-gutter-y: 1rem;
  }
}
@media (max-width: 575.98px) {
  .product-detail-page .container {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  .product-detail-page h1 {
    font-size: 1.2rem;
  }
  .product-detail-page .display-6 {
    font-size: 1.35rem;
  }
  .product-detail-page .specs-grid {
    padding: 1rem !important;
  }
  .product-detail-page .specs-grid > [class*=col-] {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .vendor-info-card .d-flex.gap-2 .btn {
    width: 100%;
  }
}
.pd-shop-card-wrap {
  margin-top: 1.5rem;
}

.pd-shop-card.pd-shop-card--link {
  background: #fff;
  border: 1px solid rgba(91, 179, 24, 0.15);
  border-radius: 0.75rem;
  padding: 0.875rem 1rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  color: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.pd-shop-card.pd-shop-card--link:hover {
  border-color: rgba(91, 179, 24, 0.35);
  box-shadow: 0 4px 16px rgba(91, 179, 24, 0.08);
}

.pd-shop-card-logo {
  width: 48px;
  height: 48px;
  border: 2px solid rgba(91, 179, 24, 0.2);
  border-radius: 50%;
}

.pd-shop-card-logo-placeholder {
  background: rgba(91, 179, 24, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
}

.pd-shop-card-info {
  flex: 1;
  min-width: 0;
}

.pd-shop-card-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #94a3b8;
  margin-bottom: 2px;
}

.pd-shop-card-name {
  display: block;
  font-weight: 700;
  font-size: 1rem;
  color: #0f172a;
}

.pd-shop-card--link:hover .pd-shop-card-name {
  color: var(--primary-color);
}

.pd-shop-card-verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  color: #16a34a;
  font-weight: 500;
  margin-top: 2px;
}

.pd-shop-card-verified iconify-icon {
  font-size: 0.9rem;
}

@media (min-width: 992px) {
  .pd-shop-card-wrap {
    position: sticky;
    top: 100px;
  }
}
.pd-rating-summary {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem 2rem;
  align-items: start;
  padding: 1.5rem;
  background: linear-gradient(135deg, #f8faf8 0%, #f0fdf4 100%);
  border: 1px solid rgba(91, 179, 24, 0.15);
  border-radius: 1rem;
  margin-bottom: 1.5rem;
}

.pd-rating-score-wrap {
  text-align: center;
  min-width: 100px;
}

.pd-rating-score-value {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--primary-color, #5bb318);
}

.pd-rating-score-stars {
  display: flex;
  gap: 2px;
  justify-content: center;
  margin-top: 0.35rem;
}

.pd-rating-score-stars iconify-icon {
  font-size: 1rem;
  color: #fbbf24;
}

.pd-rating-score-stars iconify-icon.text-muted {
  color: #d1d5db;
}

.pd-rating-score-count {
  font-size: 0.8125rem;
  color: #6b7280;
  margin-top: 0.25rem;
}

.pd-rating-analyzer {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.pd-rating-bar-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
}

.pd-rating-bar-label {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: #374151;
}

.pd-rating-bar-track {
  flex: 1;
  height: 8px;
  background: #e5e7eb;
  border-radius: 999px;
  overflow: hidden;
}

.pd-rating-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #fbbf24 0%, #f59e0b 100%);
  border-radius: 999px;
  transition: width 0.4s ease;
}

.pd-rating-bar-count {
  text-align: right;
  color: #6b7280;
  font-weight: 500;
}

@media (max-width: 575.98px) {
  .pd-rating-summary {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .pd-rating-score-wrap {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
  }
  .pd-rating-score-value {
    font-size: 2rem;
  }
}
.pd-stars-inline {
  display: inline-flex;
  gap: 2px;
}

.pd-stars-inline iconify-icon {
  font-size: 1.1rem;
}

.pd-review-stars-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.pd-review-stars {
  display: inline-flex;
  gap: 2px;
  align-items: center;
}

.pd-review-star-wrap {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: inline-flex;
  gap: 2px;
  align-items: center;
}

.pd-review-star-wrap iconify-icon {
  display: block;
  font-size: 2rem;
  color: #e5e7eb;
  transition: color 0.2s ease;
  pointer-events: none;
}

.pd-review-star-wrap.filled iconify-icon.pd-star-full,
.pd-review-star-wrap.half iconify-icon.pd-star-half {
  color: var(--primary-color, #5bb318);
}

.pd-review-star-wrap .pd-star-half {
  position: absolute;
  left: 0;
  top: 0;
  color: #e5e7eb;
}

.pd-review-star-hit {
  position: absolute;
  top: 0;
  bottom: 0;
  cursor: pointer;
  z-index: 2;
}

.pd-review-star-hit-l {
  left: 0;
  width: 50%;
}

.pd-review-star-hit-r {
  right: 0;
  width: 50%;
}

.pd-review-star-hit:hover ~ iconify-icon,
.pd-review-star-wrap.hover-filled iconify-icon,
.pd-review-star-wrap.filled iconify-icon,
.pd-review-star-wrap.half iconify-icon.pd-star-half {
  color: var(--primary-color, #5bb318);
}

.pd-review-stars-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #374151;
}

.pd-review-value-badge {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #5bb318;
  background: rgba(91, 179, 24, 0.12);
  padding: 0.25rem 0.5rem;
  border-radius: 50%;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
}

.pd-review-stars-full .pd-review-star-wrap {
  cursor: pointer;
}

.pd-review-stars-full .pd-review-star-wrap .pd-star-empty {
  color: #d1d5db;
}

.pd-review-stars-full .pd-review-star-wrap .pd-star-full {
  display: none;
  color: #fbbf24;
}

.pd-review-stars-full .pd-review-star-wrap.filled .pd-star-full {
  display: inline-block;
}

.pd-review-stars-full .pd-review-star-wrap.filled .pd-star-empty {
  display: none;
}

.pd-review-reply {
  background: rgba(91, 179, 24, 0.06);
  border-radius: 0 8px 8px 0;
  padding: 0.75rem 1rem;
}

.pd-reviews-list {
  border-radius: 1rem;
  margin-bottom: 20px;
}

.pd-review-item:nth-child(n+2) {
  padding-top: 1rem;
  position: relative;
}
.pd-review-item:nth-child(n+2):before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 1px;
  width: 300px;
  background: rgba(91, 179, 24, 0.15);
}
.pd-review-item .customer-avatar-box {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--primary-color, #5bb318);
}
.pd-review-item .customer-avatar-box .customer-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.pd-main-media {
  width: 100%;
  height: 100%;
}
.pd-main-media .pd-main-img,
.pd-main-media .pd-main-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: inherit;
}

.pd-thumb {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.pd-thumb img,
.pd-thumb video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.pd-thumb .pd-thumb-video {
  position: relative;
  width: 100%;
  height: 100%;
}
.pd-thumb .pd-thumb-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.pd-thumb .pd-thumb-play iconify-icon {
  font-size: 1.75rem;
  color: #fff;
  background: rgba(0, 0, 0, 0.45);
  border-radius: 999px;
  padding: 0.45rem;
}

.review-avatar-box {
  width: 48px;
  height: 48px;
}
.review-avatar-box .review-avatar-image {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid var(--primary-color, #5bb318);
}

.focus-ring-primary:focus-within {
  border-color: #dee2e6 !important;
  box-shadow: none !important;
  outline: none !important;
}

.pd-review-video-wrap, .pd-review-image-wrap {
  width: 60px;
  height: 50px;
  overflow: hidden;
  display: inline-flex;
  position: relative;
  border-radius: 8px;
  background: #000;
  cursor: pointer;
  line-height: 0;
  vertical-align: middle;
}

.pd-review-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.pd-review-video-wrap:hover .pd-review-video-play {
  opacity: 1;
}

.pd-review-video-wrap.is-playing .pd-review-video-play {
  opacity: 0;
}

.pd-review-vid-time {
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.73);
  color: white;
  font-size: 8px;
  padding: 1px 4px;
  border-radius: 3px;
  z-index: 10;
  pointer-events: none;
  white-space: nowrap;
  line-height: 1.2;
  font-family: monospace;
}

.pd-review-video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
  z-index: 10;
}

.pd-action-btn {
  background: rgba(26, 71, 42, 0.08);
  color: #1a472a;
  border: 1px solid rgba(26, 71, 42, 0.2);
  padding: 0.4rem 1rem;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.2s ease;
}
.pd-action-btn:hover, .pd-action-btn.active {
  border-color: #ffffff;
  background-color: #5bb318 !important;
}

/*# sourceMappingURL=product-detail.css.map */
