#cookieConsent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  background: #2E3A50;
  border-top: 1px solid rgba(201,169,110,0.3);
  padding: 16px 24px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
  animation: ccSlideUp 0.4s ease;
}
#cookieConsent.cc-hidden {
  animation: ccSlideDown 0.4s ease forwards;
}
@keyframes ccSlideUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}
@keyframes ccSlideDown {
  from { transform: translateY(0); }
  to { transform: translateY(100%); }
}
.cc-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.cc-text {
  color: rgba(255,255,255,0.8);
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  line-height: 1.5;
  margin: 0;
  flex: 1;
  min-width: 250px;
}
.cc-link {
  color: #C9A96E;
  text-decoration: underline;
}
.cc-buttons {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cc-btn {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  border: none;
  transition: opacity 0.2s;
}
.cc-btn:hover { opacity: 0.85; }
.cc-btn-accept {
  background: #C9A96E;
  color: #2E3A50;
}
.cc-btn-necessary {
  background: transparent;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.2);
}
@media (max-width: 600px) {
  .cc-inner { flex-direction: column; text-align: center; }
  .cc-buttons { width: 100%; justify-content: center; }
}
