#cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #3a3128;
  color: #e0d6c0;
  border-top: 2px solid #c9a84c;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 0.925rem;
  padding: 0;
  transform: translateY(100%);
  transition: transform 0.3s ease-in-out;
}

#cookie-consent.is-visible {
  transform: translateY(0);
}

#cookie-consent .cc-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

#cookie-consent .cc-text {
  flex: 1 1 auto;
  min-width: 280px;
}

#cookie-consent .cc-text a {
  color: #d4a933;
  text-decoration: underline;
}

#cookie-consent .cc-buttons {
  flex: 0 0 auto;
  display: flex;
  gap: 0.5rem;
}

#cookie-consent .cc-btn {
  padding: 0.4rem 1rem;
  border: 1px solid #c9a84c;
  border-radius: 3px;
  background: transparent;
  color: #e0d6c0;
  font-family: inherit;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.15s;
  white-space: nowrap;
}

#cookie-consent .cc-btn:hover {
  background: rgba(201, 168, 76, 0.15);
}

#cookie-consent .cc-btn--accept {
  background: #c9a84c;
  border-color: #c9a84c;
  color: #2a241e;
  font-weight: 600;
}

#cookie-consent .cc-btn--accept:hover {
  background: #d4b85e;
}

@media (max-width: 768px) {
  #cookie-consent .cc-inner {
    flex-direction: column;
    text-align: center;
  }
  #cookie-consent .cc-buttons {
    width: 100%;
  }
  #cookie-consent .cc-btn {
    flex: 1;
    text-align: center;
  }
}
