/* FH9 - PDP Conversion Boost v2.1.2 (scoped)
   CSS aligned with fh9_product_details v1.6.23 "Ultra Sobre Luxe"
*/
.fh9-cvb{ margin-top: 14px; }

.fh9-cvb__card{
  /* base card styling comes from .fh9-card */
}

/* Head matches fh9pd__head */
.fh9-cvb__head{
  position: relative;
  padding: 16px 20px 14px;
  background: linear-gradient(90deg, rgba(201,166,90,.20), rgba(201,166,90,.05) 40%, transparent 75%);
  border-bottom: 1px solid var(--fh9pd-border-soft);
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 14px;
  flex-wrap: wrap;
}

/* Left bar like fh9pd__bar */
.fh9-cvb__head:before{
  content:"";
  position:absolute;
  left:0; top:0; bottom:0;
  width:6px;
  background: linear-gradient(180deg, rgba(201,166,90,.55), rgba(176,122,74,.35));
  box-shadow: 0 0 0 1px rgba(0,0,0,.25) inset, 0 0 14px rgba(201,166,90,.18);
}

/* Title matches fh9pd__title vibe */
.fh9-cvb__title{
  margin: 0;
  padding-left: 10px; /* align with bar */
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--fh9pd-gold);
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 100%;
  line-height: 1.3;
}

/* Signals: understated, do not fight the header */
.fh9-cvb__signals{
  display:flex;
  flex-direction:column;
  gap:8px;
  align-items:flex-end;
  flex: 0 1 auto;
  max-width: 100%;
}

.fh9-cvb__signal{
  display:flex;
  align-items:flex-start;
  gap:8px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(201,166,90,.35);
  background: rgba(0,0,0,.35);
  font-size: 12px;
  font-weight: 800;
  color: var(--fh9pd-text);
  max-width: 100%;
  box-sizing: border-box;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}
.fh9-cvb__signal:hover{
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0,0,0,.35);
  border-color: rgba(201,166,90,.55);
}

.fh9-cvb__signal-text{
  display:block;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* preorder: allow wrap */
.fh9-cvb__signal--preorder{
  white-space: normal;
  text-align: right;
  max-width: min(340px, 100%);
}

.fh9-cvb__signal-dot{
  width:8px;height:8px;border-radius:50%;
  background: var(--fh9pd-gold);
  opacity: .95;
  box-shadow: 0 0 0 4px rgba(201,166,90,.14);
  margin-top: .35em;
  flex: 0 0 8px;
}

/* Body section spacing aligns with fh9pd__grid */
.fh9-cvb__bullets,
.fh9-cvb__faq{
  padding: 18px 20px;
}

.fh9-cvb__bullets{
  list-style:none;
  margin: 0;
  display:grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

/* bullet typography like fh9pd__v (strong) but a bit lighter */
.fh9-cvb__bullet{
  position: relative;
  padding-left: 12px;
  font-size: 14px;
  font-weight: 700;
  color: var(--fh9pd-text);
}
.fh9-cvb__bullet:before{
  content:"";
  position:absolute;
  left:0;
  top:.58em;
  width:4px;height:4px;border-radius:50%;
  background: rgba(201,166,90,.65);
}

/* FAQ separator matches fh9pd borders */
.fh9-cvb__faq{
  border-top: 1px solid rgba(201,166,90,.12);
}

.fh9-cvb__faq-title{
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 11px;
  color: var(--fh9pd-muted);
  margin: 0 0 10px 0;
}

.fh9-cvb__faq-item{
  border: 1px solid rgba(201,166,90,.20);
  border-radius: 14px;
  overflow:hidden;
  margin-bottom: 10px;
  background: rgba(0,0,0,.22);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}
.fh9-cvb__faq-item:hover{
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0,0,0,.35);
  border-color: rgba(201,166,90,.35);
}

.fh9-cvb__faq-q{
  width:100%;
  text-align:left;
  border:0;
  background: transparent;
  color: var(--fh9pd-text);
  padding: 11px 12px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
  cursor:pointer;
  font-weight: 700;
}
.fh9-cvb__faq-q:focus{
  outline: 2px solid rgba(201,166,90,.35);
  outline-offset: 2px;
}

.fh9-cvb__faq-icon{
  width:18px;height:18px;flex:0 0 18px;
  border-radius: 10px;
  border:1px solid rgba(201,166,90,.35);
  position: relative;
  background: rgba(0,0,0,.35);
}
.fh9-cvb__faq-icon:before,
.fh9-cvb__faq-icon:after{
  content:"";
  position:absolute; left:50%; top:50%;
  width:10px; height:1px;
  background: rgba(201,166,90,.85);
  transform: translate(-50%,-50%);
}
.fh9-cvb__faq-icon:after{ transform: translate(-50%,-50%) rotate(90deg); }
.fh9-cvb__faq-q[aria-expanded="true"] .fh9-cvb__faq-icon:after{ display:none; }

.fh9-cvb__faq-a{
  padding: 0 12px 12px 12px;
}
.fh9-cvb__faq-atext{
  padding-top: 4px;
  line-height: 1.45;
  font-size: 13px;
  color: rgba(255,255,255,.78);
}

/* Responsive */
@media (min-width: 768px){
  .fh9-cvb__bullets{ grid-template-columns: 1fr 1fr; column-gap: 16px; }
}

/* Narrow right column: signals stack full width below title */
@media (max-width: 520px){
  .fh9-cvb__signals{ width: 100%; align-items: flex-start; }
  .fh9-cvb__signal{ width: 100%; border-radius: 14px; }
  .fh9-cvb__signal--preorder{ text-align: left; }
}

/* Motion preference */
@media (prefers-reduced-motion: reduce){
  .fh9-cvb__faq-item, .fh9-cvb__signal{ transition: none; }
}
