/* =====================================================
   Rochén — Hero Banner Widget  |  rochen-hero.css
   ===================================================== */

.rochen-hero {
  position: relative;
  width: 100%;
  height: 420px; /* overridé par le slider Elementor */
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* ── Photo de fond ── */
.rochen-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  filter: saturate(0.55) brightness(0.72);
}

/* Dégradé sombre à gauche */
.rochen-hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(15, 13, 11, 0.92)  0%,
    rgba(15, 13, 11, 0.65) 38%,
    rgba(15, 13, 11, 0.18) 62%,
    rgba(15, 13, 11, 0.06) 100%
  );
}

/* ── Layout intérieur ── */
.rochen-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 5%;
  gap: 2rem;
  height: 100%;
}

/* ── Colonne gauche ── */
.rochen-hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 0 0 auto;
  max-width: 440px;
}

.rochen-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.rochen-eyebrow-line {
  width: 28px;
  height: 1px;
  background: #c9904a;
  flex-shrink: 0;
}

.rochen-eyebrow-text {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #c9904a;
}

.rochen-title {
  font-family: 'Georgia', serif;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #f0ece4;
  margin: 0 0 14px;
  padding: 0;
}

.rochen-description {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 13.5px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(240, 236, 228, 0.58);
  margin: 0 0 24px;
}

.rochen-btn-preorder {
  display: inline-block;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #f0ece4 !important;
  background: #7a4e2a;
  padding: 14px 28px;
  text-decoration: none !important;
  border: none;
  cursor: pointer;
  transition: background 0.22s ease;
  align-self: flex-start;
}

.rochen-btn-preorder:hover {
  background: #9a6235;
  color: #f0ece4 !important;
}

/* ── Colonne droite — cartes ── */
.rochen-hero-right {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex-shrink: 0;
  align-self: center;
}

.rochen-product-thumb {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(8, 6, 4, 0.72);
  border: 1px solid rgba(201, 144, 74, 0.22);
  padding: 10px 14px;
  width: 240px;
  cursor: pointer;
  text-decoration: none !important;
  transition: background 0.2s ease, border-color 0.2s ease;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.rochen-product-thumb:hover {
  background: rgba(8, 6, 4, 0.88);
  border-color: rgba(201, 144, 74, 0.5);
}

.rochen-thumb-img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  flex-shrink: 0;
  filter: saturate(0.45) brightness(0.78);
  display: block;
}

.rochen-thumb-name {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #f0ece4;
  margin-bottom: 4px;
}

.rochen-thumb-desc {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 11px;
  font-weight: 300;
  color: rgba(240, 236, 228, 0.48);
  line-height: 1.4;
}

/* ── Responsive ── */
@media (max-width: 700px) {
  .rochen-hero {
    height: auto !important;
    min-height: 480px;
  }
  .rochen-hero-content {
    flex-direction: column;
    justify-content: center;
    padding: 2rem 1.25rem;
    gap: 1.5rem;
  }
  .rochen-hero-left {
    max-width: 100%;
  }
  .rochen-hero-right {
    width: 100%;
  }
  .rochen-product-thumb {
    width: 100%;
  }
}
