
/* Cookie Consent Banner */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    padding: 1rem 0;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease-out;
  }
  
  .cookie-consent.show {
    transform: translateY(0);
  }
  
  .cookie-consent__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
  }
  
  .cookie-consent__content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
  }
  
  .cookie-consent__text {
    flex: 1;
    min-width: 250px;
    margin: 0.5rem 0;
    font-size: 0.9rem;
  }
  
  .cookie-consent__link {
    color: #FFF208;
    text-decoration: underline;
  }
  
  .cookie-consent__buttons {
    display: flex;
    gap: 0.75rem;
  }
  
  .cookie-consent__btn {
    padding: 0.5rem 1rem;
    border-radius: 4px;
    border: none;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
  }
  
  .cookie-consent__btn--settings {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
  }
  
  .cookie-consent__btn--settings:hover {
    background: rgba(255, 255, 255, 0.1);
  }
  
  .cookie-consent__btn--accept {
    background: #FFF208;
    color: #000;
  }
  
  .cookie-consent__btn--accept:hover {
    background: #2980b9;
  }
  
  /* 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.5);
  }
  
  .cookie-modal__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: 8px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    color: #333;
  }
  
  .cookie-modal__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 1.5rem 1rem;
    border-bottom: 1px solid #eee;
  }
  
  .cookie-modal__title {
    font-size: 1.25rem;
    font-weight: 600;
  }
  
  .cookie-modal__close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
  }
  
  .cookie-modal__body {
    padding: 1.5rem;
  }
  
  .cookie-modal__description {
    margin-bottom: 1.5rem;
    color: #666;
  }
  
  .cookie-modal__footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid #eee;
    text-align: right;
  }
  
  .cookie-modal__btn {
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    border: none;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
  }
  
  .cookie-modal__btn--save {
    background: #FFF208;
    color: #000;
  }
  
  .cookie-modal__btn--save:hover {
    background: #2980b9;
  }
  
  /* Cookie Categories */
  .cookie-category {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
  }
  
  .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: #666;
    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: #ccc;
    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: #FFF208;
  }
  
  .cookie-toggle input:checked + .cookie-toggle__slider:before {
    transform: translateX(26px);
  }
  
  .cookie-toggle input:disabled + .cookie-toggle__slider {
    background-color: #95a5a6;
    cursor: not-allowed;
  }
  
  /* 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.6rem;
    }
    .cookie-consent__btn{
        font-size: 0.7rem;
    }
  }