.nav-link {
  display: flex;
  align-items: center;
  color: #4b5563;
  transition: color 0.3s ease;
  padding: 0.5rem 0.75rem;
  height: 2.25rem;
  border-radius: 0.375rem;
}
.nav-link:hover {
  color: var(--text-dark, #222831);
}
.nav-link:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px var(--primary-color-light-20);
  outline-offset: 2px;
}

.main-nav {
  border-bottom: 2px solid var(--border-color, #dee2e6);
}
.main-nav a:has(.logo-container):focus-visible {
  outline: none;
  box-shadow: none;
}
.main-nav a:has(.logo-container):focus-visible .logo-container + span {
  outline: none;
  box-shadow: 0 0 0 2px var(--primary-color-light-20);
  outline-offset: 2px;
}

.custom-nav-link {
  color: #4b5563;
  transition: color 0.3s ease, background-color 0.3s ease;
  text-decoration: none;
}
.custom-nav-link:hover, .custom-nav-link:focus {
  color: var(--text-dark, #222831);
  background-color: var(--bg-light, #f9fafb);
}

.btn-ghost-custom {
  background-color: transparent;
  border: none;
  color: #4b5563;
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.75rem;
  border-radius: 0.375rem;
  width: 100%;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.btn-ghost-custom:hover, .btn-ghost-custom:focus {
  background-color: #e0e7ff;
  color: var(--primary-color);
  outline: none;
}
.btn-ghost-custom:disabled {
  pointer-events: none;
  opacity: 0.5;
}

.btn-ghost-sm {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #4b5563;
  background: transparent;
  border: none;
  padding: 0.25rem 0.5rem;
  cursor: pointer;
  transition: color 0.3s ease;
}
.btn-ghost-sm:hover {
  color: var(--text-dark, #222831);
}

.logout-button,
.login-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  height: 2.25rem;
  white-space: nowrap;
  color: #4b5563;
  background: transparent;
  border: none;
  border-radius: 0.375rem;
  transition: color 0.2s, background-color 0.2s;
}
.logout-button:hover,
.login-button:hover {
  background-color: var(--accent, #f3f4f6);
  color: var(--text-dark, #222831);
}
.logout-button:focus-visible,
.login-button:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px var(--primary-color-light-20);
  outline-offset: 2px;
}
.logout-button:disabled,
.login-button:disabled {
  opacity: 0.5;
  pointer-events: none;
}

.burger {
  position: relative;
  width: 28px;
  height: 22px;
  background: transparent;
  cursor: pointer;
  display: block;
}
.burger input {
  display: none;
}
.burger span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: black;
  border-radius: 6px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}
.burger span:nth-of-type(1) {
  top: 0;
  transform-origin: left center;
}
.burger span:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
  transform-origin: left center;
}
.burger span:nth-of-type(3) {
  top: 100%;
  transform: translateY(-100%);
  transform-origin: left center;
}
.burger input:checked ~ span:nth-of-type(1) {
  transform: rotate(45deg);
  top: 0;
  left: 3.5px;
}
.burger input:checked ~ span:nth-of-type(2) {
  width: 0;
  opacity: 0;
}
.burger input:checked ~ span:nth-of-type(3) {
  transform: rotate(-45deg);
  top: 20px;
  left: 3.5px;
}

.logo-container {
  width: 40px;
  height: 40px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.order-summary {
  background-color: var(--background-light, #fff);
  color: var(--text-dark, #111827);
  border: 1px solid var(--border-color, #e5e7eb);
  border-radius: 0.75rem;
  padding: 1.5rem;
  position: sticky;
  top: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.order-summary__title {
  font-size: 1.125rem;
  font-weight: 600;
  border-bottom: 1px solid var(--border-color, #e5e7eb);
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
}
.order-summary__items {
  margin-bottom: 1.5rem;
}
.order-summary .order-item {
  margin-bottom: 1rem;
}
.order-summary .order-item__icon {
  width: 64px;
  height: 64px;
  background: var(--background-muted, #f9fafb);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
}
.order-summary .order-item__name {
  font-weight: 500;
  margin: 0;
  color: #111827;
}
.order-summary .order-item__desc {
  font-size: 0.875rem;
  color: #6b7280;
  margin: 0;
}
.order-summary__total {
  border-top: 1px solid var(--border-color, #e5e7eb);
  padding-top: 1rem;
  font-size: 0.95rem;
}
.order-summary__total span {
  color: #374151;
}
.order-summary__total .fw-bold {
  font-size: 1.125rem;
  color: #111827;
}

.primary-footer {
  background-color: var(--bg-dark, #1f2937);
  color: var(--text-lighter, #9ca3af);
  text-align: center;
}
.primary-footer a {
  font-size: 0.875rem;
  color: var(--text-lighter, #9ca3af);
  text-decoration: none;
  transition: color 0.3s;
}
.primary-footer a:hover {
  color: var(--text-white, #ffffff);
}
.primary-footer .text-muted {
  color: var(--text-lighter, #9ca3af) !important;
}
.primary-footer .footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
}
.primary-footer .footer-links a {
  display: inline-block;
}
.primary-footer .footer-links a:hover {
  color: var(--text-white, #ffffff);
  cursor: pointer;
}

.profitCenter-selection-page {
  padding: 2rem 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.profitCenter-selection-page .container {
  max-width: 720px;
  margin: auto;
}
.profitCenter-selection-page .title {
  font-size: 2rem;
  font-weight: 500;
  color: #111827;
}
.profitCenter-selection-page .subtitle {
  color: #6b7280;
  font-size: 1rem;
}
.profitCenter-selection-page .profitCenter-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.profitCenter-selection-page .profitCenter-card {
  background-color: #fff;
  border-radius: 0.75rem;
  padding: 1rem;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  border: 2px solid #e5e7eb;
  position: relative;
}
.profitCenter-selection-page .profitCenter-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.profitCenter-selection-page .profitCenter-card.selected {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  border-width: 2px;
}
.profitCenter-selection-page .profitCenter-content {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.profitCenter-selection-page .profitCenter-logo {
  position: relative;
  flex-shrink: 0;
}
.profitCenter-selection-page .logo-img {
  width: 80px;
  height: 80px;
  border-radius: 0.75rem;
  object-fit: cover;
}
.profitCenter-selection-page .profitCenter-info {
  flex: 1;
}
.profitCenter-selection-page .profitCenter-name {
  font-size: 1.25rem;
  font-weight: 500;
  color: #111827;
  margin-bottom: 0.25rem;
}
.profitCenter-selection-page .profitCenter-description {
  color: #6b7280;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}
.profitCenter-selection-page .profitCenter-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.875rem;
  color: #6b7280;
}
.profitCenter-selection-page .selection-indicator {
  flex-shrink: 0;
}
.profitCenter-selection-page .selection-indicator {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 1.5rem;
  width: 1.5rem;
  flex-shrink: 0;
  transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
.profitCenter-selection-page .indicator {
  width: 24px;
  height: 24px;
  border-radius: 9999px;
  border: 2px solid #d1d5db;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s, border-color 0.2s;
}
.profitCenter-selection-page .selected-indicator {
  border-color: inherit;
  background-color: inherit;
}
.profitCenter-selection-page .btn-continue {
  background-color: #9CA3AF;
  color: white;
  padding: 0.75rem 2rem;
  font-size: 1.1rem;
  font-weight: 500;
  border-radius: 0.5rem;
  min-width: 12rem;
  transition: background-color 0.2s;
}
.profitCenter-selection-page .btn-continue:disabled {
  background-color: #d1d5db;
  cursor: not-allowed;
}
.profitCenter-selection-page .btn-continue:active {
  color: white;
}
.profitCenter-selection-page .footer-text {
  color: #9ca3af;
  font-size: 0.875rem;
}

.tabs {
  width: 100%;
  min-width: 0;
}
.tabs .tabs-nav {
  display: flex;
  border-bottom: 1px solid #ddd;
  overflow-x: auto;
  flex-wrap: nowrap;
  white-space: nowrap;
  scrollbar-width: thin;
  min-width: 0;
}
.tabs .tabs-nav .tab-button {
  flex-shrink: 0;
  border: none;
  background: transparent;
  color: inherit;
  padding: 0.5rem 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.2s ease, border-bottom-color 0.2s ease;
}
.tabs .tabs-nav .tab-button:hover {
  color: var(--primary-color);
}
.tabs .tabs-nav .tab-button.active {
  border-bottom: 2px solid var(--primary-color);
  color: var(--primary-color);
}
@media (max-width: 600px) {
  .tabs .tabs-nav .tab-button {
    padding: 0.5rem;
    font-size: 0.875rem;
  }
}
.tabs .tab-content .tab-pane {
  display: none;
}
.tabs .tab-content .tab-pane.show {
  display: block;
}

.payment-success {
  max-width: 480px;
  margin: 6rem auto;
  padding: 3rem 2rem;
  background: var(--bg-white, #ffffff);
  border: 1px solid var(--border-color-light, #f3f4f6);
  border-radius: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  color: var(--text-dark, #222831);
}
.payment-success .success-icon {
  width: 5rem;
  height: 5rem;
  background: rgba(var(--success-color-rgb, rgb(0, 166, 62)), 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.payment-success .success-icon span {
  font-size: 3.5rem;
  color: var(--success-color, #00a63e);
}
.payment-success h1 {
  font-size: 1.75rem;
  color: var(--text-dark, #222831);
}
.payment-success p {
  color: var(--text-light, #6b7280);
  font-size: 1rem;
}
.payment-success .btn-primary {
  background: var(--primary-color);
  border: none;
  border-radius: 0.5rem;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
}
.payment-success .btn-primary:hover {
  background: var(--primary-color-light-10);
  text-decoration: none;
}
.payment-success .btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
@keyframes pop {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.voucher-container {
  flex-wrap: nowrap;
  min-width: 0;
}
.voucher-container > .flex-fill {
  min-width: 300px;
}
.voucher-container .voucher-right {
  min-width: 300px;
  flex-basis: 300px;
}
@media (max-width: 840px) {
  .voucher-container {
    flex-wrap: wrap-reverse;
  }
  .voucher-container > .flex-fill {
    min-width: 100%;
  }
  .voucher-container .voucher-right {
    min-width: 100%;
    flex-basis: 100%;
  }
}

.voucher-left {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.voucher-option {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--border-color-dark, #d1d5db);
  border-radius: var(--border-radius-sm, 0.5rem);
  padding: 0.5rem 0.75rem;
  text-align: center;
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--text-dark, #222831);
  background-color: var(--bg-white, #ffffff);
  height: 44px;
  cursor: pointer;
  transition: all 0.15s ease-in-out;
  max-width: 180px;
  flex-shrink: 1;
}
.voucher-option:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}
.voucher-option.selected {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.voucher-amount {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  flex-wrap: nowrap;
}

.voucher-amount-input {
  min-width: 60px;
  background: transparent;
  color: var(--primary-color);
  text-align: center;
  border: 0;
  outline: none;
  box-shadow: none;
  padding: 0.25rem 0.35rem;
}
.voucher-amount-input:focus-visible {
  outline: none;
  box-shadow: none;
}

.voucher-euro {
  background: transparent;
  border: 0;
  color: var(--primary-color);
  white-space: nowrap;
  padding: 0.25rem 0.35rem;
}

.voucher-amount-field {
  display: inline-block;
  padding: 0.375rem 0.75rem;
  font-weight: 500;
  background-color: rgba(var(--primary-color-light-40-rgb), 0.25);
  color: var(--text-dark, #222831);
  border-radius: var(--border-radius-sm, 0.5rem);
  text-align: center;
  line-height: 1;
  pointer-events: none;
}

/*# sourceMappingURL=app.css.map */
