
/* Cookie Consent Banner */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #191A40;
  color: #e5e7eb;
  padding: 6px 0;
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.3s ease-out;
}
  
.cookie-consent.show {
  transform: translateY(0);
}
  
.cookie-consent__container {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 1rem;
}
  
.cookie-consent__content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem 0.8rem;
}
  
.cookie-consent__text {
  flex: 1;
  min-width: 250px;
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.35;
  color: #9ca3af;
  text-align: center;
}
  
.cookie-consent__link {
  color: var(--color-primary); ;
  text-decoration: underline;
}
  
.cookie-consent__buttons {
  display: flex;
  gap: 0.75rem;
}
  
.cookie-consent__btn {
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  border: none;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.8rem;
  line-height: 1.1;
}
  
.cookie-consent__btn--settings {
  background: #191A40;
  color: #e5e7eb;
  border: 1px solid rgba(148, 163, 184, 0.5);
}
  
.cookie-consent__btn--settings:hover {
  background: rgba(15, 23, 42, 1);
}
  
.cookie-consent__btn--accept {
  background: linear-gradient(255.96deg, #EE7722 0%, #EE4D22 100%);
  color: #f9fafb;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.35);
}
  
.cookie-consent__btn--accept:hover {
  transform: translateY(-1px);
}
  
  /* Cookie Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2000;
  display: none;
}
  
.cookie-modal.show {
  display: block;
}
  
.cookie-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
}
  
.cookie-modal__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #0B1120;
  border-radius: 16px;
  width: 90%;
  max-width: 640px;
  max-height: 90vh;
  overflow-y: auto;
  color: #e5e7eb;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}
  
.cookie-modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 1.5rem 1rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.3);
}
  
.cookie-modal__title {
  font-size: 1.25rem;
  font-weight: 600;
}
  
.cookie-modal__close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #9ca3af;
}
  
.cookie-modal__body {
  padding: 1.5rem;
}
  
.cookie-modal__description {
  margin-bottom: 1.5rem;
  color: #9ca3af;
  font-size: 0.95rem;
}
  
.cookie-modal__footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid rgba(148, 163, 184, 0.3);
  text-align: right;
}
  
.cookie-modal__btn {
  padding: 0.5rem 1.5rem;
  border-radius: 999px;
  border: none;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.9rem;
}
  
.cookie-modal__btn--save {
  background: linear-gradient(255.96deg, #EE7722 0%, #EE4D22 100%);
  color: #f9fafb;
}
  
.cookie-modal__btn--save:hover {
  transform: translateY(-1px);
}
  
  /* Cookie Categories */
.cookie-category {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.25);
}
  
  .cookie-category:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
  }
  
  .cookie-category__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
  }
  
.cookie-category__title {
  font-size: 1rem;
  font-weight: 600;
}
  
.cookie-category__description {
  color: #9ca3af;
  font-size: 0.9rem;
}
  
  /* Toggle Switch */
  .cookie-toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
  }
  
  .cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
  }
  
.cookie-toggle__slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #4b5563;
  transition: .4s;
  border-radius: 24px;
}
  
.cookie-toggle__slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}
  
.cookie-toggle input:checked + .cookie-toggle__slider {
  background-color: #1BFFA7;
}
  
  .cookie-toggle input:checked + .cookie-toggle__slider:before {
    transform: translateX(26px);
  }
  
.cookie-toggle input:disabled + .cookie-toggle__slider {
  background-color: #4b5563;
  cursor: not-allowed;
  opacity: 0.6;
}
  
  /* Responsive */
@media (max-width: 768px) {
  .cookie-consent__content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-consent__buttons {
    width: 100%;
    justify-content: center;
  }
  
  .cookie-modal__content {
    width: 95%;
  }
  .cookie-consent__text{
      font-size: 0.7rem;
  }
  .cookie-consent__btn{
      font-size: 0.75rem;
  }
}