/* ============================================
   MEHRAZ HOUSE — Product Landing Page Styles
   ============================================ */

/* --- Breadcrumb --- */
.breadcrumb {
  padding: 90px 0 0;
  font-size: 0.75rem;
  color: var(--text-light);
}

.breadcrumb .container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.breadcrumb a {
  color: var(--text-secondary);
  transition: color 0.3s var(--ease);
}

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

.breadcrumb .current {
  color: var(--text);
  font-weight: 500;
}

/* --- Product Hero --- */
.product-hero {
  padding: 2rem 0 var(--section-padding);
}

.product-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

/* Gallery */
.product-main-image {
  position: relative;
  aspect-ratio: 1;
  background: var(--sand);
  border: 1px solid var(--border-light);
  border-radius: 6px;
  overflow: hidden;
}

.product-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: opacity 0.3s ease;
}

.product-image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
}

.placeholder-bottle-lg {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.bottle-cap {
  width: 24px;
  height: 16px;
  background: var(--gold-muted);
  border-radius: 3px 3px 0 0;
  opacity: 0.5;
  order: -1;
}

.bottle-body {
  width: 100px;
  height: 180px;
  background: linear-gradient(135deg, rgba(196, 168, 130, 0.15), rgba(196, 168, 130, 0.08));
  border: 1px solid var(--gold-muted);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.bottle-label {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.bottle-brand {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-muted);
}

.bottle-name {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--gold-muted);
}

.bottle-detail {
  font-size: 0.55rem;
  letter-spacing: 0.08em;
  color: var(--text-light);
  margin-top: 0.25rem;
}

.bottle-size {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 0.5rem;
}

.product-thumbs {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.product-thumb {
  flex: 1;
  aspect-ratio: 1;
  background: var(--sand);
  border: 1px solid var(--border-light);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  overflow: hidden;
  padding: 0;
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-thumb.active {
  border-color: var(--gold);
}

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

.thumb-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: var(--text-light);
  letter-spacing: 0.05em;
}

/* Product Info */
.product-category-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.product-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.product-title em {
  font-family: var(--font-display);
  color: var(--gold);
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.stars {
  display: flex;
  gap: 1px;
  color: var(--gold);
}

.product-rating span {
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.product-short-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* Highlights */
.product-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.highlight {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.highlight svg {
  color: var(--olive);
  flex-shrink: 0;
}

/* Size Selector */
.product-options {
  margin-bottom: 1.5rem;
}

.option-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.size-selector {
  display: flex;
  gap: 0.75rem;
}

.size-btn {
  flex: 1;
  padding: 0.85rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
  background: var(--white);
  cursor: pointer;
  transition: all 0.3s var(--ease);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.size-btn span {
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--text-secondary);
}

.size-btn:hover {
  border-color: var(--text-secondary);
}

.size-btn.active {
  border-color: var(--gold);
  background: rgba(196, 112, 63, 0.04);
}

.size-btn.active span {
  color: var(--gold);
}

/* Purchase Row */
.product-purchase {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  align-items: stretch;
}

.quantity-selector {
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.qty-btn {
  width: 44px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--text);
  background: var(--white);
  cursor: pointer;
  transition: background 0.2s var(--ease);
}

.qty-btn:hover {
  background: var(--sand);
}

.qty-value {
  width: 40px;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 500;
}

.btn-add-cart {
  flex: 1;
  font-size: 0.85rem;
}

/* Trust badges */
.product-trust-badges {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-light);
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.trust-badge svg {
  color: var(--gold);
  flex-shrink: 0;
}

/* ============================================
   RESPONSIVE — Product Page
   ============================================ */
@media (max-width: 968px) {
  .product-hero-grid {
    grid-template-columns: 1fr;
  }

  .product-hero-gallery {
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .product-highlights {
    grid-template-columns: 1fr;
  }

  .size-selector {
    flex-direction: column;
  }

  .product-purchase {
    flex-direction: column;
  }

  .quantity-selector {
    justify-content: center;
  }

  .product-thumbs {
    gap: 0.5rem;
  }
}