#fv-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(247, 240, 255, 0.97);
  border-top: 1px solid #D4A8E8;
  padding: 16px 24px;
  font-size: 0.85rem;
  color: #4A2D6B;
}

#fv-cookie-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

#fv-cookie-inner p {
  margin: 0;
  flex: 1;
  min-width: 200px;
}

#fv-cookie-btns {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

#fv-cookie-btns button {
  padding: 8px 20px;
  border-radius: 20px;
  border: none;
  cursor: pointer;
  font-size: 0.85rem;
  font-family: inherit;
}

#fv-accept {
  background: #C084D4;
  color: #ffffff;
}

#fv-accept:hover {
  background: #A855C4;
}

#fv-decline {
  background: transparent;
  color: #7B5EA7;
  border: 1px solid #D4A8E8 !important;
}

#fv-decline:hover {
  background: #F0E6FF;
}