/* ==========================================================================
   VF Limo Green — Product Detail Page
   ========================================================================== */

:root {
    --lg-green: #1B8A4C;
    --lg-green-dark: #146639;
    --lg-text: #1F2125;
    --lg-text-muted: #6b6b6b;
    --lg-border: #e5e5e5;
    --lg-blue: #1464F4;
    --lg-blue-dark: #0f4fc0;
    --lg-label: #3C3C3C;
}

/* ==========================================================================
   HERO
   ========================================================================== */

.lg-hero {
    position: relative;
    line-height: 0;
}

.lg-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 50%, rgb(255, 255, 255) 100%);
    pointer-events: none;
    z-index: 1;
}

.lg-hero-img {
    width: 100%;
    height: auto;
    display: block;
}

/* ==========================================================================
   INTRO  — fleet pitch + stats
   ========================================================================== */

.lg-intro {
    padding-top: 96px;
    overflow: hidden;
    background-image: url('/static/delivery/limo-green/images/decor-stripe.webp');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% auto;
}

.lg-intro-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 75px 80px;
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
}

/* ── Left column ── */
.lg-intro-left {
    flex: 0 0 520px;
    display: flex;
    flex-direction: column;
    gap: 3.2rem;
}

.lg-intro-heading {
    margin: 0;
    font-size: 36px;
    font-weight: 300;
    line-height: 1.3;
    color: var(--lg-text);
    letter-spacing: -0.01em;
}

.lg-intro-body {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lg-intro-body p {
    margin: 0;
    font-size: 14px;
    line-height: 1.75;
    color: var(--lg-text-muted);
}

/* Stats row */
.lg-intro-stats {
    display: flex;
    align-items: center;
    gap: 0;
}

.lg-stat {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 0 28px 0 0;
}

.lg-stat:first-child {
    padding-left: 0;
}

.lg-stat-val {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
    color: var(--lg-text);
    white-space: nowrap;
}

.lg-stat-unit {
    font-size: 20px;
    font-weight: 300;
    margin-left: 2px;
    vertical-align: baseline;
}

.lg-stat-lbl {
    font-size: 16px;
    font-weight: 600;
    color: var(--lg-label);
    line-height: 1.5;
    /* max-width: 120px; */
}

.lg-stat-divider {
    width: 1px;
    height: 4rem;
    background: var(--lg-border);
    flex-shrink: 0;
    margin: 0 28px 0 0;
}

/* Download brochure button */
.lg-intro-brochure {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 360px;
    padding: 16px 3.2rem;
    border: 1.5px solid var(--lg-blue);
    color: var(--lg-blue);
    background: transparent;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-align: center;
    transition: background 0.2s, color 0.2s;
}

.lg-intro-brochure:hover {
    background: var(--lg-blue);
    color: #fff;
}

.lg-enquire-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    cursor: pointer;
    max-width: 220px;
    padding: 16px 3.2rem;
    background: var(--lg-blue);
    color: #fff;
    border: none;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-align: center;
    transition: background 0.2s;
}

.lg-enquire-btn:hover {
    background: var(--lg-blue-dark);
    color: #fff;
}

/* ==========================================================================
   VEHICLE SPECIFICATIONS
   ========================================================================== */

.lg-specs {
    padding: 96px 0 96px;
    background: #fff;
}

.lg-specs-inner {
    max-width: 1440px;
    padding: 0 75px;
    margin: 0 auto;
}

.lg-specs-logo {
    display: block;
    width: 265px;
    height: 20px;
    object-fit: contain;
    margin: 0 0 8px;
}

.lg-specs-heading {
    font-size: 4rem;
    font-weight: 300;
    color: var(--lg-text);
    margin: 0 0 48px;
    line-height: 1.2;
}

.lg-specs-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    row-gap: 48px;
}

.lg-spec-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-right: 2.4rem;
}

.lg-spec-val {
    font-size: 3.2rem;
    font-weight: 700;
    color: #3C3C3C;
    line-height: 1.1;
}

.lg-spec-val--text {
    font-size: 2.4rem;
    font-weight: 700;
}

.lg-spec-unit {
    font-size: 14px;
    font-weight: 400;
    color: var(--lg-text);
}

.lg-spec-note {
    font-size: 13px;
    font-weight: 400;
    color: var(--lg-text-muted);
}

.lg-spec-lbl {
    font-size: 16px;
    font-weight: 600;
    color: var(--lg-text-muted);
    line-height: 1.4;
}

.lg-specs-actions {
    display: flex;
    gap: 16px;
    margin-top: 48px;
    flex-wrap: wrap;
}

.lg-specs-actions .lg-intro-brochure {
    max-width: 372px;
}

.lg-specs-actions .lg-enquire-btn {
    max-width: 372px;
}

/* ── Right column ── */
.lg-intro-right {
    flex: 1;
    min-width: 0;
    position: relative;
}

.lg-intro-car {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 1;
}

/* ==========================================================================
   MOBILE  ( ≤ 767px )
   ========================================================================== */

@media (max-width: 767px) {

    .lg-intro {
        margin-top: 48px;
    }

    .lg-intro-inner {
        padding: 0 20px 60px;
        flex-direction: column;
        gap: 4rem;
    }

    .lg-intro-left {
        flex: none;
        width: 100%;
        gap: 2.4rem;
    }

    .lg-intro-heading {
        font-size: 26px;
    }

    .lg-stat-val {
        font-size: 3.2rem;
    }

    .lg-stat-unit {
        font-size: 15px;
    }

    .lg-stat {
        padding-right: 20px;
    }

    .lg-stat-divider {
        margin-right: 20px;
    }

    .lg-intro-brochure {
        width: 100%;
    }

    .lg-intro-right {
        width: 100%;
    }
}

/* ==========================================================================
   COLOR PICKER
   ========================================================================== */

.lg-colors {
    background: #F7F9F9;
    padding: 96px 0 96px 0;
}

.lg-colors-inner {
    position: relative;
    max-width: 1440px;
    margin: 0 auto;
    padding: 48px 0px 48px 0px;
    display: flex;
    flex-direction: column;
    align-items: center;

}

/* Wordmark above the car */
.lg-colors-logo {
    height: auto;
    width: 55%;
    max-width: 905px;
    display: block;
    margin: 0 auto -90px;
    flex-shrink: 0;
    position: relative;
    z-index: 0;
    pointer-events: none;
}

/* Body: swatches left + stage right */
.lg-colors-body {
    display: flex;
    align-items: center;
    gap: 0;
    width: 100%;
}

/* ── Swatch column ── */
.lg-color-swatches {
    z-index: 99;
    left: 10px;
    top: 35%;
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 2.4rem;
    padding-right: 4rem;
    flex-shrink: 0;
}

.lg-swatch {
    display: flex;
    align-items: center;
    gap: 12px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.lg-swatch-dot {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: block;
    flex-shrink: 0;
    box-sizing: border-box;
    object-fit: cover;
    transition: transform 0.15s, box-shadow 0.15s;
}

.lg-swatch:hover .lg-swatch-dot {
    transform: scale(1.1);
}

.lg-swatch--active .lg-swatch-dot {
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px #1464F4;
}

.lg-swatch-label {
    font-size: 20px;
    font-weight: 600;
    color: var(--lg-text);
    white-space: nowrap;
}

/* ── Car stage ── */
.lg-color-stage {
    flex: 1;
    min-width: 0;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}


.lg-color-car-wrap {
    position: relative;
    width: 100%;
    z-index: 1;
    display: flex;
    justify-content: center;
}

/* Two-image crossfade */
.lg-color-car {
    width: 829px;
    height: 406px;
    display: block;
    transition: opacity 0.4s ease;
    opacity: 0;
    position: absolute;
    top: 0;
    /* left: 0; */
}

.lg-color-car:first-child {
    position: relative;
    /* keeps the wrap height */
}

.lg-color-car--visible {
    opacity: 1;
}

.lg-color-name {
    margin: 16px 0 0;
    font-size: 14px;
    font-weight: 600;
    color: var(--lg-text);
    letter-spacing: 0.02em;
    text-align: center;
    transition: opacity 0.25s;
    position: relative;
    z-index: 1;
}

/* ==========================================================================
   VIDEO SECTION
   ========================================================================== */

.lg-video {
    width: 100%;
    line-height: 0;
    overflow: hidden;
    aspect-ratio: 1921 / 1081;
    position: sticky;
    top: 0;
    z-index: 0;
}

.lg-video-player {
    width: 100vw;
    height: 100vh;
    display: block;
    object-fit: fill;
}

/* Wrapper đè lên video khi scroll */
.lg-bottom-part {
    position: relative;
    z-index: 99;
    background: #ffffff;
    padding-top: px;
}

/* ==========================================================================
   COLOR PICKER — MOBILE
   ========================================================================== */

@media (max-width: 767px) {

    .lg-colors {
        padding: 48px 0;
    }

    .lg-colors-inner {
        padding: 0 20px;
        gap: 3.2rem;
    }

    .lg-colors-body {
        flex-direction: column;
        gap: 3.2rem;
    }

    .lg-color-swatches {
        flex-direction: row;
        padding-right: 0;
        gap: 20px;
        justify-content: center;
        width: 100%;
    }

    .lg-swatch-label {
        display: none;
    }
}

/* ==========================================================================
   ENQUIRE MODAL
   ========================================================================== */

.lg-enquire-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.lg-enquire-modal.lg-modal--active {
    display: flex;
    opacity: 1;
}

.lg-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.lg-modal-container {
    position: relative;
    width: 90%;
    max-width: 1400px;
    max-height: 95vh;
    background: #FFFFFF99;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    z-index: 1;
    border-radius: 2.4rem;
}

.lg-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 3.2rem;
    height: 3.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--lg-text);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 2;
    color: #ffffff;
    transition: background 0.2s;
}

.lg-modal-close:hover {
    background: #f5f5f5;
    color: var(--lg-text);
}

.lg-modal-content {
    display: flex;
    height: 90vh;
    max-height: 768px;
}

.lg-modal-left {
    flex: 1;
    position: relative;
    overflow: hidden;
    background: #f8f9fa;
    border-top-left-radius: 2.4rem;
    border-bottom-left-radius: 2.4rem;
}

.lg-modal-car {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.lg-modal-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem;
}

.lg-form-container {
    width: 100%;
    max-width: 100%;
    background: #fff;
    border-radius: 12px;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    max-height: 100%;
}

.lg-modal-title {
    flex-shrink: 0;
    font-size: 3.2rem;
    font-weight: 400;
    color: #3C3C3C;
    margin: 0 0 2.4rem;
    letter-spacing: 0.02em;
    text-align: center;
}

.lg-modal-form-wrap {
    flex: 1;
    overflow-y: auto;
}

.lg-modal-footer {
    flex-shrink: 0;
    padding-top: 2.4rem;
}

/* Form Elements */
.lg-enquire-form {
    display: flex;
    flex-direction: column;
    gap: 2.4rem;
}

.lg-enquire-form-body {
    display: flex;
    flex-direction: column;
}

.lg-form-group {
    position: relative;
    display: flex;
    flex-direction: column;
    margin-bottom: 12px;
}

.lg-form-group:first-child {
    margin-bottom: 2.4rem;
}

.lg-form-group-row {
    display: flex;
    gap: 3rem;
    margin-bottom: 12px;
}

.lg-form-section-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 16px;
}

.lg-form-section-title:first-child {
    margin-top: 0;
}

.lg-form-label {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 16px;
    font-size: 16px;
    font-weight: 400;
    color: var(--lg-label);
    pointer-events: none;
    transition: all 0.2s ease;
    padding: 0;
}

.lg-form-group:focus-within .lg-form-label,
.lg-form-group.lg-has-value .lg-form-label {
    top: 6px;
    transform: translateY(0);
    font-size: 12px;
    color: #1464F4;
}

/* Float labels for phone and OTP groups */
.lg-phone-group .lg-form-label,
.lg-otp-group .lg-form-label {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 16px;
    font-size: 16px;
    font-weight: 400;
    color: var(--lg-label);
    pointer-events: none;
    transition: all 0.2s ease;
    padding: 0 4px;
    z-index: 1;
}

.lg-phone-group .lg-phone-input:focus~.lg-form-label,
.lg-phone-group .lg-phone-input:not(:placeholder-shown)~.lg-form-label,
.lg-form-group--phone.lg-has-value .lg-phone-group .lg-form-label,
.lg-otp-group .lg-otp-input:focus~.lg-form-label,
.lg-otp-group .lg-otp-input:not(:placeholder-shown)~.lg-form-label {
    top: 0;
    transform: translateY(0);
    font-size: 12px;
    color: #1464F4;
}

/* Select group: label floats inside the select2 box */
.lg-form-group--select .form-item {
    position: relative;
}

.lg-form-group--select label {
    position: absolute;
    top: 8px;
    left: 16px;
    font-size: 12px;
    font-weight: 400;
    color: #1464F4;
    z-index: 2;
    pointer-events: none;
    background: transparent;
    line-height: 1;
}

.lg-required {
    color: #1464F4;
}

.lg-form-input,
.lg-form-select,
.lg-form-textarea {
    width: 100%;
    padding: 2.4rem 16px 8px;
    font-size: 16px;
    color: #1a1a1a;
    background: #fff;
    border: 1px solid #D1D5DB;
    outline: none;
    transition: border-color 0.2s;
    font-family: inherit;
}

.lg-form-select {
    padding-top: 20px;
    padding-bottom: 6px;
}

.lg-form-input:focus,
.lg-form-select:focus,
.lg-form-textarea:focus {
    border-color: #1464F4;
}

.lg-form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%236b6b6b' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 44px;
    cursor: pointer;
}

.lg-form-select option[value=""] {
    color: #9CA3AF;
}

.lg-form-textarea {
    resize: vertical;
    min-height: 100px;
}

/* Radio buttons */
.lg-radio-group {
    display: flex;
    gap: 2.4rem;
}

.lg-radio-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 16px;
    color: #1a1a1a;
}

.lg-radio-label input[type="radio"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

/* Phone number with OTP */
.lg-form-group--phone {
    position: relative;
}

.lg-phone-group {
    position: relative;
    display: flex;
    gap: 0;
}

.lg-phone-input {
    flex: 1;
    padding: 2.4rem 4rem 8px 16px;
}

.lg-phone-clear {
    position: absolute;
    right: 140px;
    top: 50%;
    transform: translateY(-50%);
    width: 2.4rem;
    height: 2.4rem;
    display: none;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.lg-phone-input:not(:placeholder-shown)~.lg-phone-clear {
    display: flex;
}

.lg-phone-send,
.lg-otp-send {
    flex-shrink: 0;
    width: 120px;
    padding: 14px 20px;
    background: #D1D5DB;
    color: #6b6b6b;
    border: none;
    font-size: 14px;
    font-weight: 600;
    cursor: not-allowed;
    transition: background 0.2s, color 0.2s;
}

.lg-phone-send.lg-active,
.lg-otp-send.lg-active {
    background: #1464F4;
    color: #fff;
    cursor: pointer;
}

.lg-phone-send.lg-active:hover,
.lg-otp-send.lg-active:hover {
    background: #0f4fc0;
}

/* OTP verification */
.lg-otp-group {
    margin-top: 12px;
    display: flex;
    gap: 0;
    flex-wrap: wrap;
    position: relative;
}

.lg-otp-input {
    flex: 1;
    padding: 2.4rem 16px 8px;
}

.lg-phone-input.lg-verified {
    border-color: #10B981;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16 6L8 14L4 10' stroke='%2310B981' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 44px;
}

.lg-otp-timer {
    width: 100%;
    margin-top: 8px;
    font-size: 13px;
    color: #6b6b6b;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.lg-otp-resend {
    background: none;
    border: none;
    padding: 0;
    font-size: 13px;
    color: #6b6b6b;
    cursor: not-allowed;
    transition: color 0.2s;
}

.lg-otp-resend:not(:disabled) {
    color: #1464F4;
    cursor: pointer;
    text-decoration: underline;
}

.lg-otp-resend:not(:disabled):hover {
    color: #0f4fc0;
}

.lg-timer-count {
    color: #EF4444;
    font-weight: 600;
}

.lg-otp-error {
    width: 100%;
    margin-top: 8px;
    font-size: 13px;
    color: #EF4444;
    font-weight: 500;
    display: none;
}

.lg-otp-group.lg-error .lg-otp-error {
    display: block;
}

.lg-otp-group.lg-error .lg-otp-input {
    border-color: #EF4444;
}

/* Field validation errors */
.lg-field-error {
    width: 100%;
    margin-top: 8px;
    font-size: 13px;
    color: #EF4444;
    font-weight: 500;
    display: none;
}

.lg-form-input.error,
.lg-form-textarea.error,
.lg-form-select.error {
    border-color: #EF4444 !important;
}

.lg-form-input.error:focus,
.lg-form-textarea.error:focus {
    border-color: #EF4444 !important;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

/* Submit button */
.lg-submit-btn {
    width: 100%;
    padding: 16px 3.2rem;
    background: #6B7280;
    color: #fff;
    border: none;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    cursor: not-allowed;
    transition: background 0.2s;
    margin: 0 0 12px;
}

.lg-modal-footer.lg-form--valid .lg-submit-btn {
    background: #1464F4;
    cursor: pointer;
}

.lg-modal-footer.lg-form--valid .lg-submit-btn:hover {
    background: #0f4fc0;
}

/* Loading state for submit button */
.lg-submit-btn.lg-loading {
    position: relative;
    color: transparent;
    pointer-events: none;
    cursor: wait !important;
}

.lg-submit-btn.lg-loading::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    left: 50%;
    margin-left: -8px;
    margin-top: -8px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: lg-spinner 0.6s linear infinite;
}

@keyframes lg-spinner {
    to {
        transform: rotate(360deg);
    }
}

.lg-form-footer {
    font-size: 13px;
    color: #6b6b6b;
    line-height: 1.5;
    margin: 0;
}

.lg-form-footer a {
    color: #1464F4;
    text-decoration: none;
}

.lg-form-footer a:hover {
    text-decoration: underline;
}

/* Mobile responsive */
@media (max-width: 991px) {
    .lg-color-stage {
        padding-bottom: 4.8rem;

    }

    .lg-color-swatches {
        top: unset;
        bottom: 0;
    }

    .lg-colors-logo {
        margin: 0 auto -20px;
    }

    .lg-swatch-dot {
        width: 36px;
        height: 36px;
    }

    .lg-color-car {
        width: 100%;
        height: auto;
        object-fit: contain;
    }

    .lg-video {
        aspect-ratio: unset;
    }

    .lg-video-player {
        height: auto;
    }

    .lg-modal-content {
        flex-direction: column;
        height: auto;
        max-height: 95vh;
    }

    .lg-modal-left {
        display: none;
    }

    .lg-modal-right {
        padding: 0;
    }

    .lg-form-container {
        padding: 20px;
        max-height: calc(95vh - 40px);
    }

    .lg-modal-form-wrap {
        max-height: calc(95vh - 200px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .lg-modal-title {
        font-size: 2.4rem;
        margin-bottom: 16px;
    }

    .lg-modal-footer {
        padding-top: 16px;
    }

    .lg-specs-inner {
        padding: 0 1.6rem;
    }

    .lg-specs-heading {
        font-size: 3.2rem;
    }

    .lg-spec-item {
        padding: 0;
    }

    .lg-spec-val {
        font-size: 1.8rem;
    }

    .lg-spec-lbl {
        font-size: 1.4rem;
    }

    .lg-specs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        row-gap: 32px;
    }
}

/* =========================================
   Select2 overrides for Limo Green form
   ========================================= */

/* Container width */
.lg-enquire-form .select2-container {
    width: 100% !important;
}

/* Closed state — match the form input style */
.lg-enquire-form .select2-container--default .select2-selection--single {
    height: 56px;
    padding: 20px 44px 6px 16px;
    border: 1px solid #D1D5DB;
    border-radius: 0;
    background: #fff;
    display: flex;
    align-items: center;
    position: relative;
}

/* Selected text */
.lg-enquire-form .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: unset;
    padding-left: 0;
    color: #1a1a1a;
    font-size: 16px;
}

/* Placeholder text */
.lg-enquire-form .select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: transparent;
    /* hide — label handles placeholder */
}

/* Arrow */
.lg-enquire-form .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 100%;
    top: 0;
    right: 12px;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%236b6b6b' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}

.lg-enquire-form .select2-container--default .select2-selection--single .select2-selection__arrow b {
    display: none;
}

/* Open/focus border */
.lg-enquire-form .select2-container--default.select2-container--open .select2-selection--single,
.lg-enquire-form .select2-container--default.select2-container--focus .select2-selection--single {
    border-color: #1464F4;
    outline: none;
}

/* Dropdown panel */
.lg-enquire-form~* .select2-dropdown,
#lg-enquire-modal .select2-dropdown {
    border: 1px solid #D1D5DB;
    border-radius: 0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

/* Search box inside dropdown */
#lg-enquire-modal .select2-search--dropdown {
    padding: 8px;
    background: #f5f7fa;
    border-bottom: 1px solid #e5e7eb;
}

#lg-enquire-modal .select2-search--dropdown .select2-search__field {
    width: 100%;
    padding: 10px 4rem 10px 12px;
    border: 1px solid #D1D5DB;
    border-radius: 4px;
    background: #fff;
    color: #1a1a1a;
    font-size: 14px;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='9' cy='9' r='6' stroke='%23888' stroke-width='1.5'/%3E%3Cpath d='M13.5 13.5L17 17' stroke='%23888' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    outline: none;
}

#lg-enquire-modal .select2-search--dropdown .select2-search__field::placeholder {
    color: #9CA3AF;
}

/* Options list */
#lg-enquire-modal .select2-results__option {
    padding: 12px 16px;
    font-size: 14px;
    color: #1a1a1a;
}

#lg-enquire-modal .select2-results__option--highlighted {
    background-color: #f0f4ff !important;
    color: #1464F4 !important;
}

#lg-enquire-modal .select2-results__option[aria-selected="true"] {
    color: #1464F4;
    background: #f0f4ff;
}

/* Dealer option layout */
#lg-enquire-modal .dealer-option {
    padding: 4px 0;
}

#lg-enquire-modal .dealer-name {
    font-size: 14px;
    font-weight: 600;
    color: #1464F4;
}

#lg-enquire-modal .dealer-address {
    font-size: 12px;
    color: #555;
    margin-top: 2px;
}

#lg-enquire-modal .dealer-tel {
    font-size: 12px;
    color: #888;
    margin-top: 1px;
}

/* select2 open border highlight — label stays the same color when open */
.lg-form-group--select .select2-container--default.select2-container--open~.select2-hidden-accessible,
.lg-form-group--select .select2-container--default.select2-container--focus~.select2-hidden-accessible {
    /* handled by border rule above */
}