/* ============================================================
   SHARED PRODUCT HERO SYSTEM
   Canonical reference: GökKAAN (.product-detail hero).
   Every product page (aipin, bilgekaan, bilge-ops, chatboss,
   pence, predy, spoty) loads this file and must not redeclare
   these rules. Page-specific deltas allowed ONLY for:
     - .product-detail-bg background-image / background-position
     - .product-detail::before / ::after gradient tuning
     - accent color (var(--action), already page-scoped)
     - extra page-specific hero elements (e.g. .detail-eyebrow)
   Do not change height, padding, max-width or type scale here
   per-page — edit this file once instead.
   ============================================================ */

.product-detail {
  position: relative;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 164px 60px 100px;
  background-color: #0b1622;
  overflow: hidden;
}

.product-detail-bg {
  position: absolute; inset: -4% -4% -4% -4%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 0; pointer-events: none;
  animation: heroKenBurns 32s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes heroKenBurns {
  from { transform: scale(1) translate(0, 0); }
  to   { transform: scale(1.08) translate(-1.5%, -1%); }
}
@media (prefers-reduced-motion: reduce) {
  .product-detail-bg { animation: none; }
}
.product-detail-bg img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center center; }

.product-detail-vignette {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(120% 100% at 50% 38%, transparent 52%, rgba(5,9,18,0.45) 100%);
}

.product-detail-inner {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  max-width: 1440px;
  margin: 0;
}

.product-detail-content {
  max-width: 560px;
  width: 100%;
  text-align: left;
}

.product-detail-content .detail-main-title {
  font-family: 'Archivo', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: clamp(52px, 6.4vw, 116px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 2px;
}

.product-detail-content .detail-subtitle {
  font-size: clamp(16px, 2vw, 33px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--action);
  margin-bottom: 48px;
  white-space: nowrap;
}

.product-detail-content p {
  font-size: clamp(15px, 1.7vw, 22px);
  line-height: 1.85;
  color: #F1ECE3;
  margin-bottom: 24px;
  text-align: left;
}
.product-detail-content p:last-child { margin-bottom: 0; }

.product-detail-content p.intro-slogan {
  margin-top: 40px;
  margin-bottom: 0;
  font-weight: 700;
  color: #F1ECE3;
  text-align: left;
  white-space: nowrap;
}
@media (max-width: 600px) {
  .product-detail-content p.intro-slogan { white-space: normal; }
  .product-detail-content .detail-subtitle { font-size: 3.2vw; white-space: normal; }
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
  height: 64px;
  padding: 0 42px;
  background: var(--action);
  color: var(--white);
  font-family: 'Archivo', 'Helvetica Neue', sans-serif;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 0.002em;
  line-height: 1;
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid var(--action);
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 1px 2px rgba(20,10,4,0.06), 0 10px 24px -12px rgba(226,99,42,0.38);
  transition: background 0.45s cubic-bezier(0.22,1,0.36,1), border-color 0.45s cubic-bezier(0.22,1,0.36,1), transform 0.45s cubic-bezier(0.22,1,0.36,1), box-shadow 0.45s cubic-bezier(0.22,1,0.36,1);
}
.hero-cta span { display: inline-block; line-height: 1; }
.hero-cta:hover {
  background: var(--action-hover);
  border-color: var(--action-hover);
  transform: translateY(-1px);
  box-shadow: 0 1px 2px rgba(20,10,4,0.08), 0 16px 32px -12px rgba(226,99,42,0.46);
}
.hero-cta:active { transform: translateY(0); transition-duration: 0.15s; }
.hero-cta:focus-visible { outline: 2px solid var(--white); outline-offset: 3px; }
.hero-cta-arrow { width: 17px; height: 17px; flex-shrink: 0; transition: transform 0.45s cubic-bezier(0.22,1,0.36,1); }
.hero-cta:hover .hero-cta-arrow { transform: translateX(4px); }
@media (max-width: 1100px) { .hero-cta { height: 60px; padding: 0 34px; font-size: 18px; } }
@media (max-width: 600px) { .hero-cta { width: 100%; height: 58px; padding: 0 26px; margin-top: 24px; font-size: 17px; } }

@media (max-width: 768px) {
  .product-detail { padding: 132px 24px 76px; }
}

@media (min-width: 1920px) {
  .product-detail-inner { max-width: 1440px !important; }
}
