/* ==========================================================================
   FOTOX PRO - PHOTO DETAIL SPLIT LAYOUT (100% MOBILE-FIRST ADAPTIVE)
   ========================================================================== */

.product-crumb {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0 0 14px;
  color: var(--text-muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  flex-wrap: wrap;
}

.product-crumb a {
  color: var(--text-muted);
}

.product-crumb a:hover {
  color: var(--brand-orange);
}

.product-crumb span {
  color: var(--border-card);
}

.product-crumb b {
  color: #fff;
}

.product-detail-layout {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 20px;
  align-items: start;
  margin-bottom: 36px;
}

/* Left Column: HD Photo Preview Stage */
.detail-stage-box {
  background: #000;
  border: 1px solid var(--border-card);
  position: relative;
  overflow: hidden;
}

.detail-stage-img {
  position: relative;
  min-height: 330px;
  height: 330px;
  background: radial-gradient(circle at 50% 50%, #161720 0%, #08080A 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.detail-stage-img img {
  width: 100%;
  height: 330px;
  object-fit: contain;
  transition: opacity 0.25s ease;
}

.detail-stage-img .wm {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.2);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 30px;
  font-style: italic;
  letter-spacing: 0.15em;
  transform: rotate(-15deg);
  pointer-events: none;
  user-select: none;
}

.detail-stage-bar {
  background: var(--bg-card);
  border-top: 1px solid var(--border-subtle);
  padding: 10px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.detail-stage-bar small {
  display: block;
  font-size: 8px;
  font-weight: 800;
  color: var(--brand-orange);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.detail-stage-bar strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13.5px;
  color: #fff;
  margin-top: 1px;
}

.detail-raw-tag {
  background: var(--brand-orange-subtle);
  border: 1px solid rgba(255, 107, 0, 0.4);
  color: var(--brand-orange);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.12em;
  padding: 3px 6px;
}

/* Benefits Strip */
.product-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 12px;
}

.product-benefits > div {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  padding: 8px 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.benefit-svg {
  color: var(--brand-orange);
  flex-shrink: 0;
}

.product-benefits b {
  display: block;
  font-size: 9.5px;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.04em;
}

.product-benefits small {
  display: block;
  font-size: 9px;
  color: var(--text-muted);
}

/* Right Column: Info & Summary */
.product-summary-main {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  padding: 18px;
  margin-bottom: 14px;
}

.product-heading .eyebrow {
  display: inline-block;
  color: var(--brand-orange);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.product-heading h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(20px, 2.2vw, 25px);
  line-height: 1.05;
  color: #fff;
  margin: 0 0 10px;
  text-transform: uppercase;
}

.product-context {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  border-top: 1px solid var(--border-subtle);
  padding-top: 10px;
}

.product-context > span {
  background: var(--bg-deep);
  border: 1px solid var(--border-card);
  padding: 4px 8px;
}

.product-context small {
  display: block;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--brand-orange);
  text-transform: uppercase;
  margin-bottom: 1px;
}

.product-context b {
  display: block;
  font-size: 10.5px;
  color: #fff;
  font-weight: 700;
}

/* Full Set Box */
.detail-set-box {
  background: #14151C;
  border: 2px solid var(--brand-orange);
  padding: 16px;
  margin-top: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.detail-set-copy span {
  color: var(--brand-orange);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.detail-set-copy h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 16.5px;
  color: #fff;
  margin: 2px 0 4px;
  text-transform: uppercase;
}

.detail-set-copy p {
  font-size: 11px;
  color: var(--text-muted);
  margin: 0;
  max-width: 340px;
}

.detail-set-action {
  display: flex;
  align-items: center;
  gap: 12px;
}

.detail-set-action strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22px;
  color: #fff;
  line-height: 1;
}

.detail-set-action strong small {
  display: block;
  font-size: 8px;
  color: var(--brand-orange);
  letter-spacing: 0.1em;
}

.btn-buy-full-set {
  background: var(--brand-orange);
  color: #000;
  border: 0;
  padding: 9px 15px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.2s;
}

.btn-buy-full-set:hover {
  background: var(--brand-orange-light);
}

/* ==========================================================================
   MOBILE RESPONSIVE RULES (CELULARES)
   ========================================================================== */
@media (max-width: 900px) {
  .product-detail-layout {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .detail-stage-img {
    min-height: 250px;
    height: 250px;
  }
  .detail-stage-img img {
    height: 250px;
  }
  .product-benefits {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .detail-set-box {
    flex-direction: column;
    align-items: flex-start;
  }
  .detail-set-action {
    width: 100%;
    justify-content: space-between;
    margin-top: 8px;
  }
  .btn-buy-full-set {
    flex: 1;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .detail-stage-img {
    min-height: 210px;
    height: 210px;
  }
  .detail-stage-img img {
    height: 210px;
  }
  .product-summary-main {
    padding: 14px;
  }
}
