/* ReyOro Product Bundle Styles */

/* Base Styles */
.product-bundle {
  background: #000000;
  color: #ffffff;
  font-family: 'GTStandard-M', -apple-system, BlinkMacSystemFont, sans-serif;
}

.product-bundle__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

/* Countdown Banner */
.product-bundle__countdown-banner {
  background: linear-gradient(135deg, #d4af37 0%, #f4d03f 50%, #d4af37 100%);
  padding: 0;
  margin: 0;
}

.product-bundle__countdown-banner-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.product-bundle__countdown-banner-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.product-bundle__countdown-banner-title {
  font-size: 20px;
  font-weight: 700;
  color: #000;
}

.product-bundle__countdown-banner-subtitle {
  font-size: 16px;
  font-weight: 600;
  color: #000;
}

.product-bundle__countdown-banner-timer {
  display: flex;
  align-items: center;
  gap: 8px;
}

.countdown-banner-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #000;
  padding: 8px 12px;
  border-radius: 8px;
  min-width: 50px;
}

.countdown-banner-value {
  font-size: 24px;
  font-weight: 700;
  color: #d4af37;
  line-height: 1;
}

.countdown-banner-label {
  font-size: 10px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
}

.countdown-banner-separator {
  font-size: 24px;
  font-weight: 700;
  color: #000;
}

/* Product Images */
.product-bundle__images {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.product-bundle__main-image-wrapper {
  background: #111;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 1;
}

.product-bundle__main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-bundle__thumbnail-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.product-bundle__thumbnail-list {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  flex: 1;
}

.product-bundle__thumbnail-list::-webkit-scrollbar {
  display: none;
}

.product-bundle__thumbnail {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border: 2px solid transparent;
  border-radius: 8px;
  overflow: hidden;
  background: #111;
  cursor: pointer;
  transition: border-color 0.2s;
  padding: 0;
}

.product-bundle__thumbnail.active,
.product-bundle__thumbnail:hover {
  border-color: #d4af37;
}

.product-bundle__thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-bundle__thumbnail-arrow {
  width: 40px;
  height: 40px;
  border: none;
  background: #222;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background 0.2s;
  flex-shrink: 0;
}

.product-bundle__thumbnail-arrow:hover {
  background: #d4af37;
  color: #000;
}

.product-bundle__thumbnail-arrow svg {
  width: 20px;
  height: 20px;
}

/* Product Info */
.product-bundle__info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.product-bundle__happy-customers {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #888;
}

.product-bundle__happy-stars {
  color: #d4af37;
  font-size: 16px;
}

.product-bundle__title {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.2;
}

.product-bundle__free-gifts-banner {
  border-radius: 12px;
  overflow: hidden;
}

.product-bundle__free-gifts-banner img {
  width: 100%;
  height: auto;
  display: block;
}

/* Bundle Items */
.product-bundle__bundle-combined {
  background: #111;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.product-bundle__bundle-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 16px;
  background: #1a1a1a;
  border-radius: 12px;
}

.product-bundle__bundle-item--main {
  background: #222;
  border: 2px solid #d4af37;
}

.product-bundle__bundle-item--gift {
  background: #1a1a1a;
}

.product-bundle__bundle-item--total {
  background: transparent;
  border-top: 1px solid #333;
  border-radius: 0;
  padding-top: 20px;
  margin-top: 4px;
}

.product-bundle__bundle-image {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  background: #000;
}

.product-bundle__bundle-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-bundle__bundle-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product-bundle__bundle-title {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin: 0;
}

.product-bundle__gift-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-bundle__gift-select {
  background: #333;
  border: 1px solid #444;
  border-radius: 6px;
  padding: 8px 12px;
  color: #fff;
  font-size: 13px;
  cursor: pointer;
  min-width: 100px;
}

.product-bundle__gift-select:focus {
  outline: none;
  border-color: #d4af37;
}

.product-bundle__bundle-price-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.product-bundle__bundle-price-compare {
  font-size: 14px;
  color: #666;
  text-decoration: line-through;
}

.product-bundle__bundle-price-current {
  font-size: 20px;
  font-weight: 700;
  color: #d4af37;
}

.product-bundle__bundle-price-free {
  font-size: 16px;
  font-weight: 700;
  color: #4ade80;
  background: rgba(74, 222, 128, 0.1);
  padding: 4px 12px;
  border-radius: 20px;
}

.product-bundle__total-left {
  grid-column: 1 / 3;
}

.product-bundle__total-text {
  font-size: 18px;
  font-weight: 600;
  color: #888;
}

.product-bundle__total-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.product-bundle__total-compare {
  font-size: 18px;
  color: #666;
  text-decoration: line-through;
}

.product-bundle__total-current {
  font-size: 32px;
  font-weight: 700;
  color: #d4af37;
}

.product-bundle__total-usd {
  font-size: 14px;
  color: #888;
}

/* Trust Badge */
.product-bundle__trust-badge {
  border-radius: 12px;
  overflow: hidden;
}

.product-bundle__trust-badge img {
  width: 100%;
  height: auto;
  display: block;
}

/* Add to Cart Button */
.product-bundle__add-to-cart {
  background: linear-gradient(135deg, #d4af37 0%, #f4d03f 50%, #d4af37 100%);
  color: #000;
  font-size: 20px;
  font-weight: 700;
  padding: 20px 40px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.product-bundle__add-to-cart:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

/* Gift Countdown */
.product-bundle__gift-countdown {
  background: #111;
  border-radius: 16px;
  overflow: hidden;
}

.product-bundle__gift-countdown-banner {
  width: 100%;
}

.product-bundle__gift-countdown-banner img {
  width: 100%;
  height: auto;
  display: block;
}

.product-bundle__gift-countdown-content {
  display: flex;
  gap: 20px;
  padding: 20px;
  align-items: center;
}

.product-bundle__gift-countdown-image {
  width: 100px;
  height: 100px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}

.product-bundle__gift-countdown-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-bundle__gift-countdown-info {
  flex: 1;
}

.product-bundle__gift-countdown-timer {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.gift-countdown-value {
  background: #d4af37;
  color: #000;
  font-size: 24px;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: 8px;
  min-width: 50px;
  text-align: center;
}

.gift-countdown-separator {
  font-size: 24px;
  font-weight: 700;
  color: #d4af37;
}

.product-bundle__gift-countdown-text {
  font-size: 14px;
  color: #ccc;
  line-height: 1.5;
  margin: 0;
}

/* Info Boxes */
.product-bundle__info-box,
.product-bundle__returns-box {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #111;
  padding: 20px;
  border-radius: 12px;
}

.product-bundle__info-box-icon,
.product-bundle__returns-icon {
  width: 48px;
  height: 48px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.product-bundle__info-box-icon svg,
.product-bundle__returns-icon svg {
  width: 24px;
  height: 24px;
}

.product-bundle__info-box-content,
.product-bundle__returns-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.product-bundle__info-box-title,
.product-bundle__returns-title {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}

.product-bundle__info-box-subtitle,
.product-bundle__returns-text {
  font-size: 14px;
  color: #888;
}

/* Product Details */
.product-bundle__details {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product-bundle__detail-item {
  background: #111;
  border-radius: 12px;
  overflow: hidden;
}

.product-bundle__detail-header {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
}

.product-bundle__detail-icon-left {
  font-size: 24px;
  line-height: 1;
}

.product-bundle__detail-icon {
  margin-left: auto;
  font-size: 20px;
  transition: transform 0.2s;
}

.product-bundle__detail-item.active .product-bundle__detail-icon {
  transform: rotate(45deg);
}

.product-bundle__detail-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.product-bundle__detail-item.active .product-bundle__detail-content {
  max-height: 500px;
}

.product-bundle__detail-inner {
  padding: 0 20px 20px 60px;
}

.product-bundle__detail-inner p {
  font-size: 14px;
  color: #aaa;
  line-height: 1.8;
  margin: 0;
}

.product-bundle__detail-inner strong {
  color: #d4af37;
}

/* Responsive */
@media (max-width: 968px) {
  .product-bundle__container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 20px 16px;
  }
  
  .product-bundle__countdown-banner-inner {
    flex-direction: column;
    text-align: center;
    padding: 12px 16px;
  }
  
  .product-bundle__countdown-banner-title {
    font-size: 16px;
  }
  
  .product-bundle__countdown-banner-subtitle {
    font-size: 14px;
  }
  
  .product-bundle__title {
    font-size: 28px;
  }
  
  .product-bundle__bundle-item {
    grid-template-columns: 60px 1fr;
    gap: 12px;
  }
  
  .product-bundle__bundle-image {
    width: 60px;
    height: 60px;
  }
  
  .product-bundle__bundle-price-right {
    grid-column: 2;
    flex-direction: row;
    gap: 12px;
    align-items: center;
  }
  
  .product-bundle__total-left {
    grid-column: 1 / 3;
  }
  
  .product-bundle__total-right {
    grid-column: 1 / 3;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  
  .product-bundle__gift-countdown-content {
    flex-direction: column;
    text-align: center;
  }
  
  .product-bundle__gift-countdown-timer {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .product-bundle__title {
    font-size: 24px;
  }
  
  .product-bundle__bundle-title {
    font-size: 14px;
  }
  
  .product-bundle__total-current {
    font-size: 24px;
  }
  
  .product-bundle__add-to-cart {
    font-size: 16px;
    padding: 16px 24px;
  }
}
