/* Cookie Banner Styles */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(5, 20, 60, 0.95);
  color: white;
  padding: 20px;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.3s ease-in-out;
  backdrop-filter: blur(10px);
  border-top: 2px solid #eb6432;
}

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

.cookie-banner-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.cookie-banner-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

.cookie-banner-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
  color: #eb6432;
}

.cookie-banner-close {
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
}

.cookie-banner-close:hover {
  color: #eb6432;
}

.cookie-banner-text {
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
  opacity: 0.9;
}

.cookie-banner-text a {
  color: #eb6432;
  text-decoration: underline;
}

.cookie-banner-text a:hover {
  color: #ff7a3d;
}

.cookie-banner-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-banner-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.cookie-banner-btn-primary {
  background: #eb6432;
  color: white;
}

.cookie-banner-btn-primary:hover {
  background: #ff7a3d;
  transform: translateY(-1px);
}

.cookie-banner-btn-secondary {
  background: transparent;
  color: white;
  border: 1px solid white;
}

.cookie-banner-btn-secondary:hover {
  background: white;
  color: #05143c;
}

.cookie-banner-btn-text {
  background: transparent;
  color: #eb6432;
  padding: 5px 10px;
}

.cookie-banner-btn-text:hover {
  background: rgba(235, 100, 50, 0.1);
}

.cookie-settings-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 10000;
  backdrop-filter: blur(5px);
}

.cookie-settings-modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cookie-settings-content {
  background: white;
  border-radius: 10px;
  padding: 30px;
  max-width: 600px;
  max-height: 80vh;
  overflow-y: auto;
  margin: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.cookie-settings-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid #eb6432;
}

.cookie-settings-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #05143c;
  margin: 0;
}

.cookie-settings-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #666;
  padding: 5px;
}

.cookie-settings-close:hover {
  color: #eb6432;
}

.cookie-category {
  margin-bottom: 25px;
  padding: 20px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background: #f9f9f9;
}

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

.cookie-category-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #05143c;
  margin: 0;
}

.cookie-toggle {
  position: relative;
  width: 50px;
  height: 24px;
  background: #ccc;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cookie-toggle.active {
  background: #eb6432;
}

.cookie-toggle::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.cookie-toggle.active::after {
  transform: translateX(26px);
}

.cookie-category-description {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
  margin: 0;
}

.cookie-settings-buttons {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #e0e0e0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .cookie-banner {
    padding: 15px;
  }
  
  .cookie-banner-header {
    flex-direction: column;
    gap: 10px;
  }
  
  .cookie-banner-buttons {
    flex-direction: column;
  }
  
  .cookie-banner-btn {
    width: 100%;
  }
  
  .cookie-settings-content {
    margin: 10px;
    padding: 20px;
  }
  
  .cookie-settings-buttons {
    flex-direction: column;
  }
} 