.navbar-brand-logo {
  height: 40px;
  width: auto;
  max-height: none;
  max-width: none;
  object-fit: contain;
}

.navbar-nav-wrap,
.navbar-absolute-top-scroller {
  width: 100%;
}

.navbar-nav {
  margin-left: auto;
}

/* ========== COOKIE CONSENT BANNER ========== */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  padding: 1.5rem;
  transform: translateY(100%);
  transition: transform 0.3s ease-in-out;
}

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

.cookie-consent-content {
  max-width: 1140px;
  margin: 0 auto;
}

.cookie-consent-text {
  margin-bottom: 1rem;
}

.cookie-consent-text h5 {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.cookie-consent-text p {
  color: #6c757d;
  margin-bottom: 0;
  font-size: 0.9rem;
}

.cookie-consent-buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.cookie-consent-buttons .btn {
  min-width: 150px;
}

/* Cookie Settings Modal */
.cookie-settings-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.cookie-settings-overlay.show {
  display: flex;
}

.cookie-settings-modal {
  background: #fff;
  border-radius: 0.5rem;
  max-width: 500px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.cookie-settings-header {
  padding: 1.5rem;
  border-bottom: 1px solid #e9ecef;
}

.cookie-settings-header h5 {
  margin-bottom: 0;
  font-weight: 600;
}

.cookie-settings-body {
  padding: 1.5rem;
}

.cookie-category {
  padding: 1rem 0;
  border-bottom: 1px solid #e9ecef;
}

.cookie-category:last-child {
  border-bottom: none;
}

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

.cookie-category-header h6 {
  margin-bottom: 0;
  font-weight: 600;
}

.cookie-category p {
  color: #6c757d;
  font-size: 0.85rem;
  margin-bottom: 0;
}

.cookie-settings-footer {
  padding: 1.5rem;
  border-top: 1px solid #e9ecef;
  display: flex;
  gap: 0.75rem;
  justify-content: flex-end;
}

/* Form Switch Styling */
.form-check-input:checked {
  background-color: #0156A4;
  border-color: #0156A4;
}

.form-check-input:disabled {
  opacity: 0.7;
}

@media (min-width: 768px) {
  .cookie-consent-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }
  
  .cookie-consent-text {
    margin-bottom: 0;
  }
  
  .cookie-consent-buttons {
    flex-shrink: 0;
  }
}
