/* =============================
   Footer — Essence de Bonbon
   ============================= */

footer{
  position: relative;
}

/* Gold hairline */
footer::before{
  content:'';
  position:absolute;
  left:0;
  right:0;
  top:-12px;
  height:1px;
  background: rgba(var(--gold-rgb), 0.55);
  pointer-events:none;
}

/* Layout */
.footer-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

/* Left: logo + copyright */
.footer-brand{
  display:flex;
  align-items:center;
  gap:14px;
}

.footer-brand img{
  height:28px;
  opacity:.85;
  display:block;
}

.footer-brand span{
  font-size:11.5px;
  letter-spacing:.05em;
  white-space:nowrap;
  opacity:.75;
}

/* Right: social */
.footer-social {
  display:flex;
  align-items:center;
  gap:8px;
  opacity: .85;
  transition: transform .25s ease, opacity .25s ease;
}

.footer-social:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.footer-social span{
  font-size:11px;
  letter-spacing:.18em;
  text-transform:uppercase;
  opacity:.7;
}

.footer-social .social-icon {
  display: block;
  width:18px;
  height:18px;
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.footer-policy-link {
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(var(--gold-rgb), .86);
  text-decoration: none;
  border-bottom: 1px solid rgba(var(--gold-rgb), .38);
  padding-bottom: 2px;
  transition: color .2s ease, border-color .2s ease;
}

.footer-policy-link:hover {
  color: rgba(var(--gold-rgb), 1);
  border-color: rgba(var(--gold-rgb), .8);
}

/* Disclaimer line */
.footer-disclaimer{
  margin-top:18px;
  font-size:10px;
  line-height:1.4;
  opacity:.55;
  max-width:560px;
}

/* Mobile */
@media(max-width:767px){
  .footer-inner{
    flex-direction:column;
    align-items:flex-start;
    gap:16px;
  }

  .footer-brand span{
    white-space:normal;
  }

  .footer-right {
    align-items: flex-start;
  }
}
