/* Cookie Consent Modal Styles */
.cookie-modal {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: 20px;
  background: white;
  border-top: 2px solid #722F37;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

.cookie-modal.hidden {
  display: none;
}

.cookie-modal-content {
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-modal-title {
  font-size: 20px;
  font-weight: bold;
  color: #2F2F2F;
  margin-bottom: 12px;
}

.cookie-modal-text {
  color: #3A3A3A;
  margin-bottom: 20px;
  line-height: 1.6;
  font-size: 14px;
}

.cookie-categories {
  margin-bottom: 20px;
}

.cookie-category {
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 12px;
  background: #F5F5DC;
}

.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.cookie-category-label {
  display: flex;
  align-items: center;
  font-weight: 600;
  color: #2F2F2F;
  cursor: pointer;
}

.cookie-category-label input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-right: 12px;
  cursor: pointer;
  accent-color: #722F37;
}

.cookie-category-label input[type="checkbox"]:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

.cookie-category-status {
  font-size: 12px;
  color: #6B7280;
  font-weight: normal;
}

.cookie-category-description {
  color: #3A3A3A;
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

.cookie-modal-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.cookie-btn {
  flex: 1;
  min-width: 140px;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.cookie-btn-primary {
  background: #722F37;
  color: white;
}

.cookie-btn-primary:hover {
  background: #8B0000;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(114, 47, 55, 0.4);
}

.cookie-btn-secondary {
  background: #3A3A3A;
  color: white;
}

.cookie-btn-secondary:hover {
  background: #2F2F2F;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(58, 58, 58, 0.4);
}

.cookie-btn-tertiary {
  background: #F5F5DC;
  color: #2F2F2F;
  border: 1px solid #722F37;
}

.cookie-btn-tertiary:hover {
  background: #E5E5D0;
  transform: translateY(-2px);
}

.cookie-settings-toggle {
  color: #722F37;
  text-decoration: underline;
  cursor: pointer;
  font-size: 14px;
  background: none;
  border: none;
  padding: 0;
  margin-top: 8px;
}

.cookie-settings-toggle:hover {
  color: #8B0000;
}

.cookie-settings-panel {
  margin-top: 16px;
  padding: 16px;
  background: #F5F5DC;
  border-radius: 8px;
  border: 1px solid #E5E7EB;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .cookie-modal {
    padding: 16px;
  }
  
  .cookie-modal-title {
    font-size: 18px;
  }
  
  .cookie-modal-buttons {
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  .cookie-category-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}
