/* Cookie Banner Styles */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #201109 0%, #482111 100%);
  color: #faf3c0;
  padding: 1rem;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.3s ease-in-out;
  backdrop-filter: blur(10px);
  border-top: 2px solid #e0b877;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  font-family: Literata, Helvetica, sans-serif;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-banner__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-banner__content {
  flex: 1;
  min-width: 280px;
}

.cookie-banner__text {
  font-size: 0.875rem;
  line-height: 1.4;
  margin: 0;
  color: #c8c8c8;
}

.cookie-banner__link {
  color: #ffdda4;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.cookie-banner__link:hover {
  color: #fff;
}

.cookie-banner__actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
  align-items: center;
}

.cookie-banner__button {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  min-width: 100px;
}

.cookie-banner__button--primary {
  background-color: #c79e71;
  color: #1a0a03;
  border: 1px solid #e0b877;
  font-weight: 500;
  text-transform: uppercase;
}

.cookie-banner__button--primary:hover {
  background-color: #e0b877;
  transform: scale(1.05);
}

.cookie-banner__button--secondary {
  background-color: #482111;
  color: #ecba62;
  border: 1px solid #e0b877;
  text-transform: uppercase;
}

.cookie-banner__button--secondary:hover {
  background-color: #3e2112;
  color: #ffdda4;
  transform: scale(1.05);
}

/* Responsive design */
@media (max-width: 768px) {
  .cookie-banner__container {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-banner__actions {
    width: 100%;
    justify-content: center;
  }
  
  .cookie-banner__button {
    flex: 1;
    max-width: 120px;
  }
}

@media (max-width: 480px) {
  .cookie-banner {
    padding: 0.75rem;
  }
  
  .cookie-banner__text {
    font-size: 0.8125rem;
  }
  
  .cookie-banner__actions {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .cookie-banner__button {
    width: 100%;
    max-width: none;
  }
}

/* Hide banner when hidden class is applied */
.cookie-banner.hidden {
  display: none;
}

/* Focus styles for accessibility */
.cookie-banner__button:focus {
  outline: 2px solid #e0b877;
  outline-offset: 2px;
}

.cookie-banner__link:focus {
  outline: 2px solid #e0b877;
  outline-offset: 2px;
  border-radius: 2px;
}
