/* Tailwind CSS v4 Workaround Build - Complete with Utilities */
/* Built at: do  4 dec. 2025 16:33:58 CET */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* Base styles */
*, ::before, ::after {
  box-sizing: border-box;
  border-width: 0;
  border-style: solid;
  border-color: currentColor;
}

html {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  -moz-tab-size: 4;
  tab-size: 4;
  font-family: Poppins, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

body {
  margin: 0;
  line-height: inherit;
  font-family: Poppins, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  background-color: rgb(255, 255, 255);
  color: oklch(0.269 0 0);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
}

button {
  font-family: inherit;
  font-feature-settings: inherit;
  font-variation-settings: inherit;
  font-size: 100%;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
  margin: 0;
  padding: 0;
}


/* ========== Component Styles from Source Files ========== */

/* Component: actiontext.css */
/*
 * Default Trix editor styles. See Action Text overwrites below.
*/

trix-editor {
  border: 1px solid #bbb;
  border-radius: 3px;
  margin: 0;
  padding: 0.4em 0.6em;
  min-height: 5em;
  outline: none;
}

trix-toolbar * {
  box-sizing: border-box;
}

trix-toolbar .trix-button-row {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  overflow-x: auto;
}

.trix-content {
  line-height: 1.5;
  overflow-wrap: break-word;
  word-break: break-word;
}

.trix-content * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.trix-content h1 {
  font-size: 1.2em;
  line-height: 1.2;
}

.trix-content img {
  max-width: 100%;
  height: auto;
}

.trix-content .attachment {
  display: inline-block;
  position: relative;
  max-width: 100%;
}

.trix-content .attachment__caption {
  text-align: center;
}

.trix-content .attachment__caption .attachment__name + .attachment__size::before {
  content: ' • ';
}

/* Jumpstart customizations */
html.dark .trix-content pre {
  background: var(--color-gray-800);
  color: var(--text-white);
}
/* Component: alert.css */
.alert,
.banner {
  background: var(--base-bg-base);
  color: var(--base-text-secondary);
  padding: 16px;
  box-shadow: 0px 1px 2px -1px rgba(0, 0, 0, 0.10), 0px 1px 3px 0px rgba(0, 0, 0, 0.10);
  display: flex;
  align-items: center;
  font-size: 14px;
  line-height: 20px;

  svg {
    height: 20px;
    width: 20px;
    color: var(--base-icon);
    flex-shrink: 0;
  }

  h4 a, p a {
    display: inline;
    margin-right: 0px;
  }

  p {
    font-weight: 400;
    color: var(--base-text-secondary);
  }
}

.alert {
  font-weight: 600;
  border-radius: 4px;
  gap: 16px;

  svg {
    align-self: start;
  }

  h4 {
    font-size: 14px;
  }

  a {
    color: var(--text-primary);
    display: inline-block;
    font-weight: 600;
    margin-top: 16px;
    margin-right: 24px;
  }

  li {
    color: var(--text-primary);
    font-weight: 400;
  }

  &.alert-info {
    background: var(--bg-info-secondary);
    color: var(--text-on-info-secondary);

    svg {
      color: var(--icon-on-info-secondary);
    }

    a,
    li {
      color: var(--text-on-info-secondary);
    }
  }

  &.alert-success {
    background: var(--bg-success-secondary);
    color: var(--text-on-success-secondary);

    svg {
      color: var(--icon-on-success-secondary);
    }

    a,
    li {
      color: var(--text-on-success-secondary);
    }
  }

  &.alert-danger,
  &.alert-error {
    background: var(--bg-danger-secondary);
    color: var(--text-on-danger-secondary);


    svg {
      color: var(--icon-on-danger-secondary);
    }

    a,
    li {
      color: var(--text-on-danger-secondary);
    }
  }

  &.alert-warning {
    background: var(--bg-warning-secondary);
    color: var(--text-on-warning-secondary);

    svg {
      color: var(--icon-on-warning-secondary);
    }

    a,
    li {
      color: var(--text-on-warning-secondary);
    }
  }
}

.banner {
  justify-content: center;
  gap: 8px;

  &.banner-info {
    background: var(--bg-info-secondary);
    color: var(--text-on-info-secondary);

    p {
      color: var(--text-on-info-secondary);
    }
  }

  &.banner-success {
    background: var(--bg-success-secondary);
    color: var(--text-on-success-secondary);

    p {
      color: var(--text-on-success-secondary);
    }
  }

  &.banner-danger,
  &.banner-error {
    background: var(--bg-danger-secondary);
    color: var(--text-on-danger-secondary);

    p {
      color: var(--text-on-danger-secondary);
    }
  }

  &.banner-warning {
    background: var(--bg-warning-secondary);
    color: var(--text-on-warning-secondary);

    p {
      color: var(--text-on-warning-secondary);
    }
  }

  &.banner-impersonate {
    background: var(--bg-danger-hover);
    color: var(--text-on-danger);

    a {
      color: var(--text-on-danger);
    }

    > * + * {
      margin-left: 8px;
    }
  }
}

.icon-alert {
  fill: var(--icon-on-warning-secondary);
}

.icon-danger,
.icon-error {
  fill: var(--icon-on-danger-secondary);
}

.icon-notice {
  fill: var(--icon-on-info-secondary);
}

.icon-success {
  fill: var(--icon-on-success-secondary);
}

.icon-default {
  fill: var(--base-icon);
}

/* Component: animation.css */
.animated {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes slide-in-from-left {
  from {
    transform: translateX(-100%);
  }
}

@keyframes slide-out-to-left {
  to {
    transform: translateX(-100%);
  }
}

@keyframes slide-in-from-right {
  from {
    transform: translateX(100%);
  }
}

@keyframes slide-out-to-right {
  to {
    transform: translateX(100%);
  }
}
/* Component: announcements.css */
.announcement-new {
  background-color: var(--color-blue-100);
  color: var(--color-blue-600);
}

.announcement-fix {
  background-color: var(--color-red-100);
  color: var(--color-red-600);
}

.announcement-update {
  background-color: var(--color-green-100);
  color: var(--color-green-600);
}

.announcement-improvement {
  background-color: var(--color-purple-100);
  color: var(--color-purple-600);
}

/* Component: avatars.css */
.avatar {
  font-size: 13px;
  font-weight: 600;
  position: relative;
  display: inline-flex;
  width: 3rem;
  height: 3rem;
  min-width: 14px;
  color: #fff;
  align-items: center;
  justify-content: center;

  .avatar-small {
    position: absolute;
    border-radius: 50%;
    height: 16px;
    width: 16px;
    bottom: 0;
    right: 0;
    box-shadow: 0 0 0 2px #fff;
  }

  &:has(.initials) {
    background: var(--bg-primary);
    display: flex;
    align-items: center;
  }
}

/* Component: base.css */
body {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100dvh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  line-height: 1.5;
}

main {
  padding-left: 12px;
  padding-right: 12px;

  @media (min-width: 1024px) {
    padding-left: 0px;
    padding-right: 0px;
  }
}

a {
  color: var(--text-primary);

  &:hover,
  &:focus {
    color: var(--text-primary-hover);
    transform: none;
  }
}

ul {
  list-style-type: disc;
  list-style-position: inside;
}

ol {
  list-style-type: decimal;
  list-style-position: inside;
}

.table {
  width: 100%;

  th, td {
    vertical-align: top;
  }

}

.table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
}

/* Component: braintree.css */
/* =========================================================================
   General
   ========================================================================= */

/* =========================================================================
   Loaders
   ========================================================================= */

/* =========================================================================
   Headings
   ========================================================================= */
:is(.dark .braintree-placeholder,
.braintree-heading) {
  color: #d4d4d4;
}
:is(.dark .braintree-icon--bordered) {
  background: #FFFFFF;
  border: 1px solid #BBBBBB;
}
/* =========================================================================
   Upper Container
   ========================================================================= */
:is(.dark .braintree-upper-container:before) {
  background-color: #FAFAFA;
  border: 1px solid #B5B5B5;
}
/* =========================================================================
   Payment Options
   ========================================================================= */
:is(.dark .braintree-option) {
  background-color: #171717;
  border-color: #B5B5B5;
}
:is(.dark .braintree-option:hover) {
  background: #404040;
}
:is(.dark .braintree-option.braintree-disabled) {
  background: #EAEAEA;
}
:is(.dark .braintree-option.braintree-disabled .braintree-option__label) {
  color: #787878;
}
:is(.dark .braintree-option.braintree-disabled .braintree-option__disabled-message span) {
  border-bottom: 1px solid #B5B5B5;
}
:is(.dark .braintree-option .braintree-option__label) {
  color: #d4d4d4;
}
/* =========================================================================
   Apple Pay buttons
   ========================================================================= */
@supports not (-webkit-appearance: -apple-pay-button) {
  :is(.dark .apple-pay-button-black) {
    background-image: -webkit-named-image(apple-pay-logo-white);
    background-color: black;
  }
  :is(.dark .apple-pay-button-white) {
    background-image: -webkit-named-image(apple-pay-logo-black);
    background-color: white;
  }
  :is(.dark .apple-pay-button-white-with-line) {
    background-image: -webkit-named-image(apple-pay-logo-black);
    background-color: white;
    border: 0.5px solid black;
  }
}
/* =========================================================================
   Sheets
   ========================================================================= */
:is(.dark .braintree-sheet) {
  background-color: #171717;
  border: 1px solid #B5B5B5;
}
:is(.dark .braintree-sheet--has-error .braintree-sheet) {
  border: 2px solid #CA2A2A;
}
:is(.dark .braintree-sheet--has-error .braintree-methods--edit .braintree-method) {
  border-left: 2px solid #CA2A2A;
  border-right: 2px solid #CA2A2A;
}
:is(.dark .braintree-sheet--has-error .braintree-methods--edit .braintree-method:first-child) {
  border-top: 2px solid #CA2A2A;
}
:is(.dark .braintree-sheet--has-error .braintree-methods--edit .braintree-method:last-child) {
  border-bottom: 2px solid #CA2A2A;
}
:is(.dark .braintree-sheet--has-error .braintree-sheet__error) {
  color: #CA2A2A;
}
:is(.dark .braintree-sheet--has-error .braintree-sheet__error .braintree-sheet__error-icon use) {
  fill: #CA2A2A;
}
:is(.dark .braintree-sheet--has-error .braintree-sheet__error .braintree-sheet__error-text) {
  color: #CA2A2A;
}
:is(.dark .braintree-show-methods .braintree-sheet--active.braintree-sheet--has-error .braintree-sheet) {
  border-color: #CA2A2A;
}
:is(.dark .braintree-show-methods .braintree-sheet--active .braintree-sheet) {
  border-color: #219653;
}
:is(.dark .braintree-sheet__header) {
  border-bottom: 1px solid #B5B5B5;
}
:is(.dark .braintree-sheet__header .braintree-sheet__text) {
  color: #FFFFFF;
}
/* =========================================================================
   Input Forms
   ========================================================================= */
:is(.dark .braintree-form__hosted-field iframe) {
  background-color: #171717;
}
:is(.dark .braintree-sheet__content--form .braintree-form__field-group .braintree-form__label) {
  color: #FFFFFF;
}
:is(.dark .braintree-sheet__content--form .braintree-form__field-group .braintree-form__descriptor) {
  color: #FFFFFF;
}
/* =========================================================================
   Payment Methods
   ========================================================================= */
:is(.dark .braintree-method) {
  background-color: white;
  border-color: #B5B5B5;
}
:is(.dark .braintree-method .braintree-method__label) {
  color: #000000;
}
:is(.dark .braintree-method .braintree-method__icon) {
  background-color: #FAFAFA;
  fill: #FAFAFA;
}
:is(.dark .braintree-methods--active:not(.braintree-methods--edit) .braintree-method--active) {
  border-color: #219653;
}
:is(.dark .braintree-methods--active:not(.braintree-methods--edit) .braintree-method--active .braintree-method__check) {
  background-color: #219653;
}
:is(.dark .braintree-methods--active:not(.braintree-methods--edit) .braintree-method--active .braintree-method__icon) {
  fill: white;
}
:is(.dark .braintree-method__delete-container .braintree-method__delete) {
  background-color: #EC493A;
}
:is(.dark .braintree-method__delete-container .braintree-method__delete:hover) {
  background-color: #c62213;
}
:is(.dark .braintree-delete-confirmation) {
  background: #FAFAFA !important;
  color: #606060;
}
:is(.dark .braintree-delete-confirmation .braintree-delete-confirmation__button-container .braintree-delete-confirmation__button) {
  border-top: 1px solid #B5B5B5;
  background: #FAFAFA;
  color: #C4C4C4;
}
:is(.dark .braintree-delete-confirmation .braintree-delete-confirmation__button-container [data-braintree-id="delete-confirmation__yes"]) {
  color: white;
  background: #EC493A;
  border-left: solid 1px #b5b5b5;
}
:is(.dark .braintree-delete-confirmation .braintree-delete-confirmation__button-container [data-braintree-id="delete-confirmation__yes"]:hover) {
  background: #c62213;
}
:is(.dark .braintree-delete-confirmation .braintree-delete-confirmation__button-container [data-braintree-id="delete-confirmation__no"]) {
  color: #666666;
}
:is(.dark .braintree-delete-confirmation .braintree-delete-confirmation__button-container [data-braintree-id="delete-confirmation__no"]:hover) {
  background: #efefef;
}
:is(.dark .braintree-large-button) {
  background: #404040;
  color: #e5e5e5;
}
:is(.dark .braintree-large-button:hover) {
  background: #262626;
}
:is(.dark .braintree-large-button:hover span) {
  border-color: black;
}
:is(.dark .braintree-large-button span) {
  border-bottom: 1px solid #B5B5B5;
}
/* =========================================================================
   Dropin Visibility States
   ========================================================================= */

/* =========================================================================
   Javascript hooks
   ========================================================================= */

/* =========================================================================
   Flexbox-free styling
   ========================================================================= */

/* Component: buttons.css */
/* Hotwire's version of data-disable-with */
button                  .when-disabled { display: none; }
button[disabled]        .when-disabled { display: initial; }
button                  .when-enabled { display: initial; }
button[disabled]        .when-enabled { display: none; }

.btn {
  display: inline-flex;
  padding: 8px 12px;
  text-decoration: none;
  justify-content: center;
  align-items: center;
  gap: 4px;
  border-radius: 6px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;

  &:hover,
  &:focus {
    cursor: pointer;
  }

  &:focus-visible {
    outline: 2px solid var(--base-border-focus);
    outline-offset: 2px;
  }

  &:disabled {
    opacity: 60%;
    cursor: not-allowed;
  }

  svg {
    width: 16px;
    height: 16px;
  }
}

.btn-outline {
  box-shadow: 0 0 #0000;
}

.btn-xs {
  padding: 4px 8px;
  font-size: 12px;
  line-height: 1;
}

.btn-sm {
  padding: 4px 8px;
}

.btn-small {
  padding: 4px 8px;
}

.btn-lg {
  padding: 10px 14px;
}

.btn-large {
  padding: 10px 14px;
}

.btn-xl {
  padding: 12px 16px;
}

.btn-icon {
  padding: 8px;
  border-radius: 50%;

  &.btn-xs {
    padding: 4px;
  }

  &.btn-sm {
    padding: 10px;
  }

  &.btn-lg {
    padding: 12px;
  }

  &.btn-xl {
    padding: 14px;
  }

  svg {
    width: 24px;
    height: 24px;
  }
}

.btn-expanded {
  display: flex;
  justify-content: center;
  width: 100%;
}

.btn-block {
  display: flex;
  justify-content: center;
  width: 100%;
}

.btn-primary {
  background: var(--bg-primary);
  color: var(--text-on-primary);

  &:hover {
    background: var(--bg-primary-hover);
    color: var(--text-on-primary);
  }

  &:disabled:hover {
    background: var(--bg-primary);
    color: var(--text-on-primary);
  }

  &.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-primary-hover);

    &:hover {
      background: var(--bg-primary-hover);
      color: var(--text-on-primary);
      border: 1px solid var(--bg-primary-hover);
    }
  }
}

.btn-secondary {
  background: var(--bg-secondary);
  color: var(--text-on-secondary);
  border: 1px solid var(--border-secondary);

  &:hover {
    background: var(--bg-secondary-hover);
    color: var(--text-on-secondary-hover);
  }

  &:disabled:hover {
    background: var(--bg-secondary);
    color: var(--text-on-secondary);
  }

  &.btn-outline {
    background: transparent;
    color: var(--text-on-secondary);
    border: 1px solid var(--border-secondary);

    &:hover {
      background: var(--bg-secondary-hover);
      color: var(--text-on-secondary-hover);
    }
  }
}

.btn-tertiary {
  background: var(--bg-secondary);
  color: var(--text-on-secondary);
  border: 1px solid var(--border-secondary);

  &:hover {
    background: var(--bg-secondary-hover);
    color: var(--text-on-secondary-hover);
  }

  &:disabled:hover {
    background: var(--bg-secondary);
    color: var(--text-on-secondary);
  }

  &.btn-outline {
    background: transparent;
    color: var(--text-on-secondary);
    border: 1px solid var(--border-secondary);

    &:hover {
      background: var(--bg-secondary-hover);
      color: var(--text-on-secondary-hover);
    }
  }
}

.btn-danger {
  background: var(--bg-danger);
  color: var(--text-on-danger);

  &:hover {
    background: var(--bg-danger-hover);
    color: var(--text-on-danger);
  }

  &:disabled:hover {
    background: var(--bg-danger);
    color: var(--text-on-danger);
  }

  &:focus-visible {
    outline: 2px solid var(--border-danger-focus);
    outline-offset: 2px;
  }

  &.btn-outline {
    background: transparent;
    color: var(--text-danger);
    border: 1px solid var(--border-danger);

    &:hover {
      background: var(--bg-danger-hover);
      color: var(--text-on-danger);
      border: 1px solid var(--bg-danger-hover);
    }
  }
}

.btn-success {
  background: var(--bg-success);
  color: var(--text-on-success);

  &:hover {
    background: var(--bg-success-hover);
    color: var(--text-on-success);
  }

  &:disabled:hover {
    background: var(--bg-success);
    color: var(--text-on-success);
  }

  &:focus-visible {
    outline: 2px solid var(--border-success-focus);
    outline-offset: 2px;
  }

  &.btn-outline {
    background: transparent;
    color: var(--text-success);
    border: 1px solid var(--border-success);

    &:hover {
      background: var(--bg-success-hover);
      color: var(--text-on-success);
      border: 1px solid var(--bg-success-hover);
    }
  }
}

.btn-light {
  background: var(--bg-light);
  color: var(--text-on-light);
  border: 1px solid var(--border-light);

  &:hover {
    background: var(--bg-light-hover);
    color: var(--text-on-light);
  }

  &:disabled:hover {
    background: var(--bg-light);
    color: var(--text-on-light);
  }

  &.btn-outline {
    background: transparent;
    color: var(--text-on-light-outline);
    border: 1px solid var(--border-light);

    &:hover {
      background: var(--bg-light-hover);
      color: var(--text-on-light);
    }
  }
}

.btn-white {
  background: var(--bg-light);
  color: var(--text-on-light);
  border: 1px solid var(--border-light);

  &:hover {
    background: var(--bg-light-hover);
    color: var(--text-on-light);
  }

  &:disabled:hover {
    background: var(--bg-light);
    color: var(--text-on-light);
  }

  &.btn-outline {
    background: transparent;
    color: var(--text-on-light-outline);
    border: 1px solid var(--border-light);

    &:hover {
      background: var(--bg-light-hover);
      color: var(--text-on-light);
    }
  }
}

.btn-gray {
  background: var(--bg-light);
  color: var(--text-on-light);
  border: 1px solid var(--border-light);

  &:hover {
    background: var(--bg-light-hover);
    color: var(--text-on-light);
  }

  &:disabled:hover {
    background: var(--bg-light);
    color: var(--text-on-light);
  }

  &.btn-outline {
    background: transparent;
    color: var(--text-on-light-outline);
    border: 1px solid var(--border-light);

    &:hover {
      background: var(--bg-light-hover);
      color: var(--text-on-light);
    }
  }
}

.btn-dark {
  background: var(--bg-dark);
  color: var(--text-on-dark);
  border: 1px solid var(--bg-dark);

  &:hover {
    background: var(--bg-dark-hover);
    color: var(--text-on-dark);
    border: 1px solid var(--bg-dark-hover);
  }

  &:disabled:hover {
    background: var(--bg-dark);
    color: var(--text-on-dark);
  }

  &:focus-visible {
    outline: 2px solid var(--border-dark-focus);
    outline-offset: 2px;
  }

  &.btn-outline {
    background: transparent;
    color: var(--text-on-dark-outline);
    border: 1px solid var(--border-dark);

    &:hover {
      background: var(--bg-dark-hover);
      color: var(--text-on-dark);
    }
  }
}

.btn-link {
  background: transparent;
  color: var(--text-primary);
  box-shadow: 0 0 #0000;

  &:hover {
    color: var(--text-primary-hover);
  }

  &:disabled:hover {
    background: transparent;
    color: var(--text-primary);
  }

  &.btn-icon {
    background: var(--base-bg-lowest);
    border: 1px solid var(--border-primary-hover);

    &:hover {
      background: var(--base-bg-low);
    }
  }
}

/* Component: cards.css */
.card {
  background: var(--base-bg-low);
  color: var(--base-text);
  border: 1px solid var(--base-border-secondary);
  border-radius: 8px;
  box-shadow:
    0px 1px 2px -1px rgba(0, 0, 0, 0.1),
    0px 1px 3px 0px rgba(0, 0, 0, 0.1);
  padding: 32px;

  h3 {
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    margin-bottom: 16px;
  }

  p {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
  }

  @media (min-width: 1024px) {
    &.card-image {
      width: 50%;
    }
  }
}

.card-cta-basic {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.card-image {
  padding: 0px;
  overflow: hidden;
  width: 100%;

  & > :last-child {
    padding: 24px;
  }

  @media (min-width: 1024px) {
    &.card {
      width: 50%;
    }
  }
}

/* Component: configurator.css */
/* Configurator Components - Redesigned */

/* Step content */
.mobile-step-content {
	@apply flex flex-row;
	display: none;
	animation: mobileFadeIn 0.3s ease-out;
	text-align: center;
	/* Center heading */
}

.mobile-step-content.active {
	display: block;
}

/* Main Wrapper */
.configurator-wrapper {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	padding-top: 80px; /* Account for fixed nav */
	background-color: #f9fafb;
}

/* Header Bar */
.configurator-header-bar {
	background-color: white;
	border-bottom: 1px solid #e5e7eb;
	padding: 1rem 0;
	position: sticky;
	top: 80px;
	z-index: 30;
	box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.header-content {
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 2rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.configurator-title {
	font-size: 1.5rem;
	font-weight: 600;
	color: #070909;
}

.header-actions {
	display: flex;
	gap: 1rem;
	align-items: center;
}

/* Configuration Buttons */
.config-btn {
	display: inline-flex;
	align-items: center;
	padding: 0.5rem 1rem;
	border-radius: 0.5rem;
	font-size: 0.875rem;
	font-weight: 500;
	transition: all 0.15s;
	border: 2px solid transparent;
	cursor: pointer;
}

.config-btn-secondary {
	background-color: #f3f4f6;
	color: #374151;
	border-color: #e5e7eb;
}

.config-btn-secondary:hover {
	background-color: #e5e7eb;
	border-color: #d1d5db;
}

.config-btn-primary {
	background-color: #f48c06;
	color: white;
	border-color: #f48c06;
}

.config-btn-primary:hover {
	background-color: #e67e00;
	border-color: #e67e00;
}

.configuration-code {
	font-family: 'Courier New', monospace;
	font-size: 0.875rem;
	color: #6b7280;
	font-weight: 600;
}

/* Main Content Layout */
.configurator-main-content {
	display: grid;
	grid-template-columns: 380px 1fr;
	gap: 0;
	max-width: 1440px;
	margin: 0 auto;
	width: 100%;
	height: calc(100vh - 180px);
}

/* Configuration Panel Wrapper */
.config-panel-wrapper {
	background-color: white;
	border-right: 1px solid #e5e7eb;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

/* Viewer Wrapper */
.viewer-wrapper {
	position: relative;
	overflow: hidden;
	background-color: #f3f4f6;
}

.viewer-container {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Floating Price Summary */
.floating-price-summary {
	position: absolute;
	bottom: 2rem;
	right: 2rem;
	z-index: 20;
}

.price-card {
	background: white;
	border-radius: 0.75rem;
	padding: 1.25rem;
	box-shadow:
		0 10px 25px -5px rgba(0, 0, 0, 0.1),
		0 10px 10px -5px rgba(0, 0, 0, 0.04);
	min-width: 280px;
}

.price-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 0.5rem;
}

.price-label {
	font-size: 0.875rem;
	color: #6b7280;
}

.price-value {
	font-size: 1rem;
	color: #111827;
	font-weight: 500;
}

.price-total .price-label {
	font-weight: 600;
	color: #111827;
	font-size: 1rem;
}

.price-total .price-value {
	font-size: 1.5rem;
	font-weight: 700;
	color: #070909;
}

.price-divider {
	height: 1px;
	background-color: #e5e7eb;
	margin: 0.75rem 0;
}

.price-actions {
	display: flex;
	gap: 0.5rem;
	margin-top: 1rem;
}

.price-btn {
	flex: 1;
	padding: 0.625rem 1rem;
	border-radius: 0.5rem;
	font-size: 0.875rem;
	font-weight: 500;
	transition: all 0.15s;
	cursor: pointer;
	border: 2px solid transparent;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.price-btn-save {
	background-color: #f3f4f6;
	color: #374151;
	border-color: #e5e7eb;
	flex: 0 0 auto;
	padding: 0.625rem;
}

.price-btn-save:hover {
	background-color: #e5e7eb;
}

.price-btn-primary {
	background-color: #f48c06;
	color: white;
	border-color: #f48c06;
}

.price-btn-primary:hover {
	background-color: #e67e00;
	border-color: #e67e00;
}

/* Three.js Viewer */
.viewer-loading,
.viewer-error,
.viewer-fallback {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: rgba(255, 255, 255, 0.95);
	z-index: 10;
}

.spinner {
	width: 2.5rem;
	height: 2.5rem;
	border: 4px solid #e5e7eb;
	border-top-color: #3b82f6;
	border-radius: 50%;
	animation: spin 1s linear infinite;
}

/* Camera Controls */
.camera-controls {
	position: absolute;
	bottom: 1.25rem;
	left: 1.25rem;
	display: flex;
	flex-direction: column;
	gap: 0.625rem;
	z-index: 10;
}

.view-presets,
.zoom-controls {
	display: flex;
	gap: 0.25rem;
	background-color: rgba(255, 255, 255, 0.9);
	padding: 0.25rem;
	border-radius: 0.5rem;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
	backdrop-filter: blur(4px);
}

.control-btn {
	width: 2.25rem;
	height: 2.25rem;
	display: flex;
	align-items: center;
	justify-content: center;
	border: none;
	background-color: white;
	border-radius: 0.375rem;
	cursor: pointer;
	transition: all 0.15s;
}

.control-btn:hover {
	background-color: #f3f4f6;
	transform: scale(1.05);
}

.control-btn:active {
	transform: scale(0.95);
}

.control-btn i {
	font-size: 0.875rem;
	color: #374151;
}

/* Configuration Panel */
.config-step {
	display: none;
}

.config-step.active {
	display: block;
}

.configuration-panel {
	background-color: white;
	color: #070909;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.configuration-panel h3 {
	color: #070909;
	font-size: 1.125rem;
	font-weight: 600;
	margin-bottom: 1.25rem;
}

/* Progress Indicator - Compact */
.config-progress {
	background-color: #f9fafb;
	border-bottom: 1px solid #e5e7eb;
	padding: 0.875rem 1rem;
	flex-shrink: 0;
	overflow-x: auto;
	overflow-y: hidden;
}

/* Hide scrollbar but keep functionality */
.config-progress::-webkit-scrollbar {
	height: 3px;
}

.config-progress::-webkit-scrollbar-track {
	background: transparent;
}

.config-progress::-webkit-scrollbar-thumb {
	background: #d1d5db;
	border-radius: 2px;
}

.config-progress::-webkit-scrollbar-thumb:hover {
	background: #9ca3af;
}

/* Scrollable Content Area */
.config-steps {
	flex: 1;
	overflow-y: auto;
	padding: 2rem 1.5rem;
	min-height: 0;
	background-color: white;
}

/* Navigation Buttons - Improved */
.config-navigation {
	background-color: white;
	border-top: 1px solid #e5e7eb;
	padding: 1.25rem 1.5rem;
	flex-shrink: 0;
	display: flex;
	gap: 0.75rem;
	justify-content: space-between;
}

.config-navigation button {
	flex: 1;
	padding: 0.75rem 1.5rem;
	border-radius: 0.5rem;
	font-weight: 500;
	font-size: 0.9375rem;
	transition: all 0.15s;
}

#prev-button {
	background-color: white;
	color: #374151;
	border: 2px solid #e5e7eb;
}

#prev-button:not(:disabled):hover {
	background-color: #f9fafb;
	border-color: #d1d5db;
}

#prev-button:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

#next-button {
	background-color: #f48c06;
	color: white;
	border: 2px solid #f48c06;
}

#next-button:hover {
	background-color: #e67e00;
	border-color: #e67e00;
}

/* Selection Cards - Improved */
.house-type-card,
.material-card,
.door-card {
	border: 2px solid #e5e7eb;
	border-radius: 0.75rem;
	padding: 1.25rem;
	transition: all 0.15s;
	background-color: white;
	cursor: pointer;
	box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.house-type-card:hover,
.material-card:hover,
.door-card:hover {
	border-color: #f48c06;
	box-shadow: 0 4px 6px -1px rgba(244, 140, 6, 0.1);
	transform: translateY(-2px);
}

.house-type-card.selected,
.material-card.selected,
.door-card.selected {
	border-color: #f48c06;
	background-color: #fef3e2;
	box-shadow: 0 4px 6px -1px rgba(244, 140, 6, 0.15);
}

.house-type-card h4,
.material-card h4,
.door-card h4 {
	font-size: 1.125rem;
	font-weight: 600;
	color: #111827;
	margin-bottom: 0.5rem;
}

.house-type-card p,
.material-card p,
.door-card p {
	font-size: 0.875rem;
	color: #6b7280;
	line-height: 1.4;
	margin-bottom: 0.5rem;
}

.house-type-card .price,
.material-card .price,
.door-card .price {
	font-size: 1rem;
	font-weight: 600;
	color: #070909;
}

/* Dimension Controls */
input[type='range'] {
	width: 100%;
	height: 0.375rem;
	border-radius: 0.25rem;
	outline: none;
	appearance: none;
	cursor: pointer;
	background-color: #bdc6b3;
}

input[type='range']::-webkit-slider-thumb {
	appearance: none;
	width: 1rem;
	height: 1rem;
	border-radius: 50%;
	cursor: pointer;
	transition: background-color 0.15s;
	background-color: #697757;
}

input[type='range']::-webkit-slider-thumb:hover {
	background-color: #070909;
}

input[type='range']::-moz-range-thumb {
	width: 1rem;
	height: 1rem;
	border-radius: 50%;
	cursor: pointer;
	border: none;
	transition: background-color 0.15s;
	background-color: #697757;
}

input[type='range']::-moz-range-thumb:hover {
	background-color: #070909;
}

/* Progress Steps - Horizontal Breadcrumb Design (Original) */
.progress-step {
	flex: 0 0 auto;
	min-width: 90px;
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
	cursor: pointer;
	transition: opacity 0.15s;
	padding: 0 0.5rem;
}

.progress-step:hover {
	opacity: 0.75;
}

/* Connecting line between steps */
.progress-step:not(:last-child)::after {
	content: '';
	position: absolute;
	top: 20px;
	left: calc(50% + 20px);
	right: calc(-100% + 20px);
	height: 1px;
	background-color: #d1d5db;
	z-index: 0;
}

.progress-step.completed:not(:last-child)::after {
	background-color: #697757;
}

/* Circular step number */
.progress-step .step-number {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 50%;
	background-color: #e5e7eb;
	border: 2px solid #d1d5db;
	font-weight: 600;
	margin-bottom: 0.5rem;
	transition: all 0.2s;
	color: #9ca3af;
	font-size: 0.875rem;
	position: relative;
	z-index: 1;
}

.progress-step.completed .step-number {
	background-color: #697757;
	border-color: #697757;
	color: white;
}

.progress-step.current .step-number {
	background-color: #697757;
	border-color: #697757;
	color: white;
}

/* Label below the circle */
.progress-step .step-label {
	display: block;
	font-size: 0.75rem;
	color: #6b7280;
	font-weight: 500;
	text-align: center;
	line-height: 1.2;
}

.progress-step.completed .step-label,
.progress-step.current .step-label {
	color: #070909;
	font-weight: 600;
}

/* Image viewer styles */
#image-viewer {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

/* Fix wrapper div to have full dimensions */
#image-viewer > div {
	width: 100%;
	height: 100%;
	position: relative;
}

#image-viewer img {
	max-width: 90%;
	max-height: 90%;
	object-fit: contain;
}

/* Absolute positioned images */
#image-viewer img.absolute {
	position: absolute;
	top: 5%;
	left: 5%;
	width: 90% !important;
	height: 90% !important;
	object-fit: contain !important;
}

/* Hide images with display: none */
#image-viewer img[style*='display: none'] {
	display: none !important;
}

/* Animation */
@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}

/* Mobile Responsive Design */
@media (max-width: 1024px) {
	.configurator-main-content {
		grid-template-columns: 340px 1fr;
	}
}

@media (max-width: 768px) {
	/* Switch to stacked layout on mobile */
	.configurator-wrapper {
		padding-top: 60px;
	}

	.configurator-header-bar {
		top: 60px;
		padding: 0.75rem 0;
	}

	.header-content {
		padding: 0 1rem;
		flex-direction: column;
		gap: 1rem;
		align-items: stretch;
	}

	.configurator-title {
		font-size: 1.25rem;
		text-align: center;
	}

	.header-actions {
		flex-direction: column;
		gap: 0.5rem;
	}

	.configurator-main-content {
		grid-template-columns: 1fr;
		height: auto;
	}

	/* Mobile config panel */
	.config-panel-wrapper {
		order: 2;
		border-right: none;
		border-top: 1px solid #e5e7eb;
		max-height: 60vh;
	}

	/* Mobile viewer */
	.viewer-wrapper {
		order: 1;
		height: 50vh;
		min-height: 400px;
	}

	/* Mobile price summary */
	.floating-price-summary {
		position: fixed;
		bottom: 0;
		left: 0;
		right: 0;
		z-index: 40;
	}

	.price-card {
		border-radius: 1rem 1rem 0 0;
		box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.1);
	}

	/* Progress steps on mobile */
	.config-progress {
		padding: 0.75rem 0.5rem;
		overflow-x: auto;
		white-space: nowrap;
	}

	.progress-step {
		min-width: 40px;
		padding: 0 0.125rem;
	}

	.progress-step .step-label {
		display: none;
	}

	.progress-step .step-number {
		width: 1.25rem;
		height: 1.25rem;
		font-size: 0.625rem;
		margin-bottom: 0;
	}

	.progress-step:not(:last-child)::after {
		top: 10px;
	}

	/* Camera controls on mobile */
	.camera-controls {
		bottom: 1rem;
		left: 1rem;
		right: 1rem;
		flex-direction: row;
		justify-content: center;
	}

	/* Mobile navigation buttons */
	.config-navigation {
		position: fixed;
		bottom: 0;
		left: 0;
		right: 0;
		z-index: 35;
		background-color: white;
		box-shadow: 0 -2px 4px 0 rgba(0, 0, 0, 0.05);
	}
}

@media (max-width: 480px) {
	.config-btn {
		font-size: 0.8125rem;
		padding: 0.375rem 0.75rem;
	}

	.config-btn svg {
		display: none;
	}

	.configuration-code {
		display: none !important;
	}
}

/* ========== STEP HEADINGS (Base Class) ========== */

/* Base class for all step headings - shared by all steps */
.configurator-step-heading,
.mobile-step-heading,
.mobile-subheading,
.dimension-step-heading {
	@apply w-full p-4 text-xs font-semibold text-left text-white rounded-md shadow-lg backdrop-blur-md;
	background-color: rgba(105, 119, 87, 0.65); /* woodspaces-green with 65% opacity */
}

/* Specific overrides for mobile-step-heading if needed */
.xmobile-step-heading {
	/* Add custom styles here if needed */
}

/* Specific overrides for dimension-step-heading if needed */
.dimension-step-heading {
	font-size: 1.5rem;
	color: #768165;
}

/* ========== BEAUTIFUL MOBILE-IMMERSIVE BUTTONS (Centralized) ========== */

/* House type cards */
.mobile-house-type-card {
	@apply relative p-4 py-2 overflow-hidden cursor-pointer;
	@apply md:min-h-[60px] justify-start items-center gap-3;
	@apply flex flex-row transition-all duration-300 border-2 rounded-xl;
	@apply w-full xl:w-fit;
	/* More transparent background to show blur effect (0.85 = 85% opaque, 15% transparent) */
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.85) 0%, rgba(249, 250, 251, 0.8) 100%);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px); /* Safari support */
	border-color: rgba(189, 198, 179, 0.4);
	box-shadow:
		0 2px 8px rgba(0, 0, 0, 0.06),
		0 1px 2px rgba(0, 0, 0, 0.04),
		inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.mobile-house-type-card:hover {
	background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(249, 250, 251, 0.95) 100%);
	border-color: rgba(105, 119, 87, 0.6);
	transform: translateY(-2px) scale(1.01);
	box-shadow:
		0 8px 20px rgba(0, 0, 0, 0.1),
		0 3px 6px rgba(0, 0, 0, 0.06),
		inset 0 1px 0 rgba(255, 255, 255, 1);
}

.mobile-house-type-card:active {
	transform: translateY(0) scale(0.99);
	transition: all 0.1s;
}

.mobile-house-type-card.selected {
	background: linear-gradient(135deg, rgba(244, 140, 6, 0.12) 0%, rgba(244, 140, 6, 0.08) 50%, rgba(255, 255, 255, 0.9) 100%);
	border-color: #f48c06;
	box-shadow:
		0 0 0 3px rgba(244, 140, 6, 0.15),
		0 8px 24px rgba(244, 140, 6, 0.2),
		0 3px 8px rgba(0, 0, 0, 0.08);
}

/* Shine effect on hover */
.mobile-house-type-card::before {
	@apply absolute top-0 w-full h-full pointer-events-none;
	content: '';
	left: -100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
	transition: left 0.5s ease;
}

.mobile-house-type-card:hover::before {
	left: 100%;
}

.mobile-house-icon {
	@apply w-8 h-8 transition-transform duration-300;
	color: #2d3a1f;
	filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

/* Ensure SVG fills the icon container */
.mobile-house-icon svg {
	width: 100%;
	height: 100%;
	display: block;
}

.mobile-house-type-card:hover .mobile-house-icon {
	transform: scale(1.05);
}

.mobile-house-type-card.selected .mobile-house-icon {
	color: #f48c06;
	filter: drop-shadow(0 2px 4px rgba(244, 140, 6, 0.3));
}

.mobile-house-info {
	@apply flex flex-col items-start text-left;
}

.mobile-house-name {
	@apply text-sm font-bold;
	color: #1f2937;
	letter-spacing: -0.01em;
}

.mobile-house-price {
	@apply text-xs font-medium;
	color: #6b7280;
}

.mobile-house-type-card.selected .mobile-house-price {
	@apply font-bold;
	color: #f48c06;
	text-shadow: 0 1px 2px rgba(244, 140, 6, 0.2);
}

.mobile-house-type-card.selected .mobile-house-name {
	@apply font-bold;
	color: #eaa953;
	text-shadow: 0 1px 2px rgba(244, 140, 6, 0.2);
}

/* Preset dimension buttons */
.mobile-preset-btn {
	@apply relative cursor-pointer;
	@apply py-[0.35rem] px-[0.55rem] text-[0.7rem] whitespace-nowrap font-semibold;
	@apply transition-all duration-300 border-2 rounded-lg;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(249, 250, 251, 0.9) 100%);
	backdrop-filter: blur(12px);
	border-color: rgba(105, 119, 87, 0.3);
	color: #1f2937;
	box-shadow:
		0 1px 3px rgba(0, 0, 0, 0.05),
		inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.mobile-preset-btn:hover {
	background: linear-gradient(135deg, rgba(222, 227, 212, 0.95) 0%, rgba(189, 198, 179, 0.85) 100%);
	border-color: rgba(105, 119, 87, 0.6);
	color: #697757;
	transform: translateY(-1px);
	box-shadow:
		0 4px 12px rgba(0, 0, 0, 0.08),
		inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.mobile-preset-btn:active {
	transform: translateY(0);
	transition: all 0.1s;
}

/* ========== STEP 2: DIMENSION CONTROLS ========== */

/* Dimension controls container */
.dimension-controls-container {
	@apply flex flex-row flex-wrap gap-2 items-start w-full max-w-[2000px] p-0;
}

@media (max-width: 768px) {
	.dimension-controls-container {
		@apply gap-2 mt-1;
	}
}

/* Preset sizes section */
.dimension-preset-section {
	@apply order-1 flex-[1_1_100%] grid grid-cols-2 sm:grid-cols-3 md:grid-cols-4 lg:grid-cols-5 gap-[0.4rem] items-center mt-0 mb-[0.4rem];
}

.dimension-preset-label {
	@apply w-full text-left text-[0.7rem] col-span-2 sm:col-span-3 md:col-span-4 lg:col-span-5  mb-0 mr-2 font-semibold drop-shadow-[0_1.2px_1.2px_rgba(0,0,0,0.8)];
	color: #ffffff; /* woodspaces-green */
}

.mobile-preset-btn {
	@apply flex-[0_1_auto] w-full min-w-[min(110px,22%)];
}

/* Individual dimension input groups (Diepte/Breedte) */
.dimension-input-group {
	@apply order-2 flex-[0_1_auto] min-w-[140px] max-w-0.5 xl:max-w-full;
	@apply w-full p-2 border rounded-md bg-white/70;
	border-color: #bdc6b3; /* woodspaces-green-light */
}

.dimension-label {
	@apply block text-[0.65rem] font-semibold mb-1;
	color: #697757; /* woodspaces-green */
}

/* Slider - visible on mobile, hidden on desktop */
.dimension-slider {
	@apply w-full;
}

@media (min-width: 1024px) {
	.dimension-slider {
		@apply hidden;
	}
}

/* Text input - hidden on mobile, visible on desktop */
.dimension-input {
	@apply w-full px-2 py-1 text-sm border rounded;
	@apply hidden;
	border-color: #bdc6b3; /* woodspaces-green-light */
}

@media (min-width: 1024px) {
	.dimension-input {
		@apply block;
	}
}

/* Value display */
.dimension-display {
	@apply block mt-1 text-base font-semibold;
}

@media (min-width: 1024px) {
	.dimension-display {
		@apply hidden;
	}
}

/* Floor area display */
.floor-area-display {
	@apply order-3 flex-[0_1_auto] min-w-[140px] float-right flex-grow;
	@apply p-2 m-0 ml-auto text-xs text-white rounded-md;
	background-color: rgba(105, 119, 87, 0.9); /* woodspaces-green with 90% opacity */
}

.floor-area-label {
	@apply text-[0.55rem] mb-[0.1rem];
}

.floor-area-value {
	@apply text-[0.85rem] font-semibold;
}

/* Door selection cards */
.mobile-door-card {
	@apply relative transition-all duration-300 border-2 rounded-lg cursor-pointer;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(249, 250, 251, 0.9) 100%);
	backdrop-filter: blur(14px);
	border-color: rgba(189, 198, 179, 0.4);
	box-shadow:
		0 2px 6px rgba(0, 0, 0, 0.05),
		inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.mobile-door-card:hover {
	background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(249, 250, 251, 0.95) 100%);
	transform: translateY(-2px);
	box-shadow:
		0 6px 16px rgba(0, 0, 0, 0.08),
		inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.mobile-door-card.selected {
	background: linear-gradient(135deg, rgba(244, 140, 6, 0.15) 0%, rgba(255, 255, 255, 0.9) 100%);
	border-color: #f48c06;
	box-shadow:
		0 0 0 3px rgba(244, 140, 6, 0.15),
		0 6px 20px rgba(244, 140, 6, 0.2);
}

.mobile-door-label {
	@apply font-bold;
	color: #1f2937;
	text-shadow: 0 1px 1px rgba(255, 255, 255, 0.8);
}

.mobile-door-desc {
	color: #6b7280;
}

.mobile-door-card.selected .mobile-door-label {
	color: #f48c06;
	text-shadow: 0 1px 1px rgba(2, 5, 5, 0.8);
}

/* Frame color cards */
.mobile-frame-card {
	@apply relative flex flex-row items-center gap-4 transition-all duration-300 border-2 rounded-lg cursor-pointer;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(249, 250, 251, 0.9) 100%);
	backdrop-filter: blur(14px);
	border-color: rgba(189, 198, 179, 0.4);
	box-shadow:
		0 2px 6px rgba(0, 0, 0, 0.05),
		inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.mobile-frame-card:hover {
	background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(249, 250, 251, 0.95) 100%);
	transform: translateY(-2px);
	box-shadow:
		0 6px 16px rgba(0, 0, 0, 0.08),
		inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.mobile-frame-card.selected {
	background: linear-gradient(135deg, rgba(244, 140, 6, 0.15) 0%, rgba(255, 255, 255, 0.9) 100%);
	border-color: #f48c06;
	box-shadow:
		0 0 0 3px rgba(244, 140, 6, 0.15),
		0 6px 20px rgba(244, 140, 6, 0.2);
}

.mobile-frame-label {
	@apply font-bold;
	color: #1f2937;
	text-shadow: 0 1px 1px rgba(255, 255, 255, 0.8);
}

.mobile-frame-desc {
	color: #6b7280;
}

.mobile-frame-card.selected .mobile-frame-label {
	color: #f48c06;
	text-shadow: 0 1px 1px rgba(2, 2, 2, 0.8);
}

.mobile-frame-swatch {
	@apply flex-1 w-10 h-10 border rounded-full;
	box-shadow:
		0 2px 4px rgba(0, 0, 0, 0.1),
		inset 0 1px 1px rgba(255, 255, 255, 0.2);
	border-color: rgba(0, 0, 0, 0.1);
}

/* Material/option buttons */
.mobile-option-btn {
	@apply relative flex flex-row items-center gap-4 p-4 transition-all duration-300 border-2 rounded-lg cursor-pointer;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(249, 250, 251, 0.9) 100%);
	backdrop-filter: blur(14px);
	border-color: rgba(189, 198, 179, 0.4);
	box-shadow:
		0 2px 6px rgba(0, 0, 0, 0.05),
		inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.mobile-option-btn:hover {
	background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(249, 250, 251, 0.95) 100%);
	transform: translateY(-2px);
	box-shadow:
		0 6px 16px rgba(0, 0, 0, 0.08),
		inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.mobile-option-btn.selected {
	background: linear-gradient(135deg, rgba(244, 140, 6, 0.15) 0%, rgba(255, 255, 255, 0.9) 100%);
	border-color: #f48c06;
	box-shadow:
		0 0 0 3px rgba(244, 140, 6, 0.15),
		0 6px 20px rgba(244, 140, 6, 0.2);
}

.mobile-option-label {
	@apply font-bold;
	color: #1f2937;
}

.mobile-option-btn.selected .mobile-option-label {
	color: #f48c06;
}

/* ========== GRID LAYOUTS FOR OPTIONS ========== */

/* Base options grid - 2 columns on mobile, flex row on desktop */
.mobile-options-grid {
	@apply grid gap-3 mb-4 xl:w-full;
	@apply flex flex-row flex-wrap gap-4 w-[450px] md:max-w-[450px] md:mx-2 md:mt-1 md:justify-evenly xl:flex-col justify-evenly xl:justify-start;
	grid-template-columns: repeat(2, 1fr);
}

.mobile-option-icon {
	@apply text-2xl leading-none;
}

.mobile-option-color {
	@apply border rounded-full w-9 h-9;
	border-color: rgba(255, 255, 255, 0.8);
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Door grid layout */
.mobile-door-grid {
	@apply flex flex-row gap-3 mx-2 mb-6;
	margin-top: 0.25rem;
	justify-content: space-evenly;
}

.mobile-door-icon {
	@apply flex items-center justify-center mb-1;
	gap: 2px;
	height: 24px;
}

.mobile-door-icon-folding {
	gap: 1px;
}

.mobile-door-panel {
	@apply rounded-sm;
	height: 22px;
	width: 16px;
	border: 1.5px solid rgba(110, 158, 109, 0.7);
	background: linear-gradient(to bottom, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.25));
}

.mobile-door-panel-small {
	@apply rounded-sm;
	height: 22px;
	width: 7px;
	border: 1.5px solid rgba(110, 158, 109, 0.7);
	background: linear-gradient(to bottom, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.25));
}

.mobile-door-info {
	display: contents;
}

/* Frame grid layout - 2 columns */
.mobile-frame-grid {
	@apply grid gap-3;
	grid-template-columns: 1fr 1fr;
}

.mobile-frame-info {
	@apply flex-1;
	display: contents;
}

/* Side selection container */
.mobile-side-selection {
	@apply w-full mt-3;
}

/* Confirm button */
.mobile-confirm-btn {
	@apply w-full rounded-xl px-3 py-2.5 text-sm font-semibold cursor-pointer;
	@apply transition-all duration-200;
	background: rgba(255, 255, 255, 0.35);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.6);
	color: #070909;
}

.mobile-confirm-btn:hover {
	background: rgba(255, 255, 255, 0.7);
	border-color: #697757;
	transform: translateY(-1px);
}

/* Custom house type button styling */
.house-type-button {
	width: 205px;
	height: 60px;
	flex-shrink: 0;
	border-radius: 5px;
	border: 2px solid transparent;
	background-color: #F5F5F5;
	cursor: pointer;
	transition: all 0.15s;
	display: flex;
	align-items: center;
	padding: 0 1rem 0 1.5rem;
	gap: 0.75rem;
}

.house-type-button:hover {
	border-color: #D98F28;
}

/* Component: direct_uploads.css */
.direct-upload {
  display: inline-block;
  position: relative;
  padding: 2px 4px;
  margin: 0 3px 3px 0;
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-radius: 3px;
  font-size: 11px;
  line-height: 13px;
}

.direct-upload--pending {
  opacity: 0.6;
}

.direct-upload__progress {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  opacity: 0.2;
  background: #0076ff;
  transition: width 120ms ease-out, opacity 60ms 60ms ease-in;
  transform: translate3d(0, 0, 0);
}

.direct-upload--complete .direct-upload__progress {
  opacity: 0.4;
}

.direct-upload--error {
  border-color: red;
}

input[type=file][data-direct-upload-url][disabled] {
  display: none;
}

/* Component: docs.css */
.docs-layout {
  scroll-behavior: smooth;
  scroll-padding-top: 57px;
}

.docs-body {
  height: 100%;
  overflow-x: hidden;
  font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-weight: 400;
  line-height: 1.5;
}

.docs-container {
  padding-top: 57px;

  @media (min-width: 1024px) {
    display: flex;
  }
}

.docs-side-nav {
  flex-shrink: 0;
  font-size: 0.875rem;
  font-weight: 400;
  padding: 24px 24px 80px 24px;

  @media (min-width: 1024px) {
    position: fixed;
    height: 100vh;
    overflow: scroll;
    width: 300px;
  }

  h5 {
    border-top: 1px solid var(--base-border-tertiary);
    color: var(--base-text-tertiary);
    font-weight: 600;
    font-size: 0.925rem;
    line-height: 20px;
    margin-top: 1rem;
    margin-bottom: 0.25rem;
    padding-top: 1rem;

    &:first-of-type {
      border-top: none;
      margin-top: 0;
      padding-top: 0;
    }
  }
}

.docs-side-nav-link {
  color: var(--base-text-secondary);
  display: block;
  margin: 0 -8px;
  padding: 2px 24px;

  &:hover {
    background-color: var(--base-bg-hover);
    color: var(--base-text-secondary);
  }

  &.active {
    background-color: var(--base-bg-hover);
    border-left: 4px solid var(--border-primary);
    color: var(--text-primary);
    padding-left: 20px;
  }
}

.docs-main,
.admin-main {
  min-height: calc(100vh - 64px);
}

.docs-main {
  background: var(--base-bg-low);
  color: var(--base-text);
  display: flex;
  flex-direction: column;
  height: 100%;

  @media (min-width: 1024px) {
    border-left: 1px solid var(--base-border-tertiary);
    margin-left: 300px;
  }
}

.docs-header {
  padding: 32px 48px;

  h1,
  p {
    color: var(--base-text);
    margin-top: 16px;
  }

  h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 48px;
  }

  p {
    font-size: 24px;
    font-weight: 400;
    line-height: 32px;

    a {
      color: var(--text-primary);
      font-weight: 600;
      text-decoration-line: underline;
    }
  }
}

.docs-content {
  padding: 0 48px 48px 48px;

  ul {
    list-style-type: none;
    margin-top: 1rem;

    > * + * {
      margin-top: 1rem;
    }
  }

  >h3,
  >h4,
  >h5 {
    margin-top: 16px;
  }

  >h2~p,
  >h3~p,
  >h4~p,
  >h5~p {
    margin-top: 20px;
  }

  >h2+p,
  >h3+p,
  >h4+p,
  >h5+p {
    margin-top: 16px;
  }

  >h2:first-of-type {
    margin: 0px;
  }

  >h2:not(:first-of-type) {
    margin: 32px 0px 0px 0px;

  }

  section {
    margin-bottom: 32px;

    section {
      margin-bottom: 16px;
    }
  }
}

.image-placeholder {
  align-items: center;
  background: var(--base-bg-highest);
  display: flex;
  height: 180px;
  justify-content: center;
}

/* Component: forms.css */
.form-group {
  margin-bottom: 24px;
  position: relative;

  &:has(> input:required) label::after,
  &:has(> select:required) label::after {
    content: "*";
    color: var(--icon-on-danger-secondary);
  }
}

.form-control, trix-editor, trix-toolbar {
  background-color: var(--base-bg-low);
  border: 1px solid var(--base-border-tertiary);
  border-radius: 6px;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
  color: var(--base-text-secondary);
  display: block;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  padding: 6px 12px;
  width: 100%;

  &::placeholder {
    color: var(--base-text-tertiary);
  }

  &:focus,
  &:focus-visible {
    box-shadow: inset 0 0 0 1px var(--border-primary-hover);
    border: 1px solid var(--border-primary-hover);
  }

  &.error {
    background: var(--bg-danger-secondary);
    box-shadow: inset 0 0 0 1px var(--border-danger);
    border: 1px solid var(--border-danger);
    color: var(--text-on-danger-secondary);

    &:focus,
    &:focus-visible {
      background: var(--base-bg-low);
    }
  }

  &[disabled],
  &[readonly] {
    background: var(--bg-disabled);
    border: 1px solid var(--border-disabled);
    color: var(--base-text-tertiary);
    cursor: not-allowed;
  }
}

trix-toolbar {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom: 0;
}

trix-editor {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

select {
  background-color: var(--base-bg-low);
  border: 1px solid var(--base-border-tertiary);
  border-radius: 6px;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  font-size: 14px;
  line-height: 22px;
  padding: 6px 0px;
  width: 100%;

  &[disabled],
  &[read-only] {
    background-color: var(--bg-disabled);
    border: 1px solid var(--border-disabled);
    color: var(--base-text-tertiary);
    cursor: not-allowed;
  }

  &:focus,
  &:focus-visible {
    box-shadow: inset 0 0 0 1px var(--border-primary-hover);
    border: 1px solid var(--border-primary-hover);
  }
}

select:not([multiple]) {
  padding-left: 12px;
}

select[multiple] {
  background: var(--base-bg-low);
  border: 1px solid var(--base-border-tertiary);
  border-radius: 6px;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
  padding: 6px 0px;
  width: 100%;

  &::placeholder {
    color: var(--base-text-tertiary);
  }

  &:focus,
  &:focus-visible {
    box-shadow: inset 0 0 0 1px var(--border-primary-hover);
    border: 1px solid var(--border-primary-hover);
  }

  &.error {
    background: var(--bg-danger-secondary);
    box-shadow: inset 0 0 0 1px var(--border-danger);
    border: 1px solid var(--border-danger);
    color: var(--text-on-danger-secondary);

    &:focus,
    &:focus-visible {
      background: var(--base-bg-low);
    }
  }

  &[disabled],
  &[read-only] {
    background: var(--bg-disabled);
    border: 1px solid var(--border-disabled);
    color: var(--base-text-tertiary);
    cursor: not-allowed;
  }

  option {
    color: var(--text-on-secondary);
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    padding: 4px 12px;

    &[selected] {
      background: var(--bg-disabled-secondary);
    }
  }
}

label,
.label {
  color: var(--base-text-secondary);
  display: block;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  margin-bottom: 5px;
}

.form-hint {
  color: var(--base-text-secondary);
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  margin-top: 4px;

  &.error {
    color: var(--text-danger);
    display: flex;
    align-items: center;

    &::before {
      content: "";
      display: inline-block;
      width: 16px;
      height: 16px;
      background-color: var(--icon-on-danger-secondary);
      mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none"><path fill-rule="evenodd" clip-rule="evenodd" d="M6.70013 2.25C7.27749 1.25 8.72086 1.25 9.29821 2.25L14.4944 11.25C15.0717 12.25 14.35 13.5 13.1953 13.5H2.80302C1.64832 13.5 0.926631 12.25 1.50398 11.25L6.70013 2.25ZM7.99917 4C8.41338 4 8.74917 4.33579 8.74917 4.75V7.75C8.74917 8.16421 8.41338 8.5 7.99917 8.5C7.58496 8.5 7.24917 8.16421 7.24917 7.75V4.75C7.24917 4.33579 7.58496 4 7.99917 4ZM7.99917 12C8.55146 12 8.99917 11.5523 8.99917 11C8.99917 10.4477 8.55146 10 7.99917 10C7.44689 10 6.99917 10.4477 6.99917 11C6.99917 11.5523 7.44689 12 7.99917 12Z" fill="#DC2626"/></svg>');
      mask-size: contain;
      mask-repeat: no-repeat;
      mask-position: center;
    }
  }
}

.caret {
  pointer-events: none;
  position: absolute;
  top: 0px;
  bottom: 0px;
  right: 0px;
  display: flex;
  align-items: center;
  padding-left: 8px;
  padding-right: 8px;
  color: var(--text-on-secondary);
}

form.inline {
  .form-group,
  .file-input-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
  }

  .form-group .input {
    flex: 1 1 0%;
  }

  .form-group .label {
    width: 25%;
  }
}

/* Checkboxes, Radio Buttons, and Switches/Toggles */
.form-picker-group {
  display: flex;
  align-items: flex-start;
  gap: 8px;

  input[type="checkbox"],
  input[type='radio'] {
    margin-top: 4px;
  }

  label {
    display: block;
    margin-bottom: 0px;
    color: var(--base-text);
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
  }

  &:has(> .form-checkbox:disabled) label,
  &:has(> .form-checkbox:disabled) p,
  &:has(> [type="checkbox"]:disabled) label,
  &:has(> [type="checkbox"]:disabled) p,
  &:has(> .form-radio:disabled) label,
  &:has(> .form-radio:disabled) p,
  &:has(> [type="radio"]:disabled) label,
  &:has(> [type="radio"]:disabled) p {
    color: var(--base-text-disabled);
    cursor: not-allowed;
  }

  &.switch,
  &.toggle {
    &:has(> .form-checkbox:disabled) label,
    &:has(> [type="checkbox"]:disabled) label,
    &:has(> [type="radio"]:disabled) label {
      color: var(--base-text-disabled);
      cursor: not-allowed;
    }

    &:has(> .form-checkbox:disabled) label::before,
    &:has(> [type="checkbox"]:disabled) label::before,
    &:has(> [type="radio"]:disabled) label::before {
      background: var(--bg-disabled-secondary);
      cursor: not-allowed;
    }

    &:has(> .form-checkbox:disabled) label::after,
    &:has(> [type="checkbox"]:disabled) label::after,
    &:has(> [type="radio"]:disabled) label::after {
      background: var(--bg-disabled);
      cursor: not-allowed;
    }

    &:has(> .form-checkbox:disabled:checked) label::before,
    &:has(> [type="checkbox"]:disabled:checked) label::before,
    &:has(> [type="radio"]:disabled:checked) label::before {
      background: var(--bg-disabled-selected);
      cursor: not-allowed;
    }
  }
}

.switch,
.toggle {
  position: relative;

  input[type="checkbox"],
  input[type="radio"] {
    position: absolute;
    top: 2;
    left: 0;
    opacity: 0;

    &:checked {
      + label,
      + div label {
        &::before {
          background: var(--bg-primary);
        }

        &::after {
          transform: translateX(26px);
        }
      }
    }
  }

  label {
    position: relative;
    padding-left: 64px;

    &:hover {
      cursor: pointer;
    }

    &:focus::before,
    &:focus-visible::before {
      outline: 2px solid var(--base-border-focus);
      outline-offset: 2px;
    }

    &::before {
      background: var(--base-bg-highest);
      position: absolute;
      top: 0;
      left: 0;
      height: 24px;
      width: 50px;
      content: "";
      border-radius: 24px;
      transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
      transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
      transition-duration: 200ms;
    }

    &::after {
      position: absolute;
      top: 2px;
      left: 2px;
      width: 20px;
      height: 20px;
      box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
      background: var(--base-bg-low);
      border-radius: 9999px;
      content: "";
      transition-property: transform;
      transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
      transition-duration: 200ms;
    }
  }

  p {
    position: relative;
    padding-left: 64px;
  }
}

.switch-right,
.toggle-right {
  position: relative;

  input[type="checkbox"],
  input[type="radio"] {
    position: absolute;
    top: 2px;
    left: 120px;
    opacity: 0;
  }

  &:has( .form-checkbox:checked) label,
  &:has( [type="checkbox"]:checked) label,
  &:has( [type="radio"]:checked) label {
    &::before {
      background: var(--bg-primary);
    }

    &::after {
      transform: translateX(26px);
    }
  }

  label {
    position: relative;
    padding-right: 64px;

    &:hover {
      cursor: pointer;
    }

    &:focus::before,
    &:focus-visible::before {
      outline: 2px solid var(--base-border-focus);
      outline-offset: 2px;
    }

    &::before {
      background: var(--base-bg-highest);
      position: absolute;
      top: 0;
      right: 0;
      height: 24px;
      width: 50px;
      content: "";
      border-radius: 24px;
      transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
      transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
      transition-duration: 200ms;
    }

    &::after {
      position: absolute;
      top: 2px;
      right: 28px;
      width: 20px;
      height: 20px;
      box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
      background: var(--base-bg-low);
      border-radius: 9999px;
      content: "";
      transition-property: transform;
      transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
      transition-duration: 200ms;
    }
  }

  p {
    position: relative;
    padding-right: 64px;
  }
}

.form-checkbox,
[type="checkbox"],
.form-radio,
[type='radio'] {
  background-color: var(--base-bg-base);
  border: 1px solid var(--base-border-secondary);
  cursor: pointer;
  margin-bottom: 0;

  &:focus,
  &:focus-visible {
    outline: 2px solid var(--base-border-focus);
    outline-offset: 2px;
  }

  &:checked {
    background-color: var(--bg-primary);
  }

  &:not(:checked):hover {
    border: 2px solid var(--border-primary);
  }

  &:disabled {
    border: 1px solid var(--border-disabled);
    background-color: var(--bg-disabled-selected);
    cursor: not-allowed;

    &:checked,
    &:checked:hover {
      border: 4px solid var(--bg-disabled-selected);
    }

    &:hover {
      border: 1px solid var(--border-disabled);
    }
  }
}

.form-checkbox,
[type="checkbox"] {
  border-radius: 4px;
}

/*File Inputs*/
.file-input-group {
  p.label {
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    color: var(--base-text-secondary);

    span {
      font-size: 14px;
      font-weight: 400;
      line-height: 21px;
      color: var(--icon-on-danger-secondary);
    }
  }

  &:has(> [type="file"]:required) p.label::after {
    content: "*";
    color: var(--icon-on-danger-secondary);
    margin-left: -2px;
  }

  &:has(> [type="file"]:disabled) label,
  &:has(> [type="file"]:disabled) p {
    opacity: 0.6;
    cursor: not-allowed;
  }

  input[type="file"] {
    cursor: pointer;
    opacity: 0;
    display: inline-block;
    overflow: hidden;
    position: absolute;
    width: 1px;
    height: auto;
  }

  label {
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    line-height: 20px;
    transition: ease 0.3s background, ease 0.3s transform, ease 0.2s color;
  }
}

.input-file {
  cursor: pointer;
  opacity: 0;
  display: inline-block;
  overflow: hidden;
  position: absolute;
  width: 1px;
  height: auto;

  + label {
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    line-height: 20px;
    transition: ease 0.3s background, ease 0.3s transform, ease 0.2s color;
  }
}

/* Hotwire Combobox */
:root {
  --hw-active-bg-color: #F3F4F6;
  --hw-border-color: #D1D5DB;
  --hw-component-bg-color: #FFFFFF;
  --hw-group-color: #57595C;
  --hw-group-bg-color: #FFFFFF;
  --hw-invalid-color: #EF4444;
  --hw-dialog-label-color: #1D1D1D;
  --hw-focus-color: #2563EB;
  --hw-option-bg-color: #FFFFFF;

  --hw-border-radius: 0.375rem;
  --hw-border-width--slim: 1px;
  --hw-border-width--thick: 2px;

  --hw-combobox-width: 10rem;
  --hw-combobox-width--multiple: 30rem;

  --hw-dialog-font-size: 1.25rem;
  --hw-dialog-input-height: 2.5rem;
  --hw-dialog-label-alignment: center;
  --hw-dialog-label-padding: 0.5rem 0 0.375rem;
  --hw-dialog-label-size: 1.05rem;
  --hw-dialog-listbox-margin: 1.25rem 0 0;
  --hw-dialog-padding: 1rem 1rem 0;
  --hw-dialog-top-offset: 18vh;

  --hw-font-size: 1rem;

  --hw-handle-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3E%3C/svg%3E");
  --hw-handle-image--queried: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24'%3E%3Cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M6 18 18 6M6 6l12 12'/%3E%3C/svg%3E");
  --hw-handle-offset-right: 0.375rem;
  --hw-handle-width: 1.5rem;
  --hw-handle-width--queried: 1rem;

  --hw-line-height: 1.5rem;
  --hw-line-height--multiple: 2.125rem;

  --hw-listbox-height: calc(var(--hw-line-height) * 10);
  --hw-listbox-z-index: 10;

  --hw-padding--slimmer: 0.25rem;
  --hw-padding--slim: 0.375rem;
  --hw-padding--thick: 0.75rem;

  --hw-selection-chip-font-size: 0.875rem;

  --hw-visual-viewport-height: 100vh;
}

.dark {
  --hw-component-bg-color: var(--base-bg-low);
  --hw-border-color: var(--base-border-tertiary);
  --hw-option-bg-color: var(--base-bg-low);
  --hw-active-bg-color: var(--bg-primary);
}

.hw-combobox {
  border-width: 0;
  display: inline-flex;
  flex-direction: column;
  font-size: var(--hw-font-size);
  gap: var(--hw-padding--slim);
  margin: 0;
  padding: 0;
  position: relative;

  &, * {
    box-sizing: border-box;
  }
}

.hw-combobox__main__wrapper {
  background-color: var(--hw-component-bg-color);
  border: var(--hw-border-width--slim) solid var(--hw-border-color);
  border-radius: var(--hw-border-radius);
  padding: var(--hw-padding--slim) calc(var(--hw-handle-width) + var(--hw-padding--slimmer)) var(--hw-padding--slim) var(--hw-padding--thick);
  position: relative;
  /* width: var(--hw-combobox-width); */

  &:focus-within {
    box-shadow: 0 0 0 var(--hw-border-width--thick) var(--hw-focus-color);
  }

  &:has(.hw-combobox__input--invalid) {
    box-shadow: 0 0 0 var(--hw-border-width--thick) var(--hw-invalid-color);
  }
}

.hw-combobox__input {
  border: none;
  background-color: var(--hw-component-bg-color);
  font-size: inherit;
  line-height: var(--hw-line-height);
  min-width: 0;
  padding: 0;
  text-overflow: ellipsis;
  width: 100%;
}

.hw-combobox__input:focus,
.hw-combobox__input:focus-visible,
.hw-combobox__input:focus-within {
  box-shadow: none;
  outline: none;
}

.hw-combobox__handle {
  height: 100%;
  position: absolute;
  right: var(--hw-handle-offset-right);
  top: 0;
  width: var(--hw-handle-width);
}

.hw-combobox__handle::before {
  background-image: var(--hw-handle-image);
  background-position: center;
  background-repeat: no-repeat;
  background-size: var(--hw-handle-width);
  bottom: 0;
  content: '';
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.hw-combobox__input[data-queried] + .hw-combobox__handle::before {
  background-image: var(--hw-handle-image--queried);
  background-size: var(--hw-handle-width--queried);
}

.hw-combobox__listbox {
  border-color: transparent;
  border-radius: var(--hw-border-radius);
  border-style: solid;
  border-width: var(--hw-border-width--slim);
  left: 0;
  line-height: var(--hw-line-height);
  list-style: none;
  margin: 0;
  max-height: var(--hw-listbox-height);
  overflow: auto;
  padding: 0;
  position: absolute;
  top: calc(100% + 0.2rem);
  width: 100%;
  z-index: var(--hw-listbox-z-index);

  &:has([role="option"]:not([hidden])) {
    border-color: var(--hw-border-color);
  }
}

.hw-combobox__group {
  display: none;
  padding: 0;
}

.hw-combobox__group__label {
  background-color: var(--hw-group-bg-color);
  color: var(--hw-group-color);
  padding: var(--hw-padding--slim);
}

.hw-combobox__group:has(.hw-combobox__option:not([hidden])) {
  display: block;
}

.hw-combobox__option {
  background-color: var(--hw-option-bg-color);
  padding: var(--hw-padding--slim) var(--hw-padding--thick);
  user-select: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hw-combobox__option--blank {
  border-bottom: var(--hw-border-width--slim) solid var(--hw-border-color);
}

.hw-combobox__option:hover,
.hw-combobox__option--navigated,
.hw-combobox__option--selected {
  background-color: var(--hw-active-bg-color);
}

.hw-combobox__dialog__wrapper {
  display: none;
  height: 100vh;
  inset-inline-start: 0;
  pointer-events: none;
  position: fixed;
  top: 0;
  width: 100%;

  &:has([open]) {
    display: flex;
  }
}

.hw-combobox__dialog {
  border: 0;
  font-size: var(--hw-dialog-font-size);
  height: auto;
  margin: 0;
  max-height: calc(var(--hw-visual-viewport-height) - var(--hw-dialog-top-offset));
  max-width: none;
  overflow: hidden;
  padding: var(--hw-dialog-padding);
  pointer-events: auto;
  position: fixed;
  top: var(--hw-dialog-top-offset);
  width: auto;

  &[open] {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }

  &::backdrop {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 50%, white 50%);
  }

  .hw-combobox--ios & {
    position: absolute;
  }
}

.hw-combobox__dialog__label {
  align-self: var(--hw-dialog-label-alignment);
  color: var(--hw-dialog-label-color);
  font-size: var(--hw-dialog-label-size);
  padding: var(--hw-dialog-label-padding);
}

.hw-combobox__dialog__input {
  border: var(--hw-border-width--slim) solid var(--hw-border-color);
  border-radius: var(--hw-border-radius);
  font-size: inherit;
  height: var(--hw-dialog-input-height);
  line-height: var(--hw-dialog-input-height);
  padding: var(--hw-padding--slim) var(--hw-padding--thick);
  text-overflow: ellipsis;
  width: 90%;
}

.hw-combobox__dialog__listbox {
  margin: var(--hw-dialog-listbox-margin);
  overflow: auto;
  padding: 0;
  width: 100%;

  [role="option"] {
    border-radius: var(--hw-border-radius);
    padding: var(--hw-padding--thick);
  }
}

.hw-combobox__chip {
  align-items: center;
  border: var(--hw-border-width--slim) solid var(--hw-border-color);
  border-radius: var(--hw-border-radius);
  display: flex;
  font-size: var(--hw-selection-chip-font-size);
  line-height: var(--hw-line-height);
  padding: var(--hw-padding--slimmer);
  padding-left: var(--hw-padding--slim);
}

.hw-combobox__chip__remover {
  background-image: var(--hw-handle-image--queried);
  background-size: var(--hw-handle-width--queried);
  background-repeat: no-repeat;
  margin-left: var(--hw-padding--slimmer);
  min-height: var(--hw-handle-width--queried);
  min-width: var(--hw-handle-width--queried);
}

.hw-combobox--multiple {
  .hw-combobox__main__wrapper {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: var(--hw-padding--slimmer);
    /* width: var(--hw-combobox-width--multiple); */

    &:has([data-hw-combobox-chip]) .hw-combobox__input::placeholder {
      color: transparent;
    }
  }

  .hw-combobox__input {
    min-width: calc(var(--hw-combobox-width) / 2);
    flex-grow: 1;
    line-height: var(--hw-line-height--multiple);
    max-width: 100%;
    width: 1rem;
  }
}

.hw_combobox__pagination__wrapper {
  background-color: var(--hw-option-bg-color);

  &:only-child {
    background-color: transparent;
  }
}

/* Component: hotwire_native.css */
/* bridge--form component */
[data-bridge-components~="form"]
[data-controller~="bridge--form"]
[type="submit"] {
  display: none;
}

/* Component: iframe.css */
/* A couple handy classes for responsive YouTube and other iframe embeds */
.embed-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}
.embed-container iframe, .embed-container object, .embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

[data-controller="stripe--embedded-checkout"] iframe {
  border-radius: 0.5rem;
}

/* Component: modal.css */
/* Prevent scrolling while dialog is open */
body:has(dialog[open]) {
  filter: blur(4px);
  overflow: hidden;
}

/* Slideover animations */
dialog.slideover[open] {
  animation: slide-in-from-right 200ms forwards ease-in-out;
}

dialog.slideover[closing] {
  pointer-events: none;
  animation: slide-out-to-right 200ms forwards ease-in-out;
}

dialog.modal {
  border-radius: 8px;
  margin: auto;
  max-height: 100vh;
  width: 100%;

  &[open] {
    animation: fadeIn 200ms forwards;
  }

  &[closing] {
    animation: fadeOut 200ms forwards;
  }

  &.modal::backdrop {
    background: var(--base-bg-backdrop);
    opacity: 0.5;
  }

  &.modal-sm {
    max-width: 384px;
  }

  &.modal-md {
    max-width: 448px;
  }

  &.modal-lg {
    max-width: 512px;
  }

  &.modal-full {
    border-radius: 0px;
    max-height: 100%;
    height: 100%;
    max-width: 100%;
    margin: 0px;
  }

  .modal-card {
    position: relative;
    padding: 24px;
    background: var(--base-bg-low);

    &.full {
      width: 100%;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;

      div:first-of-type {
        align-items: flex-start;
        justify-content: center;
        display: flex;
        flex-direction: column;
        width: 66.666667%;
        margin-left: auto;
        margin-right: auto;
      }

      div:last-child {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        flex-wrap: wrap;
        margin-top: 16px;
        margin-left: auto;
        margin-right: auto;
        gap: 8px;
        width: 66.666667%;
      }
    }


    button[type="button"] {
      position: absolute;
      right: 16px;
      top: 16px;
      border-radius: 8px;
      color: var(--base-icon);
      outline: 2px solid transparent;
      outline-offset: 2px;

      &:hover {
        cursor: pointer;
        color: var(--base-text-secondary);
      }

      &:disabled {
        pointer-events: none;
      }
    }

    .modal-title {
      font-size: 18px;
      line-height: 28px;
      margin-bottom: 8px;
      font-weight: 700;
      color: var(--base-text);
    }

    .modal-body {
      font-size: 14px;
      font-weight: 400;
      line-height: 20px;
      margin-bottom: 8px;
      color: var(--base-text);
    }

    .modal-actions {
      display: flex;
      justify-content: flex-end;
      align-items: center;
      flex-wrap: wrap;
      margin-top: 16px;
      gap: 8px;
    }
  }
}

/* Component: nav.css */
/* Menu component */
nav.menu-component {
  max-width: 275px;
  background-color: var(--base-bg-low);
  border: 1px solid var(--base-border-tertiary);
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  font-family: Arial, sans-serif;
  z-index: 20;

  &.notifications {
    width: 256px;
    max-width: 375px;

    @media (min-width:640px) {
      width: 384px;
    }
  }

  /* Main list */
  > ul.menu-list {
    list-style-type: none;
    margin: 0px;
    padding: 0px;

    > li.menu-section {
      margin: 0;
      padding: 8px 0px;

      &:not(:last-child) {
        border-bottom: 1px solid var(--base-border-tertiary);
      }

      /* Section headers */
      > h2.menu-section-heading {
        font-size: 14px;
        color: var(--base-text-tertiary);
        padding: 12px 24px 4px 24px;
        font-weight: 600;
        line-height: 20px;
        margin: 0px;
        text-transform: uppercase;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;

        &:has(> a) {
          padding: 0px;
        }

        > a {
          color: var(--base-text-tertiary);
          display: block;
          padding: 12px 24px;
          overflow: hidden;
          text-overflow: ellipsis;
          width: 100%;

          &:hover {
            color: var(--base-text-secondary);
          }
        }
      }

      &:has(> h2.menu-section-heading > a):hover {
        background-color: var(--base-bg-high);
      }

      > ul.menu-sub-list {
        list-style-type: none;
        margin: 0px;
        padding: 0px;

        li {
          padding: 0px 0px;

          a,
          form button {
            align-items: center;
            color: var(--base-text);
            display: block;
            font-size: 14px;
            font-weight: 400;
            gap: 8px;
            line-height: 24px;
            overflow: hidden;
            padding: 6px 24px;
            text-decoration: none;
            text-overflow: ellipsis;
            white-space: nowrap;

            &:has(*) {
              display: flex;
            }

            &:hover {
              background-color: var(--base-bg-high);
              color: var(--base-text-secondary);
            }

            >span {
              overflow: hidden;
              text-overflow: ellipsis;
              white-space: nowrap;
              max-width: 90%;
            }

            svg {
              color: var(--base-icon);
              height: 20px;
              width: 20px;
            }

            * + svg {
              margin-left: auto;
            }
          }
        }
      }
    }
  }
}

/*Sidebar Component*/
.sidebar {
  width: 350px;
  background-color: var(--base-bg-low);
  padding-top: 16px;

  .btn-container {
    padding: 0px 16px;
  }

  nav {
    padding: 16px 0px;
  }

  h2 {
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    margin-top: 0;
    color: var(--base-text-tertiary);
    padding: 0px 16px 12px 24px;
  }

  ul {
    list-style-type: none;
    padding: 0;
    margin: 0;

    > * + * {
      margin-top: 4px;
    }
  }

  nav:not(:first-of-type) {
    border-top: 1px solid var(--base-border-tertiary);
  }

  li {
    padding: 12px 16px 12px 24px;

    &:hover {
      background: var(--base-bg-hover);
    }

    &:has(a.active) {
      background: var(--base-bg-hover);
      position: relative;

      &::before {
        background-color: var(--border-primary);
        bottom: 0;
        content: "";
        width: 4px;
        left: 0;
        position: absolute;
        height: 100%;
      }
    }
  }

  a {
    text-decoration: none;
    color: var(--base-text);
    display: flex;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    align-items: center;

    &:hover {
      color: var(--base-text-secondary);
    }

    &.active {
      color: var(--text-primary);

      .icon {
        color: var(--text-primary);
      }
    }
  }

  .icon {
    margin-right: 8px;
    display: flex;
    align-items: center;
    color: var(--base-icon);

    &:hover {
      color: var(--base-icon);
    }

    svg {
      width: 20px;
      height: 20px;
    }
  }

  .cta-btn {
    display: block;
    width: 100%;
    padding: 8px 12px;
    background-color: var(--bg-primary);
    color: var(--text-on-primary);
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    text-align: center;
    border: none;
    border-radius: 6px;
    cursor: pointer;
  }
}

/* Sidebar "container" variant */
.sidebar-container {
  border: 1px solid var(--base-border-tertiary);
  border-radius: 4px;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
}

/*Vertical Navigation Component*/
.vertical-nav {
  max-width: 270px;
  border-right: 1px solid var(--base-border-tertiary);
  background: var(--base-bg-low);
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
  height: 100%;

  .logo {
    padding: 32px 24px 16px;
    display: block;
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;

    svg {
      color: var(--base-text);
    }
  }
}


.vertical-nav .user-profile {
  display: flex;
  align-items: center;
  padding: 12px 24px;
  cursor: pointer;
  position: relative;

  .user-info {
    border: 1px solid var(--base-bg-low);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 4px 8px;

    &:hover {
      border: 1px solid var(--base-border-tertiary);
      background: var(--base-bg-hover);
    }

    > div {
      display: flex;
      align-items: center;
    }

    svg {
      width: 20px;
      height: 20px;
      justify-self: end;
    }

    .avatar {
      width: 24px;
      height: 24px;
      border-radius: 50%;
      margin-right: 8px;
    }

    .user-name {
      color: var(--base-text);
      flex: 1;
      font-size: 14px;
      font-weight: 400;
      line-height: 20px;
    }

    .user-email {
      color: var(--base-text-tertiary);
      font-size: 12px;
      font-weight: 400;
      line-height: 16px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      width: 140px;
    }
  }

  .profile-popup {
    border: 1px solid var(--base-border-tertiary);
    position: absolute;
    left: 40px;
    top: 50px;
    z-index: 1000;
  }
}

.vertical-nav .search-container {
  padding: 16px 24px;
  margin: 0px;
}

.vertical-nav .nav-section {
  padding: 32px 0px 24px 0px;

  &:first-of-type {
    padding: 16px 0px 24px 0px;
  }

  &:not(:last-child) {
    border-bottom: 1px solid var(--base-border-tertiary);
  }

  .section-header {
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    color: var(--base-text-tertiary);
    padding: 0px 16px 12px 24px;
  }

  .nav-list {
    list-style: none;
    padding: 0;
    margin: 0;

    li {
      display: flex;
      align-items: center;
      width: 100%;
      min-width: 0;

      svg {
        margin-left: 24px;
        margin-right: 8px;
        width: 24px;
        height: 24px;
        color: var(--base-icon);
      }

      &:has(a.active) {
        background: var(--base-bg-hover);
        position: relative;

        &::before {
          background-color: var(--border-primary);
          bottom: 0;
          content: "";
          width: 4px;
          left: 0;
          position: absolute;
          height: 100%;
        }
      }
    }
  }
}

.vertical-nav .nav-item {
  display: flex;
  align-items: center;
  padding: 12px 24px 12px 0px;
  color: var(--base-text);
  text-decoration: none;
  width: 100%;
  min-width: 0;

  &:hover {
    background: var(--base-bg-hover);
  }

  span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
    flex: 1;
  }
}

.left-nav__sub-nav {

  > button {
    color: var(--base-text);
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 12px 24px;

    &:hover {
      background: var(--base-bg-hover);
    }

    > div {
      display: flex;
      align-items: center;

      svg {
        color: var(--base-icon);
        width: 24px;
        height: 24px;
        margin-right: 8px;
      }
    }

    &:focus {
      > svg {
        transform: rotate(180deg);
      }
    }

    > svg {
      height: 20px;
      width: 20px;
      margin-left: 4px;
    }
  }

  .left-nav__sub-nav-dropdown {
    background: var(--base-bg-base);

    ul {
      list-style: none;
      width: 100%;

      a.nav-item {
        display: block;
        padding: 12px 24px 12px 56px;
        color: var(--base-text);
        font-size: 16px;
        font-weight: 400;
        line-height: 24px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;

        &.active {
          color: var(--text-primary);
          font-weight: 600;
        }
      }
    }
  }
}

/* Component: notifications.css */
[data-notifications-target="notification"] .unread {
  display: none;
  flex-shrink: 0;

  &::after {
    content: "";
    display: inline-block;
    width: 0.5rem;
    height: 0.5rem;
    background: var(--bg-primary);
    border-radius: 9999px;
  }
}

/* Highlights unseen notifications with background color */
[data-notifications-target="notification"]:not([data-seen-at]) {
  background-color: var(--color-gray-100);
}

.dark [data-notifications-target="notification"]:not([data-seen-at]) {
  background: var(--color-gray-800);
}

/* Highlights unread notifications with blue dot */
[data-notifications-target="notification"]:not([data-read-at]) {
  .unread {
    display: block;
  }
}

/* Component: pagination.css */
nav.pagy.nav {
  display: inline-flex;
  align-items: center;
  justify-content: start;

  a:first-child {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
  }

  a:last-child {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
  }

  a {
    background: var(--base-bg-lowest);
    border: 1px solid var(--base-border-tertiary);
    color: var(--text-primary);
    padding: 8px 12px;
    position: relative;
    display: block;
    font-variant-numeric: tabular-nums;
    margin-left: -1px;

    &:hover {
      background: var(--base-bg-hover);
      color: var(--text-primary-hover);
    }

    &[aria-current="page"].current {
      background: var(--bg-primary);
      border: 1px solid var(--bg-primary);
      color: var(--text-on-primary);
      margin-left: -1px;
    }

    &:not([href]) {
      background: var(--base-bg-lowest);
      color: var(--base-text-tertiary);
      margin-left: -1px;
    }
  }
}

/* Component: pills.css */
.pill {
  border-radius: 9999px;
  padding: 4px 16px;
  font-size: 12px;
  font-weight: 700;
  font-style: normal;
  line-height: 16px;
  text-transform: uppercase;
  background: var(--base-bg-highest);
  color: var(--base-text-secondary);
  display: inline-flex;
  gap: 8px;
  align-items: flex-start;
}

.pill-outline {
  background: transparent;
  border: 1px solid var(--base-border-secondary);
  color: var(--base-text-secondary);
}

.pill-primary {
  background: var(--bg-primary-hover);
  color: var(--text-on-primary);

  &.pill-outline {
    background: transparent;
    border: 1px solid var(--border-primary-hover);
    color: var(--text-primary-hover);
  }
}

.pill-secondary {
  background: var(--bg-success-hover);
  color: var(--text-on-success);

  &.pill-outline {
    background: transparent;
    border: 1px solid var(--border-success-focus);
    color: var(--border-success-focus);
  }
}

.pill-tertiary {
  background: var(--bg-dark-secondary);
  color: var(--text-on-dark);

  &.pill-outline {
    background: transparent;
    border: 1px solid var(--base-text-tertiary);
    color: var(--base-text-tertiary);
  }
}

.pill-accent {
  background: var(--bg-accent);
  color: var(--text-on-accent);

  &.pill-outline {
    background: transparent;
    border: 1px solid var(--border-accent);
    color: var(--text-accent);
  }
}

/* Component: tabs.css */
.tab-nav {
  display: none;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--base-border-tertiary);

  @media (min-width: 640px) {
    display: flex;
  }

  > * + * {
    margin-left: 32px;
  }

  a[data-tabs-target="tab"]{
    display: inline-flex;
    padding-bottom: 16px;
    justify-content: center;
    align-items: center;
    white-space: nowrap;
    padding: 16px 4px;
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    border-color: transparent;
    color: var(--base-text-tertiary);
    font-style: normal;

    &:hover {
      color: var(--base-text-secondary);
      border-bottom: 2px solid var(--base-border-tertiary);
    }

    &:focus-visible,
    &:focus {
      border-radius: 8px;
      border: 2px solid var(--base-border-focus);
      color: var(--base-text-secondary);
    }

    &[data-active="true"]{
      border-bottom: 2px solid var(--border-primary-hover);
      color: var(--text-primary);
      
      &:hover {
        color: var(--text-primary-hover);
        border-bottom: 2px solid var(--border-primary-hover);
      }

      &:focus-visible,
      &:focus {
        border-radius: 8px;
        border: 2px solid var(--border-primary-hover);
        color: var(--text-primary);
      }
    }
  }
}
/* Component: toasts.css */
.toast {
  background: var(--base-bg-low);
  border-radius: 4px;
  box-shadow:
    0px 10px 15px -3px rgba(0, 0, 0, 0.1),
    0px 4px 6px -4px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-between;
  padding: 16px;
  width: 100%;
  max-width: 384px;

  section:has(> header > svg) p {
    margin-left: 28px;
  }

  section header {
    align-items: center;
    display: flex;
    flex-grow: 1;
    gap: 8px;

    h2 {
      color: var(--base-text);
      font-size: 14px;
      font-weight: 600;
      line-height: 20px;
    }
  }

  p {
    color: var(--base-text-secondary);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
  }

  div {
    align-items: flex-start;
    display: flex;
    gap: 16px;

    a {
      color: var(--text-primary);
      font-size: 14px;
      font-weight: 600;
      line-height: 20px;

      &:hover {
        color: var(--text-primary-hover);
      }
    }

    button {
      svg path {
        fill: var(--base-icon);
      }

      &:hover {
        svg path {
          fill: var(--base-text-secondary);
        }
      }
    }
  }
}

#toasts {
  align-items: flex-end;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: fixed;
  right: 16px;
  top: 48px;
  z-index: 30;
  width: 100%;
  max-width: 384px;

  > * + * {
    margin-top: 16px;
  }
}

@media (max-width:640px) {
  #toasts {
    left: 50%;
    transform: translateX(-50%);
  }
}

/* Component: tooltips.css */
.tooltip {
  display: none;
  width: max-content;
  max-width: 50vw; /* This is to prevent the tooltip from being too wide on mobile */
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;

  background-color: var(--base-bg-tooltip);
  font-size: 0.75rem;
  line-height: 1rem;
  color: var(--base-text-on-tooltip);
  border-radius: 4px;
  padding: 8px;
  box-shadow: 0px 4px 6px -1px rgba(16, 24, 40, 0.10), 0px 2px 4px -2px rgba(16, 24, 40, 0.10);

  &.open {
    display: block;
  }

  .arrow {
    position: absolute;
    background-color: var(--base-bg-tooltip);
    width: 8px;
    height: 8px;
    transform: rotate(45deg);
    z-index: -1;
    pointer-events: none;
  }
}

/* Component: top_nav.css */
.top-nav {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
  border-bottom: 2px solid rgba(139, 69, 19, 0.1);
  box-shadow: 0px 2px 8px 0px rgba(139, 69, 19, 0.08);
  display: flex;
  justify-content: space-between;
  padding: 16px;
  position: relative;
  backdrop-filter: blur(10px);

  &.fixed {
    position: fixed;
  }

  &.native {
    padding: 0;
    top: 0;
    left: 0;
    right: 0;
    border-style: none;
    z-index: 10;
  }

  @media (min-width: 1024px) {
    padding: 0px 32px;
  }

  .logo {
    align-items: center;
    display: flex;

    @media (min-width: 1024px) {
      padding: 16px 0px;
    }

    a {
      align-items: center;
      color: var(--logo-primary);
      display: flex;

      image,
      svg {
        height: 24px;
      }
    }
  }

  &:not(:has(> .nav-container > nav a)) #sidebar-open {
    display: none;
  }
}

.nav-container {
  display: flex !important;
  background: var(--base-bg-low);
  box-shadow: 0px 4px 6px -1px rgba(16, 24, 40, 0.10), 0px 2px 4px -2px rgba(16, 24, 40, 0.10);
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 10;

  @media (min-width: 1024px) {
    display: flex !important;
    align-items: center;
    box-shadow: none;
    flex: 1;
    justify-content: space-between;
    margin: 0px 8px 0px 40px;
    padding: 0px;
    position: static;
    background: transparent;
  }

  >nav {
    align-items: start;
    display: flex;
    flex-direction: column;
    gap: 0;
    height: 100%;

    @media (min-width: 1024px) {
      align-items: center;
      flex-direction: row;
      gap: 16px;
    }

    .btn-container {
      display: flex;
      flex-direction: column;
      gap: 12px;
      padding: 12px 16px;
      width: 100%;

      @media (min-width: 1024px) {
        flex-direction: row;
        padding: 0px;
      }
    }
  }
}

section nav form {
  width: 100%;

  button {
    text-align: start;
  }
}

/* Menu item styles - more specific to override generic nav styles */
section nav a.nav-menu-item,
.nav-container a.nav-menu-item {
  color: #333333 !important;
  padding: 8px 16px !important;
  text-decoration: none !important;
  display: inline-block !important;
  border-radius: 6px !important;
  background: #f5f5f5 !important;
  margin: 0 4px !important;
  font-weight: 500 !important;
  width: auto !important;
  font-size: 14px !important;
  
  &:hover {
    background: #8b4513 !important;
    color: white !important;
    text-decoration: none !important;
  }
  
  &.active {
    background: #8b4513 !important;
    color: white !important;
  }
}

section nav a:not(.nav-menu-item),
section nav form button {
  color: var(--base-text);
  font-size: 14px;
  padding: 12px 16px;
  text-wrap: nowrap;
  width: 100%;
  text-decoration: none;

  @media (min-width: 1024px) {
    align-items: center;
    color: var(--base-text);
    display: flex;
    height: 100%;
    padding: 8px 4px;
  }

  &:hover {
    color: var(--base-text-secondary);
    text-decoration: none;
  }

  /* Active state for non-menu-item nav links */
  &.active:not(.nav-menu-item) {
    background: var(--base-bg-hover);
    box-shadow: inset 4px 0 0 0 var(--border-primary);
    color: var(--text-primary);
    font-weight: 600;
    padding: 8px;

    @media (min-width: 1024px) {
      background: transparent;
      box-shadow: inset 0 -4px 0 0 var(--border-primary);
    }
  }
}

.top-nav__sub-nav {
  width: 100%;

  >button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 12px 16px;

    @media (min-width: 1024px) {
      border-radius: 4px;
      color: var(--base-text-secondary);
      font-size: 16px;
      font-weight: 400;
      line-height: 24px;
      padding: 8px;

      &:hover {
        background: var(--base-bg-hover);
      }
    }

    &:focus {
      @media (min-width: 1024px) {
        background: var(--base-bg-hover);
        outline: 2px solid transparent;
        outline-offset: 2px;
      }

      >svg {
        transform: rotate(180deg);
      }
    }

    >svg {
      height: 20px;
      width: 20px;
      margin-left: 4px;
    }
  }
}

.top-nav__sub-nav-dropdown {
  @media (min-width: 1024px) {
    box-shadow: 0px 4px 6px -1px rgba(16, 24, 40, 0.10), 0px 2px 4px -2px rgba(16, 24, 40, 0.10);
    margin-top: 12px;
    position: absolute;
    top: 100%;
    right: 0;
    transform-origin: top right;
    width: 100%;
    z-index: 50;
  }

  .top-nav__sub-nav-dropdown-card {
    background: var(--base-bg-low);

    @media (min-width: 1024px) {
      display: flex;
    }

    section {
      width: 100%;
      padding: 8px 16px 8px 24px;

      @media (min-width: 1024px) {
        width: 50%;

        &:first-of-type {
          padding: 32px 32px 32px 48px;
        }

        &:last-of-type {
          padding: 32px 48px 32px 32px;
        }

        >*+* {
          margin-top: 4px;
        }
      }

      >h6 {
        text-transform: capitalize;
        color: var(--base-text-secondary);
        font-size: 14px;
        font-weight: 600;
        line-height: 20px;
        margin-bottom: 4px;

        @media (min-width: 1024px) {
          margin-bottom: 16px;
        }
      }

      >h6:not(:first-child) {
        margin-top: 16px;
      }

      a {
        display: flex;
        align-items: center;
        padding: 12px 12px 12px 0px;

        @media (min-width: 1024px) {
          align-items: start;
          padding: 12px;

          &:hover {
            background: var(--base-bg-highest);
          }
        }

        img,
        svg {
          border-radius: 4px;
          color: var(--base-icon);
          height: 32px;
          width: 32px;
          flex-shrink: 0;

          @media (min-width: 1024px) {
            padding: 6px;
          }
        }

        >div {
          margin-left: 16px;

          h6 {
            color: var(--base-text);
            font-size: 16px;
            font-weight: 400;
            line-height: 24px;

            @media (min-width: 1024px) {
              font-weight: 600;
            }
          }

          p {
            display: none;

            @media (min-width: 1024px) {
              display: block;
              color: var(--base-text-secondary);
              font-size: 14px;
              font-weight: 400;
              line-height: 20px;
              text-wrap: wrap;
            }
          }
        }
      }
    }
  }
}

/* By default dropdowns are right edge aligned, to align dropdowns to the left add the .left-align class in addition to the .dropdown-menu element */
.dropdown-menu {
  display: flex;
  align-items: center;
  position: relative;

  .menu-component {
    position: absolute;
    top: 100%;
    right: 0;
  }

  &.left-align {
    .menu-component {
      left: 0;
      right: unset;
    }
  }

  @media (min-width: 1024px) {
    >button {

      border-radius: 4px;
      padding: 8px;

      &:hover {
        background: var(--base-bg-hover);
      }

      &:focus {
        background: var(--base-bg-hover);
        outline: 2px solid transparent;
        outline-offset: 2px;

        svg.caret {
          transform: rotate(180deg);
        }
      }
    }
  }

  &:has([aria-label="Dev Menu"]) {
    display: none;

    @media (min-width: 1024px) {
      display: flex;
    }
  }

  button {
    &:has(span) {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    img {
      border-radius: 50%;
      width: 24px;
      max-width: none;
      height: 24px;
      border: 1px solid var(--base-border-tertiary);
      object-fit: cover;
    }

    svg {
      color: var(--base-icon);
      display: block;
      height: 24px;
    }
  }
}

button[aria-label="Notifications"] svg {
  color: var(--base-icon);
}

.nav-user-controls {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;

  @media (min-width: 1024px) {
    gap: 8px;
  }

  button {
    color: var(--base-icon);
  }
}

@media (min-width: 1024px) {
  #sidebar-open {
    display: none;
  }
}

.minimal-top-nav {
  background: var(--base-bg-low);
  padding: 16px;
  border-bottom: 1px solid var(--base-border-tertiary);
  background: var(--base-bg-low);
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);

  @media (min-width: 1024px) {
    padding: 0px 32px;
  }

  a {
    display: flex;
    align-items: center;

    @media (min-width: 1024px) {
      padding: 16px 0px;
    }

    svg {
      color: var(--base-text);
      display: flex;
      align-items: center;
    }
  }
}

.account-menu {
  .name {
    font-size: 14px;
    max-width: 7rem;
    text-overflow: ellipsis;
    overflow: hidden;
    text-wrap: nowrap;
  }
}

/* Component: typography.css */
.font-display {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.25;
}


h1, .h1 {
	font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.25;
}

h2, .h2 {
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.25;
}

h3, .h3 {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
}

h4, .h4 {
	font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
}

h5, .h5 {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
}

h6, .h6 {
  font-weight: 700;
}

.link {
  color: var(--text-primary);
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.5rem;
  text-decoration-line: underline;

  &:hover,
  &:focus {
    color: var(--text-primary-hover);
  }
}

code {
  background: var(--bg-disabled);
  border-radius: 0.25rem;
  color: var(--base-text);
  font-size: 0.875rem;
  padding: 0.25rem 0.375rem;
}

pre code {
  padding: 0.5rem 0.75rem;
  display: block;
}

/* Component: wells.css */
.well {
  background: var(--base-bg-high);
  color: var(--base-text);
  padding: 32px;
  font-style: normal;
  text-align: center;
  border-radius: 8px;
  max-width: 768px;
  display: flex;
  flex-direction: column;
  gap: 8px;

  h2 {
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
  }

  p {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
  }

  a {
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 600;
    line-height: 24px;
  }
}

.well-lg {
  padding: 64px;
  gap: 16px;

  h2 {
    font-size: 36px;
    line-height: 40px;
  }

  p {
    font-size: 20px;
    line-height: 28px;
  }

  a {
    font-size: 18px;
    line-height: 28px;
  }
}

/* Utility classes - All Tailwind utilities */
.p-0 { padding: 0px; }
.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }

.py-0 { padding-top: 0px; padding-bottom: 0px; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }

.px-0 { padding-left: 0px; padding-right: 0px; }
.px-1 { padding-left: 0.25rem; padding-right: 0.25rem; }
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }

.pt-0 { padding-top: 0px; }
.pt-1 { padding-top: 0.25rem; }
.pt-2 { padding-top: 0.5rem; }
.pt-3 { padding-top: 0.75rem; }
.pt-4 { padding-top: 1rem; }

.pb-0 { padding-bottom: 0px; }
.pb-1 { padding-bottom: 0.25rem; }
.pb-2 { padding-bottom: 0.5rem; }
.pb-3 { padding-bottom: 0.75rem; }
.pb-4 { padding-bottom: 1rem; }

.pl-0 { padding-left: 0px; }
.pl-1 { padding-left: 0.25rem; }
.pl-2 { padding-left: 0.5rem; }
.pl-3 { padding-left: 0.75rem; }
.pl-4 { padding-left: 1rem; }

.pr-0 { padding-right: 0px; }
.pr-1 { padding-right: 0.25rem; }
.pr-2 { padding-right: 0.5rem; }
.pr-3 { padding-right: 0.75rem; }
.pr-4 { padding-right: 1rem; }

/* Margins */
.m-0 { margin: 0px; }
.m-1 { margin: 0.25rem; }
.m-2 { margin: 0.5rem; }
.m-3 { margin: 0.75rem; }
.m-4 { margin: 1rem; }

.my-0 { margin-top: 0px; margin-bottom: 0px; }
.my-1 { margin-top: 0.25rem; margin-bottom: 0.25rem; }
.my-2 { margin-top: 0.5rem; margin-bottom: 0.5rem; }
.my-3 { margin-top: 0.75rem; margin-bottom: 0.75rem; }
.my-4 { margin-top: 1rem; margin-bottom: 1rem; }

.mx-0 { margin-left: 0px; margin-right: 0px; }
.mx-1 { margin-left: 0.25rem; margin-right: 0.25rem; }
.mx-2 { margin-left: 0.5rem; margin-right: 0.5rem; }
.mx-3 { margin-left: 0.75rem; margin-right: 0.75rem; }
.mx-4 { margin-left: 1rem; margin-right: 1rem; }
.mx-auto { margin-left: auto; margin-right: auto; }

.mt-0 { margin-top: 0px; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }

.mb-0 { margin-bottom: 0px; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }

.ml-0 { margin-left: 0px; }
.ml-1 { margin-left: 0.25rem; }
.ml-2 { margin-left: 0.5rem; }
.ml-3 { margin-left: 0.75rem; }
.ml-4 { margin-left: 1rem; }

.mr-0 { margin-right: 0px; }
.mr-1 { margin-right: 0.25rem; }
.mr-2 { margin-right: 0.5rem; }
.mr-3 { margin-right: 0.75rem; }
.mr-4 { margin-right: 1rem; }

/* Layout */
.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  max-width: 1280px;
  padding-left: 1rem;
  padding-right: 1rem;
}

.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }
.hidden { display: none; }
.block { display: block; }
.inline-block { display: inline-block; }

.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-wrap { flex-wrap: wrap; }
.flex-nowrap { flex-wrap: nowrap; }

.items-start { align-items: flex-start; }
.items-end { align-items: flex-end; }
.items-center { align-items: center; }
.items-baseline { align-items: baseline; }
.items-stretch { align-items: stretch; }

.justify-start { justify-content: flex-start; }
.justify-end { justify-content: flex-end; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-around { justify-content: space-around; }
.justify-evenly { justify-content: space-evenly; }

.flex-1 { flex: 1 1 0%; }
.flex-auto { flex: 1 1 auto; }
.flex-initial { flex: 0 1 auto; }
.flex-none { flex: none; }

.gap-0 { gap: 0px; }
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }

.space-x-1 > * + * { margin-left: 0.25rem; }
.space-x-2 > * + * { margin-left: 0.5rem; }
.space-x-3 > * + * { margin-left: 0.75rem; }
.space-x-4 > * + * { margin-left: 1rem; }

.space-y-1 > * + * { margin-top: 0.25rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }

/* Width & Height */
.w-full { width: 100%; }
.w-auto { width: auto; }
.w-1\/2 { width: 50%; }
.w-1\/3 { width: 33.333333%; }
.w-2\/3 { width: 66.666667%; }
.w-1\/4 { width: 25%; }
.w-3\/4 { width: 75%; }
.w-48 { width: 12rem; }
.w-56 { width: 14rem; }
.w-64 { width: 16rem; }
.w-96 { width: 24rem; }

.h-full { height: 100%; }
.h-auto { height: auto; }
.h-screen { height: 100vh; }

.min-h-0 { min-height: 0px; }
.min-h-full { min-height: 100%; }
.min-h-screen { min-height: 100vh; }

/* Max Width */
.max-w-sm { max-width: 24rem; }
.max-w-md { max-width: 28rem; }
.max-w-lg { max-width: 32rem; }
.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-6xl { max-width: 72rem; }
.max-w-7xl { max-width: 80rem; }

/* List Styles */
.list-none { list-style-type: none; }
.list-disc { list-style-type: disc; }
.list-decimal { list-style-type: decimal; }

/* Typography */
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }

.font-light { font-weight: 300; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-justify { text-align: justify; }

/* Colors */
.text-black { color: rgb(0, 0, 0); }
.text-white { color: rgb(255, 255, 255); }
.text-gray-50 { color: rgb(249, 250, 251); }
.text-gray-100 { color: rgb(243, 244, 246); }
.text-gray-200 { color: rgb(229, 231, 235); }
.text-gray-300 { color: rgb(209, 213, 219); }
.text-gray-400 { color: rgb(156, 163, 175); }
.text-gray-500 { color: rgb(107, 114, 128); }
.text-gray-600 { color: rgb(75, 85, 99); }
.text-gray-700 { color: rgb(55, 65, 81); }
.text-gray-800 { color: rgb(31, 41, 55); }
.text-gray-900 { color: rgb(17, 24, 39); }

.bg-white { background-color: rgb(255, 255, 255); }
.bg-black { background-color: rgb(0, 0, 0); }
.bg-gray-50 { background-color: rgb(249, 250, 251); }
.bg-gray-100 { background-color: rgb(243, 244, 246); }
.bg-gray-200 { background-color: rgb(229, 231, 235); }
.bg-gray-300 { background-color: rgb(209, 213, 219); }
.bg-gray-400 { background-color: rgb(156, 163, 175); }
.bg-gray-500 { background-color: rgb(107, 114, 128); }
.bg-gray-600 { background-color: rgb(75, 85, 99); }
.bg-gray-700 { background-color: rgb(55, 65, 81); }
.bg-gray-800 { background-color: rgb(31, 41, 55); }
.bg-gray-900 { background-color: rgb(17, 24, 39); }

/* Borders */
.border { border-width: 1px; }
.border-0 { border-width: 0px; }
.border-2 { border-width: 2px; }
.border-4 { border-width: 4px; }

.border-t { border-top-width: 1px; }
.border-r { border-right-width: 1px; }
.border-b { border-bottom-width: 1px; }
.border-l { border-left-width: 1px; }

.border-solid { border-style: solid; }
.border-dashed { border-style: dashed; }
.border-dotted { border-style: dotted; }
.border-none { border-style: none; }

.border-gray-200 { border-color: rgb(229, 231, 235); }
.border-gray-300 { border-color: rgb(209, 213, 219); }
.border-gray-400 { border-color: rgb(156, 163, 175); }

.rounded { border-radius: 0.25rem; }
.rounded-md { border-radius: 0.375rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-full { border-radius: 9999px; }

/* Shadows */
.shadow-sm { box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); }
.shadow { box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1); }
.shadow-md { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1); }
.shadow-none { box-shadow: 0 0 #0000; }

/* Position */
.static { position: static; }
.fixed { position: fixed; }
.absolute { position: absolute; }
.relative { position: relative; }
.sticky { position: sticky; }

.top-0 { top: 0px; }
.right-0 { right: 0px; }
.bottom-0 { bottom: 0px; }
.left-0 { left: 0px; }

.z-0 { z-index: 0; }
.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-30 { z-index: 30; }
.z-40 { z-index: 40; }
.z-50 { z-index: 50; }

/* Overflow */
.overflow-auto { overflow: auto; }
.overflow-hidden { overflow: hidden; }
.overflow-visible { overflow: visible; }
.overflow-scroll { overflow: scroll; }
.overflow-x-auto { overflow-x: auto; }
.overflow-y-auto { overflow-y: auto; }

/* Opacity */
.opacity-0 { opacity: 0; }
.opacity-25 { opacity: 0.25; }
.opacity-50 { opacity: 0.5; }
.opacity-75 { opacity: 0.75; }
.opacity-100 { opacity: 1; }

/* Cursor */
.cursor-pointer { cursor: pointer; }
.cursor-default { cursor: default; }
.cursor-not-allowed { cursor: not-allowed; }

/* Configurator-specific styles */
.configurator-main {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 2fr;
  height: calc(100vh - 8rem);
  gap: 0;
  overflow: hidden;
}

.configuration-panel {
  background-color: #dee3d4;
  color: #070909;
  overflow-y: auto;
  padding: 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.three-viewer {
  position: relative;
  overflow: hidden;
  background-color: #f5f5f5;
  height: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  font-weight: 500;
  border-radius: 0.375rem;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 200ms;
  cursor: pointer;
  text-decoration: none;
  border: none;
  font-size: 1rem;
}

.btn-primary {
  background-color: rgba(0, 0, 0, 0);
  color: rgb(255, 255, 255);
  padding: 0.75rem 1.5rem;
  box-shadow: rgba(22, 11, 68, 0.1) 0px 2px 4px 0px;
}

.btn-secondary {
  background-color: rgb(255, 255, 255);
  color: oklch(0.269 0 0);
  padding: 0.75rem 1.5rem;
  box-shadow: rgba(22, 11, 68, 0.1) 0px 2px 4px 0px;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
  margin-bottom: 0.5rem;
}

.form-control {
  display: block;
  width: 100%;
  padding: 0.5rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #1f2937;
  background-color: #ffffff;
  background-clip: padding-box;
  border: 1px solid #d1d5db;
  border-radius: 0.375rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control:focus {
  color: #1f2937;
  background-color: #ffffff;
  border-color: #3b82f6;
  outline: 0;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.progress-steps {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding: 0 1rem;
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  position: relative;
}

.progress-step-number {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  margin-bottom: 0.5rem;
  z-index: 1;
  background-color: #e5e7eb;
  color: #6b7280;
}

.progress-step.active .progress-step-number {
  background-color: #3b82f6;
  color: white;
}

.progress-step.completed .progress-step-number {
  background-color: #10b981;
  color: white;
}

.progress-step-label {
  font-size: 0.75rem;
  text-align: center;
  color: #6b7280;
}

.progress-step.active .progress-step-label {
  color: #1f2937;
  font-weight: 500;
}
