@import url('styles-BcYy8FIt.css');
@import url('index-CLlcGbbA.css');

/* ============================================================
   UTILITY OVERRIDES — classes dynamically toggled via JS
   These are NOT purged by the Tailwind build and must be 
   declared here to work correctly at runtime.
   ============================================================ */

/* .hidden — mirrors Tailwind's utility, needed for JS classList toggling
   NOTE: no !important here — Tailwind responsive overrides (md:block) must still work */
.hidden {
    display: none;
}

/* Custom Page transitions for Single Page App toggling */
#landing-page-main {
    display: block;
}

#order-flow-container {
    display: none;
    min-height: 100vh;
    background-color: #faf9f6;
}

.fade-in-wizard {
    animation: wizardFade 0.4s ease forwards;
}

@keyframes wizardFade {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Custom interactive inputs inside cloned Radix widgets if needed */
.order-step-container {
    display: none;
    animation: wizardFade 0.3s ease forwards;
}

.order-step-container.active {
    display: block;
}

/* Styling overrides to fix external SVG/logo widths and display */
img[alt="ClimLoc"] {
    max-height: 32px;
    width: auto;
}

/* Custom styling for the checked state of option checkboxes */
.custom-checkbox-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    border: 1px solid rgba(15, 61, 46, 0.1);
    border-radius: 8px;
    margin-bottom: 8px;
    cursor: pointer;
    background: #ffffff;
}

.custom-checkbox-row input {
    width: 20px;
    height: 20px;
}



/* Visibility media queries for configurator header phone buttons */
@media (max-width: 767px) {
  .header-desktop-phone-btn {
    display: none !important;
  }
}
@media (min-width: 768px) {
  .header-mobile-phone-btn {
    display: none !important;
  }
}

/* Autocomplete suggestions dropdown styles */
.autocomplete-suggestions {
    position: absolute;
    left: 0;
    right: 0;
    z-index: 999;
    margin-top: 4px;
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    max-height: 240px;
    overflow-y: auto;
}

.autocomplete-suggestion {
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.autocomplete-suggestion:last-child {
    border-bottom: none;
}

.autocomplete-suggestion:hover {
    background-color: #faf9f6;
}

.autocomplete-suggestion .pin-icon {
    flex-shrink: 0;
    color: var(--brand-color);
}

.autocomplete-suggestion .address-main {
    font-size: 14px;
    font-weight: 500;
    color: #1a1a1a;
}

.autocomplete-suggestion .address-sub {
    font-size: 11px;
    color: rgba(0, 0, 0, 0.4);
    margin-top: 2px;
}

/* Autocomplete relative container */
.relative {
    position: relative;
}

/* Date slider custom horizontal scroll styling */
#step6-dates-container {
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, 0.1) transparent;
}

#step6-dates-container::-webkit-scrollbar {
    height: 4px;
}

#step6-dates-container::-webkit-scrollbar-track {
    background: transparent;
}

#step6-dates-container::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 4px;
}
