/* Cookie Banner Styles */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(46, 58, 89, 0.95);
  backdrop-filter: blur(10px);
  color: #F4F1E8;
  padding: 1rem 0;
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  border-top: 2px solid #B8446B;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cookie-text p {
  margin: 0;
  font-size: 0.9rem;
  color: #F4F1E8;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.cookie-btn.accept {
  background: #B8446B;
  color: #F4F1E8;
}

.cookie-btn.accept:hover {
  background: #A03A5B;
}

.cookie-btn.reject {
  background: transparent;
  color: #F4F1E8;
  border: 1px solid #F4F1E8;
}

.cookie-btn.reject:hover {
  background: #F4F1E8;
  color: #2E3A59;
}

.cookie-btn.customize {
  background: transparent;
  color: #D4CFC4;
  border: 1px solid #D4CFC4;
}

.cookie-btn.customize:hover {
  background: #D4CFC4;
  color: #2E3A59;
}

.cookie-link {
  color: #D4CFC4;
  text-decoration: underline;
  font-size: 0.85rem;
  margin-left: 1rem;
}

.cookie-link:hover {
  color: #F4F1E8;
}

/* Cookie Modal Styles */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1001;
}

.cookie-modal.show {
  display: flex;
}

.cookie-modal-content {
  background: #F4F1E8;
  color: #2E3A59;
  padding: 2rem;
  border-radius: 12px;
  max-width: 500px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
}

.cookie-modal-content h3 {
  margin-bottom: 1.5rem;
  color: #2E3A59;
}

.cookie-category {
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: white;
  border-radius: 8px;
  border: 1px solid #D4CFC4;
}

.cookie-category label {
  display: flex;
  align-items: center;
  font-weight: 600;
  margin-bottom: 0.5rem;
  cursor: pointer;
}

.cookie-category input[type="checkbox"] {
  margin-right: 0.5rem;
  transform: scale(1.2);
}

.cookie-category p {
  margin: 0;
  font-size: 0.9rem;
  color: #5A524C;
}

.cookie-modal-buttons {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  margin-top: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .cookie-buttons {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .cookie-btn {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
  }
  
  .cookie-link {
    margin-left: 0;
    margin-top: 0.5rem;
  }
  
  .cookie-modal-content {
    padding: 1.5rem;
    margin: 1rem;
  }
  
  .cookie-modal-buttons {
    flex-direction: column;
  }
}