.text-primary {
  color: #71C7F1;
}

.bg-primary {
  background-color: #71C7F1;
}

body {
  font-family: "sofia-pro", sans-serif;
}

input, select, label {
  font-family: "sofia-pro", sans-serif;
}

/**
 * GDPR Cookie Consent Banner Styles
 *
 * Responsive, accessible cookie consent banner with modal-style design
 */
.cookie-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
@media (max-width: 768px) {
  .cookie-banner {
    padding: 0.5rem;
    align-items: flex-end;
  }
}

.cookie-banner__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(2px);
}

.cookie-banner__content {
  position: relative;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  animation: slideInUp 0.3s ease-out;
}
@media (max-width: 768px) {
  .cookie-banner__content {
    border-radius: 12px 12px 0 0;
    max-height: 85vh;
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.cookie-banner__header {
  position: relative;
  padding: 1.5rem 1.5rem 1rem;
  border-bottom: 1px solid #e5e7eb;
}
@media (max-width: 768px) {
  .cookie-banner__header {
    padding: 1rem 1rem 0.75rem;
  }
}

.cookie-banner__title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: #111827;
  padding-right: 2rem;
}
@media (max-width: 768px) {
  .cookie-banner__title {
    font-size: 1.125rem;
  }
}

.cookie-banner__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: #6b7280;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 6px;
  transition: all 0.2s ease;
}
.cookie-banner__close:hover {
  background: #f3f4f6;
  color: #374151;
}
.cookie-banner__close:focus {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
}
.cookie-banner__close svg {
  display: block;
  width: 20px;
  height: 20px;
}

.cookie-banner__body {
  padding: 1rem 1.5rem;
}
@media (max-width: 768px) {
  .cookie-banner__body {
    padding: 1rem;
  }
}

.cookie-banner__description {
  margin: 0 0 1.5rem 0;
  color: #374151;
  line-height: 1.6;
  font-size: 0.925rem;
}

.cookie-banner__categories {
  margin-bottom: 1.5rem;
}

.cookie-category {
  margin-bottom: 1rem;
  padding: 1rem;
  background: #f9fafb;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
}
.cookie-category:last-child {
  margin-bottom: 0;
}

.cookie-category__header {
  margin-bottom: 0.5rem;
}

.cookie-category__label {
  display: flex;
  align-items: flex-start;
  cursor: pointer;
  font-weight: 500;
  color: #111827;
}
.cookie-category__label input[type=checkbox] {
  margin-right: 0.75rem;
  margin-top: 0.125rem;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  accent-color: #3b82f6;
}
.cookie-category__label input[type=checkbox]:disabled {
  cursor: not-allowed;
}

.cookie-category__name {
  flex: 1;
  font-size: 0.925rem;
}

.cookie-category__required {
  font-size: 0.75rem;
  color: #6b7280;
  font-weight: 400;
  margin-left: 0.5rem;
}

.cookie-category__description {
  margin: 0;
  font-size: 0.825rem;
  color: #6b7280;
  line-height: 1.5;
  padding-left: 2.25rem;
}
@media (max-width: 480px) {
  .cookie-category__description {
    padding-left: 0;
    margin-top: 0.5rem;
  }
}

.cookie-banner__legal {
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: #fef3c7;
  border-radius: 8px;
  border: 1px solid #fbbf24;
}

.cookie-banner__legal-text {
  margin: 0;
  font-size: 0.825rem;
  color: #92400e;
  line-height: 1.5;
}

.cookie-banner__link {
  color: #b45309;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-banner__link:hover {
  color: #92400e;
}

.cookie-banner__actions {
  display: flex;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  border-top: 1px solid #e5e7eb;
  justify-content: flex-end;
}
@media (max-width: 768px) {
  .cookie-banner__actions {
    padding: 1rem;
    flex-direction: column;
    gap: 0.5rem;
  }
}
@media (max-width: 480px) {
  .cookie-banner__actions {
    flex-direction: column;
  }
}

.cookie-banner__button {
  padding: 0.625rem 1.25rem;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  min-height: 40px;
}
.cookie-banner__button:focus {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
}
@media (max-width: 768px) {
  .cookie-banner__button {
    width: 100%;
    padding: 0.75rem 1rem;
  }
}
.cookie-banner__button--accept-all {
  background: #3b82f6;
  color: #ffffff;
}
.cookie-banner__button--accept-all:hover {
  background: #2563eb;
}
.cookie-banner__button--accept-all:active {
  background: #1d4ed8;
}
.cookie-banner__button--accept-selected {
  background: #10b981;
  color: #ffffff;
}
.cookie-banner__button--accept-selected:hover {
  background: #059669;
}
.cookie-banner__button--accept-selected:active {
  background: #047857;
}
.cookie-banner__button--reject {
  background: #ffffff;
  color: #374151;
  border-color: #d1d5db;
}
.cookie-banner__button--reject:hover {
  background: #f9fafb;
  border-color: #9ca3af;
}
.cookie-banner__button--reject:active {
  background: #f3f4f6;
}

.cookie-banner__footer {
  padding: 0.75rem 1.5rem 1.5rem;
  text-align: center;
}
@media (max-width: 768px) {
  .cookie-banner__footer {
    padding: 0.75rem 1rem 1rem;
  }
}

.cookie-banner__footer-text {
  margin: 0;
  font-size: 0.75rem;
  color: #9ca3af;
}

.cookie-settings-toggle {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  background: #3b82f6;
  color: #ffffff;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
  transition: all 0.2s ease;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookie-settings-toggle:hover {
  background: #2563eb;
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(59, 130, 246, 0.5);
}
.cookie-settings-toggle:focus {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}
.cookie-settings-toggle:active {
  transform: scale(0.95);
}
.cookie-settings-toggle svg {
  width: 20px;
  height: 20px;
  animation: rotate 8s linear infinite;
}
@media (max-width: 768px) {
  .cookie-settings-toggle {
    bottom: 1rem;
    right: 1rem;
    width: 44px;
    height: 44px;
  }
  .cookie-settings-toggle svg {
    width: 18px;
    height: 18px;
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.cookie-banner input:focus,
.cookie-banner button:focus,
.cookie-banner a:focus {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
  border-radius: 4px;
}

@media (prefers-color-scheme: dark) {
  .cookie-banner__content {
    background: #1f2937;
    color: #f9fafb;
  }
  .cookie-banner__title {
    color: #f9fafb;
  }
  .cookie-banner__description {
    color: #d1d5db;
  }
  .cookie-category {
    background: #374151;
    border-color: #4b5563;
  }
  .cookie-category__label {
    color: #f9fafb;
  }
  .cookie-category__description {
    color: #9ca3af;
  }
  .cookie-banner__close {
    color: #9ca3af;
  }
  .cookie-banner__close:hover {
    background: #374151;
    color: #d1d5db;
  }
  .cookie-banner__button--reject {
    background: #374151;
    color: #f9fafb;
    border-color: #4b5563;
  }
  .cookie-banner__button--reject:hover {
    background: #4b5563;
  }
}
@media (prefers-reduced-motion: reduce) {
  .cookie-banner__content {
    animation: none;
  }
  .cookie-settings-toggle svg {
    animation: none;
  }
}
.btn {
  display: inline-flex;
  gap: 0.75rem;
  align-items: center;
  padding: 0.75rem 3rem;
  color: #fff;
  border-radius: 1rem;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.5;
  cursor: pointer;
  transition: 0.3s ease all;
}
.btn--primary {
  background-color: #71C7F1;
  border: 1px solid #71C7F1;
}
.btn--primary:hover {
  background-color: rgb(66.5769230769, 180.6923076923, 236.4230769231);
  border-color: rgb(66.5769230769, 180.6923076923, 236.4230769231);
}
.btn--secondary {
  color: #364153;
  border: 1px solid #d1d5dc;
}

.footer {
  background: linear-gradient(139.23deg, rgba(0, 27, 46, 0.65) 18.11%, rgba(0, 8, 27, 0.65) 83.16%), #000000;
}

.customers {
  background: linear-gradient(139.23deg, #00081B 18.11%, #71C7F1 83.16%);
}

.customer {
  background-color: rgba(113, 199, 241, 0.1);
}

.review {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 50%, #71C7F1 100%), rgba(0, 0, 0, 0.4);
}

.text-with-background {
  background: linear-gradient(139.23deg, #00081B 18.11%, #71C7F1 83.16%);
}