/* ==========================================================================
   COOKIE CONSENT POPUP (BRAND THEMED)
   ========================================================================== */
.cookie-consent-banner {
  position: fixed;
  bottom: 30px;
  right: 30px;
  max-width: 440px;
  width: calc(100% - 60px);
  background: #fbf9f4;
  /* border: 2px solid #6d1434; */
  border-radius: 2px;
  padding: 24px;
  box-shadow: 0 15px 35px rgba(109, 20, 52, 0.15);
  z-index: 10000;
  display: none;
  font-family: 'Hero New', sans-serif;
  color: #333333;
  transform: translateY(100px);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
}

.cookie-consent-banner.show {
  display: block;
  transform: translateY(0);
  opacity: 1;
}

.cookie-consent-header {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.cookie-consent-header i {
  font-size: 22px;
  color: #6d1434;
  margin-right: 12px;
}

.cookie-consent-header h5 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 2px;
  font-family: 'Modern Romance', serif;
  color: #6d1434;
  text-transform: uppercase;
}

.cookie-consent-body p {
  font-size: 13px;
  line-height: 1.6;
  color: #555555;
  margin-bottom: 20px;
  font-family: 'Hero New', sans-serif;
}

.cookie-consent-body p a {
  color: #6d1434;
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.3s ease;
}

.cookie-consent-body p a:hover {
  color: #0c0c0c;
}

/* Buttons */
.cookie-consent-buttons {
  display: flex;
  gap: 12px;
  align-items: center;
}

.cookie-btn {
  flex: 1;
  padding: 12px 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  font-family: 'Modern Romance', serif;
  text-transform: uppercase;
}

.cookie-btn-accept {
  background-color: #6d1434;
  color: #ffffff;
}

.cookie-btn-accept:hover {
  background-color: #000000;
  color: #ffffff;
  transform: translateY(-1px);
}

.cookie-btn-decline {
  background-color: transparent;
  color: #6d1434;
  border: 1px solid #6d1434;
}

.cookie-btn-decline:hover {
  background-color: #6d1434;
  color: #ffffff;
  transform: translateY(-1px);
}

/* Mobile responsive */
@media (max-width: 575px) {
  .cookie-consent-banner {
    bottom: 20px;
    left: 20px;
    right: 20px;
    width: calc(100% - 40px);
    max-width: none;
    padding: 20px;
  }
}