/* ==========================================================================
   Single Product & Personalization Styles (Gifti Vibes)
   ========================================================================== */

.product-page-wrapper {
  padding: 30px 0 60px;
}

.product-breadcrumbs {
  font-size: 13px;
  color: #777777;
  margin-bottom: 25px;
}

.product-breadcrumbs a {
  color: var(--secondary-charcoal, #212529);
  text-decoration: none;
}

.single-product-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 45px;
  align-items: start;
}

/* Gallery Column */
.product-gallery-column .main-image-wrap {
  background-color: var(--bg-pink-soft, #FFF9FB);
  border-radius: var(--radius-card, 12px);
  border: 1px solid var(--border-grey, #E9ECEF);
  overflow: hidden;
}

.product-gallery-column img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Details Column */
.product-info-column .product-title {
  font-family: var(--font-heading, 'Quicksand', sans-serif);
  font-size: 32px;
  font-weight: 700;
  color: var(--secondary-charcoal, #212529);
  margin-bottom: 10px;
}

.product-rating-review {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.product-rating-review .stars {
  color: #FFB800;
  font-size: 16px;
}

.product-rating-review .review-count {
  font-size: 13px;
  color: #666666;
}

.product-price-box {
  font-size: 26px;
  font-weight: 700;
  color: var(--primary-fuchsia, #E6007E);
  margin-bottom: 20px;
}

.product-short-description {
  font-size: 15px;
  color: #555555;
  line-height: 1.6;
  margin-bottom: 25px;
}

/* Personalization Widget Box (Phase 2 Spec) */
.personalization-widget-box {
  background-color: var(--bg-pink-soft, #FFF9FB);
  border: 2px dashed var(--primary-fuchsia, #E6007E);
  border-radius: var(--radius-card, 12px);
  padding: 20px;
  margin-bottom: 25px;
}

.personalization-widget-box .widget-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 15px;
}

.personalization-widget-box .widget-header h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-fuchsia, #E6007E);
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--secondary-charcoal, #212529);
}

.custom-input {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid var(--border-grey, #E9ECEF);
  border-radius: 8px;
  font-size: 14px;
  outline: none;
  background-color: #FFFFFF;
}

.custom-input:focus {
  border-color: var(--primary-fuchsia, #E6007E);
}

.file-upload-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}

.file-input {
  position: absolute;
  opacity: 0;
  width: 120px;
  height: 40px;
  cursor: pointer;
}

.file-upload-btn {
  background-color: var(--secondary-charcoal, #212529);
  color: #FFFFFF;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.file-name-display {
  font-size: 12px;
  color: #777777;
}

/* Quantity & Add to Cart */
.cart-form-wrapper {
  margin-bottom: 25px;
}

.quantity-cart-row {
  display: flex;
  align-items: center;
  gap: 15px;
}

.quantity input.qty {
  width: 60px;
  height: 46px;
  text-align: center;
  border: 1px solid var(--border-grey, #E9ECEF);
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
}

.btn-add-to-cart {
  flex: 1;
  background-color: var(--primary-fuchsia, #E6007E) !important;
  color: #FFFFFF !important;
  border: none;
  height: 46px;
  border-radius: var(--radius-btn, 30px);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.btn-add-to-cart:hover {
  background-color: #c9006e !important;
}

/* Trust Badges */
.product-trust-badges {
  border-top: 1px solid var(--border-grey, #E9ECEF);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
  color: #555555;
}

.product-tabs-section {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid var(--border-grey, #E9ECEF);
}

.product-tabs-section h2 {
  font-size: 22px;
  margin-bottom: 15px;
}

/* Mobile Breakpoints */
@media (max-width: 767px) {
  .single-product-container {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}