﻿/* Luxntek â€” Wishlist & Contact Us */

:root {
    --sf-dark: #011c2f;
    --sf-dark-mid: #06364b;
    --sf-teal: #31bdbd;
    --sf-gold: #ffcc00;
    --sf-muted: #64748b;
    --sf-border: #e2e8f0;
    --sf-bg: #eef2f6;
    --sf-surface: #ffffff;
    --sf-radius: 18px;
}

body.template-wishlist,
body.contact-template {
    background: var(--sf-bg) !important;
}

body.template-wishlist .page.section-header,
body.contact-template .page.section-header,
body.contact-template .bredcrumbWrap {
    display: none !important;
}

body.template-wishlist #page-content.sf-page,
body.contact-template #page-content.sf-page {
    background: var(--sf-bg);
    padding: 48px 0 64px;
}

body.template-wishlist h1,
body.contact-template h1,
body.template-wishlist h2,
body.contact-template h2,
body.template-wishlist .sf-intro__title,
body.contact-template .sf-intro__title {
    text-transform: none !important;
    letter-spacing: -0.02em;
}

.sf-shell {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 20px;
}

.sf-intro {
    text-align: center;
    margin-bottom: 28px;
}

.sf-intro__eyebrow {
    display: inline-block;
    margin: 0 0 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--sf-teal);
}

.sf-intro__title {
    margin: 0 0 10px;
    font-size: clamp(1.85rem, 4vw, 2.5rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--sf-dark);
}

.sf-intro__subtitle {
    margin: 0 auto;
    max-width: 560px;
    font-size: 15px;
    line-height: 1.6;
    color: var(--sf-muted);
}

.sf-alert,
.sf-notice {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
    padding: 14px 16px;
    border-radius: 12px;
    font-size: 14px;
    line-height: 1.5;
    border: 1px solid transparent;
}

.sf-alert__icon {
    flex: 0 0 auto;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 13px;
    font-weight: 800;
}

.sf-alert.is-success,
.sf-notice.is-info {
    color: #0369a1;
    background: #e0f2fe;
    border-color: #bae6fd;
}

.sf-alert.is-error {
    color: #991b1b;
    background: #fef2f2;
    border-color: #fecaca;
}

.sf-alert.is-success {
    color: #065f46;
    background: #ecfdf5;
    border-color: #a7f3d0;
}

.sf-notice__action {
    display: inline-block;
    margin-left: 8px;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    color: var(--sf-dark);
    background: var(--sf-gold);
    text-decoration: none !important;
}

.sf-card {
    background: var(--sf-surface);
    border: 1px solid var(--sf-border);
    border-radius: var(--sf-radius);
    box-shadow: 0 20px 50px rgba(1, 28, 47, 0.08);
    overflow: hidden;
    padding: 24px;
}

.sf-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
    background: var(--sf-surface);
    border: 1px solid var(--sf-border);
    border-radius: var(--sf-radius);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(1, 28, 47, 0.08);
}

.sf-panel__main {
    padding: 32px 32px 36px;
}

.sf-panel__guide {
    padding: 32px 28px;
    color: #fff;
    background:
        linear-gradient(160deg, rgba(49, 189, 189, 0.12) 0%, transparent 45%),
        linear-gradient(145deg, var(--sf-dark), var(--sf-dark-mid));
    border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.sf-panel__guide-title {
    margin: 0 0 18px;
    font-size: 18px;
    font-weight: 800;
    color: #fff;
}

.sf-guide-block {
    margin-bottom: 18px;
    font-size: 13px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.78);
}

.sf-guide-block strong {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
    color: #fff;
}

.sf-guide-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sf-guide-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 14px;
    font-size: 13px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.78);
}

.sf-guide-list li i {
    color: var(--sf-gold);
    margin-top: 2px;
}

.sf-guide-social {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 16px;
}

.sf-guide-social a {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    color: #fff !important;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.14);
    text-decoration: none !important;
    font-size: 22px;
    transition: background 0.2s ease, transform 0.2s ease;
}

.sf-guide-social a:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-1px);
}

.sf-form .form-group {
    margin-bottom: 16px;
}

.sf-form label {
    display: block;
    margin-bottom: 7px;
    font-size: 13px;
    font-weight: 700;
    color: var(--sf-dark);
}

.sf-form label.dealer-check,
.sf-form label.dealer-consent {
    display: flex !important;
    margin-bottom: 0 !important;
    font-weight: 500;
    cursor: pointer;
}

.sf-form input:not([type="checkbox"]):not([type="radio"]),
.sf-form textarea {
    width: 100%;
    border: 1px solid var(--sf-border);
    border-radius: 10px;
    font-size: 14px;
    color: var(--sf-dark);
    background: #fff;
    box-shadow: none !important;
    margin-bottom: 0 !important;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.sf-form input:not([type="checkbox"]):not([type="radio"]) {
    height: 46px;
    padding: 0 12px;
}

.sf-form textarea {
    min-height: 140px;
    padding: 10px 12px;
    resize: vertical;
}

.sf-form input:focus,
.sf-form textarea:focus {
    outline: none;
    border-color: rgba(49, 189, 189, 0.7);
    box-shadow: 0 0 0 3px rgba(49, 189, 189, 0.15) !important;
}

.sf-field-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.sf-submit {
    width: 100%;
    max-width: 220px;
    height: 48px;
    border: 0;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    color: var(--sf-dark);
    background: var(--sf-gold);
    cursor: pointer;
    transition: background 0.2s ease, transform 0.15s ease;
}

.sf-submit:hover {
    background: #ffd633;
    transform: translateY(-1px);
}

.sf-map-card {
    margin-bottom: 24px;
    border-radius: var(--sf-radius);
    overflow: hidden;
    border: 1px solid var(--sf-border);
    box-shadow: 0 12px 32px rgba(1, 28, 47, 0.08);
}

.sf-map-card iframe {
    display: block;
    width: 100%;
    height: 320px;
    border: 0;
}

.sf-panel__main-title {
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 800;
    color: var(--sf-dark);
}

.sf-panel__main-desc {
    margin: 0 0 20px;
    font-size: 14px;
    line-height: 1.55;
    color: var(--sf-muted);
}

.sf-form__recaptcha {
    margin-bottom: 16px;
}

.sf-form-success {
    margin-top: 14px;
    padding: 12px 14px;
    border-radius: 10px;
    font-size: 14px;
    color: #065f46;
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
}

/* Wishlist table */
.sf-card .wishlist-table {
    overflow-x: auto;
}

.sf-card .wishlist-table table {
    width: 100%;
    margin: 0;
    border-collapse: separate;
    border-spacing: 0;
}

.sf-card .wishlist-table thead th {
    padding: 12px 14px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--sf-muted);
    background: #f8fafc;
    border-bottom: 1px solid var(--sf-border);
}

.sf-card .wishlist-table tbody td {
    padding: 16px 14px;
    vertical-align: middle;
    border-bottom: 1px solid var(--sf-border);
}

.sf-card .wishlist-table tbody tr:last-child td {
    border-bottom: 0;
}

.sf-card .wishlist-table .product-thumbnail img {
    width: 88px;
    height: 88px;
    object-fit: contain;
    background: #f8fafc;
    border: 1px solid var(--sf-border);
    border-radius: 12px;
    padding: 6px;
}

.sf-card .wishlist-table .product-name h4 {
    margin: 0 0 4px;
    font-size: 15px;
    font-weight: 700;
}

.sf-card .wishlist-table .product-name a {
    color: var(--sf-dark);
    text-decoration: none;
}

.sf-card .wishlist-table .amount {
    font-size: 15px;
    font-weight: 800;
    color: var(--sf-dark);
}

.sf-card .wishlist-table .badge {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
}

.sf-card .wishlist-table .badge-success {
    color: #047857;
    background: #d1fae5;
}

.sf-card .wishlist-table .badge-danger {
    color: #b91c1c;
    background: #fee2e2;
}

.sf-card .wishlist-table .badge-warning {
    color: #92400e;
    background: #fef3c7;
}

.sf-card .wishlist-table .btn-primary {
    border: 0;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 700;
    color: var(--sf-dark) !important;
    background: var(--sf-gold) !important;
}

.sf-card .wishlist-table .product-remove a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 12px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 700;
    color: #b91c1c !important;
    background: #fef2f2;
    border: 1px solid #fecaca;
    text-decoration: none !important;
}

.sf-empty-state {
    text-align: center;
    padding: 48px 20px;
}

.sf-empty-state p {
    margin: 0 0 16px;
    font-size: 16px;
    color: var(--sf-muted);
}

.sf-empty-state .btn-primary {
    border: 0;
    border-radius: 10px;
    padding: 12px 24px;
    font-weight: 700;
    color: var(--sf-dark) !important;
    background: var(--sf-gold) !important;
}

.sf-card .pagination-wrapper {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--sf-border);
}

.sf-card .pagination-list {
    flex-wrap: wrap;
    gap: 6px;
}

.sf-card .pagination-list .page-link {
    min-width: 36px;
    min-height: 36px;
    border-radius: 8px;
    color: var(--sf-dark);
}

.sf-card .pagination-list .page-item.active .page-link {
    background: var(--sf-dark);
    border-color: var(--sf-dark);
    color: #fff;
}

.sf-card .pagination-info {
    margin-top: 10px;
    font-size: 13px;
    color: var(--sf-muted);
}

@media (max-width: 991px) {
    .sf-panel {
        grid-template-columns: 1fr;
    }

    .sf-panel__guide {
        border-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }
}

@media (max-width: 767px) {
    body.template-wishlist #page-content.sf-page,
    body.contact-template #page-content.sf-page {
        padding: 32px 0 48px;
    }

    .sf-card {
        padding: 16px;
    }

    .sf-panel__main,
    .sf-panel__guide {
        padding: 22px 18px;
    }

    .sf-field-grid {
        grid-template-columns: 1fr;
    }

    .sf-submit {
        max-width: none;
    }

    .sf-card .wishlist-table.table-responsive {
        overflow: visible;
        border: 0;
    }

    .sf-card .wishlist-table table,
    .sf-card .wishlist-table thead,
    .sf-card .wishlist-table tbody,
    .sf-card .wishlist-table tr,
    .sf-card .wishlist-table td {
        display: block;
        width: 100%;
    }

    .sf-card .wishlist-table thead {
        display: none;
    }

    .sf-card .wishlist-table .table-bordered,
    .sf-card .wishlist-table .table-bordered td {
        border: 0;
    }

    .sf-card .wishlist-table tbody tr {
        margin-bottom: 14px;
        padding: 14px;
        background: #fff;
        border: 1px solid var(--sf-border);
        border-radius: 14px;
        box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06);
    }

    .sf-card .wishlist-table tbody tr td {
        padding: 8px 0;
        text-align: left !important;
    }

    .sf-card .wishlist-table tbody tr td:not(.product-thumbnail):not(.product-name)::before {
        content: attr(data-label);
        display: block;
        margin-bottom: 4px;
        color: var(--sf-muted);
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.04em;
        text-transform: uppercase;
    }

    .sf-card .wishlist-table .product-thumbnail {
        text-align: center !important;
    }

    .sf-card .wishlist-table .product-thumbnail img {
        width: 120px !important;
        height: 120px !important;
    }

    .sf-map-card iframe {
        height: 240px;
    }
}

/* Dealer Network — Partnership Enquiry layout */
body.dealer-template {
    background: #f3f5f8 !important;
}

body.dealer-template #page-content.sf-page {
    background: #f3f5f8;
    padding: 40px 0 72px;
}

.pe-dealer-shell {
    max-width: 980px;
}

.pe-enquiry-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 10px 40px rgba(15, 23, 42, 0.08);
    padding: 34px 38px 30px;
}

.pe-enquiry-head {
    text-align: center;
    margin-bottom: 28px;
}

.pe-enquiry-head__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px 24px;
    flex-wrap: wrap;
    margin-top: 4px;
}

.pe-enquiry-head__desc {
    margin: 0;
    flex: 1 1 260px;
    text-align: left;
    font-size: 14px;
    line-height: 1.55;
    color: #64748b;
}

.pe-lang-switch {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 8px 10px;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    flex: 0 0 auto;
}

.pe-lang-switch__label {
    font-size: 13px;
    font-weight: 600;
    color: #475569;
    margin-right: 4px;
}

.pe-lang-option {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 !important;
    padding: 8px 12px;
    border: 1px solid #dbe4ef;
    border-radius: 999px;
    background: #fff;
    font-size: 13px;
    font-weight: 600;
    color: #334155;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.pe-lang-option:has(input:checked) {
    border-color: #0ea5e9;
    background: #f0f9ff;
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.12);
}

.pe-form label.pe-lang-option input[type="checkbox"] {
    width: 16px !important;
    height: 16px !important;
    min-width: 16px;
    margin: 0 !important;
    padding: 0 !important;
    accent-color: #0ea5e9;
}

.pe-enquiry-head__title {
    margin: 0 0 8px;
    font-size: clamp(1.45rem, 3vw, 1.85rem);
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em;
    text-transform: none !important;
}

.pe-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 18px;
}

.pe-field label,
.pe-field-label {
    display: block;
    margin: 0 0 6px;
    font-size: 12px;
    line-height: 1.35;
    font-weight: 600;
    color: #334155;
}

.pe-label-hi {
    display: block;
    margin-top: 2px;
    font-size: 12px;
    font-weight: 500;
    color: #64748b;
}

.pe-field--full {
    grid-column: 1 / -1;
}

.pe-radio-group,
.pe-radio-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 14px;
}

.pe-inline-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px 16px;
}

.pe-inline-question .pe-field-label {
    margin: 0;
    flex: 0 1 auto;
}

.pe-radio-group--inline {
    flex: 0 0 auto;
    flex-wrap: nowrap;
    gap: 8px 10px;
}

.pe-radio-group--inline .pe-radio-option {
    padding: 8px 12px;
    white-space: nowrap;
}

.pe-radio-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 12px;
}

.pe-radio-option {
    display: inline-flex;
    align-items: flex-start;
    gap: 8px;
    margin: 0 !important;
    padding: 10px 12px;
    border: 1px solid #dbe4ef;
    border-radius: 10px;
    background: #fff;
    font-size: 13px;
    font-weight: 500;
    color: #334155;
    line-height: 1.4;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.pe-radio-option:has(input:checked) {
    border-color: #38bdf8;
    box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.12);
}

.pe-form label.pe-radio-option input[type="radio"] {
    width: 16px !important;
    height: 16px !important;
    min-width: 16px;
    margin: 2px 0 0 !important;
    padding: 0 !important;
    flex-shrink: 0;
    accent-color: #0ea5e9;
}

.pe-industry-other-wrap,
.pe-turnover-other-wrap {
    margin-top: 12px;
}

.pe-consent-block {
    margin-top: 8px;
    margin-bottom: 4px;
}

.pe-req {
    color: #ef4444;
}

.pe-input-wrap {
    position: relative;
}

.pe-input-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 15px;
    line-height: 1;
    pointer-events: none;
    z-index: 1;
}

.pe-form .pe-input-wrap input:not([type="checkbox"]):not([type="radio"]),
.pe-form .pe-input-wrap select {
    width: 100%;
    height: 44px;
    padding: 0 14px 0 42px;
    border: 1px solid #dbe4ef;
    border-radius: 10px;
    font-size: 14px;
    color: #0f172a;
    background: #fff;
    box-shadow: none !important;
    margin: 0 !important;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.pe-form .pe-input-wrap select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2394a3b8' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

.pe-form .pe-input-wrap input::placeholder {
    color: #94a3b8;
}

.pe-form .pe-input-wrap input:focus,
.pe-form .pe-input-wrap select:focus {
    outline: none;
    border-color: #38bdf8;
    box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.15) !important;
}

.pe-form-hint {
    margin: 14px 0 0;
    font-size: 12px;
    color: #64748b;
}

.pe-email-verify-row,
.pe-email-otp-row {
    display: flex;
    align-items: stretch;
    gap: 10px;
}

.pe-email-verify-row__input,
.pe-email-otp-row__input {
    flex: 1 1 auto;
    min-width: 0;
}

.pe-otp-send,
.pe-otp-verify,
.pe-otp-resend {
    flex: 0 0 auto;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    background: #ffffff;
    color: #0f172a;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
    padding: 0 14px;
    min-height: 46px;
    cursor: pointer;
    white-space: nowrap;
}

.pe-otp-send,
.pe-otp-verify {
    background: #0f8f5f;
    border-color: #0f8f5f;
    color: #ffffff;
}

.pe-otp-send:hover:not(:disabled),
.pe-otp-verify:hover:not(:disabled) {
    background: #0b7450;
    border-color: #0b7450;
}

.pe-otp-send:disabled,
.pe-otp-verify:disabled,
.pe-otp-resend:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}

.pe-email-otp-panel {
    margin-top: 12px;
}

.pe-email-otp-panel__label {
    display: block;
    margin: 0 0 8px;
    font-size: 12px;
    font-weight: 700;
    color: #475569;
}

.pe-otp-status {
    margin: 10px 0 0;
    font-size: 12px;
    line-height: 1.5;
    color: #64748b;
}

.pe-otp-status.is-success {
    color: #047857;
}

.pe-otp-status.is-error {
    color: #b91c1c;
}

.pe-otp-status.is-info {
    color: #0369a1;
}

.pe-form .pe-input-wrap input.is-verified {
    border-color: #10b981;
    background: #f0fdf4;
}

.pe-form-checks {
    display: grid;
    gap: 10px;
    margin: 18px 0 6px;
}

.pe-form label.dealer-check,
.pe-form label.dealer-consent,
.pe-form label.pe-consent {
    display: flex !important;
    align-items: flex-start;
    gap: 10px;
    margin: 0 !important;
    font-size: 13px;
    font-weight: 500;
    color: #334155;
    cursor: pointer;
}

.pe-form label.dealer-check input[type="checkbox"],
.pe-form label.dealer-consent input[type="checkbox"],
.pe-form label.pe-consent input[type="checkbox"] {
    width: 18px !important;
    height: 18px !important;
    min-width: 18px;
    margin: 2px 0 0 !important;
    padding: 0 !important;
    accent-color: #0ea5e9;
}

.pe-consent {
    margin: 16px 0 18px !important;
}

.pe-form__recaptcha {
    margin: 0 0 16px;
    display: flex;
    justify-content: center;
}

.pe-form-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 4px;
}

.pe-preview-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    min-height: 52px;
    padding: 0 18px;
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    background: #fff;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}

.pe-preview-btn:hover {
    border-color: #38bdf8;
    box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.12);
    transform: translateY(-1px);
}

.pe-preview-modal {
    position: fixed;
    inset: 0;
    z-index: 10020;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.pe-preview-modal[hidden] {
    display: none !important;
}

.pe-preview-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.55);
}

.pe-preview-modal__dialog {
    position: relative;
    width: min(720px, 100%);
    max-height: min(86vh, 900px);
    overflow: auto;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.22);
    padding: 24px 24px 20px;
}

.pe-preview-modal__title {
    margin: 0 0 6px;
    font-size: 1.35rem;
    font-weight: 800;
    color: #0f172a;
}

.pe-preview-modal__desc {
    margin: 0 0 18px;
    font-size: 14px;
    line-height: 1.5;
    color: #64748b;
}

.pe-preview-list {
    margin: 0 0 20px;
    display: grid;
    grid-template-columns: minmax(140px, 38%) 1fr;
    gap: 10px 16px;
}

.pe-preview-list__label {
    margin: 0;
    font-size: 12px;
    font-weight: 700;
    color: #475569;
}

.pe-preview-list__value {
    margin: 0;
    font-size: 14px;
    line-height: 1.45;
    color: #0f172a;
    word-break: break-word;
}

.pe-preview-modal__actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.pe-preview-back,
.pe-preview-confirm {
    min-height: 48px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
}

.pe-preview-back {
    border: 1px solid #cbd5e1;
    background: #fff;
    color: #0f172a;
}

.pe-preview-confirm {
    border: 0;
    background: linear-gradient(90deg, #f7d154 0%, #e8943a 100%);
    color: #111827;
    box-shadow: 0 8px 20px rgba(232, 148, 58, 0.25);
}

body.pe-preview-open {
    overflow: hidden;
}

.pe-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    height: 52px;
    border: 0;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    color: #111827;
    background: linear-gradient(90deg, #f7d154 0%, #e8943a 100%);
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.2s ease;
    box-shadow: 0 8px 20px rgba(232, 148, 58, 0.25);
}

.pe-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(232, 148, 58, 0.32);
}

.pe-submit .fa {
    font-size: 18px;
}

.pe-legal {
    margin: 14px 0 0;
    text-align: center;
    font-size: 12px;
    line-height: 1.5;
    color: #64748b;
}

.pe-legal a {
    color: #2563eb;
    text-decoration: underline;
}

.pe-honeypot {
    position: absolute;
    left: -9999px;
    width: 0;
    height: 0;
    opacity: 0;
}

@media (max-width: 767px) {
    body.dealer-template #page-content.sf-page {
        padding: 24px 0 48px;
    }

    .pe-enquiry-card {
        padding: 24px 18px 22px;
        border-radius: 14px;
    }

    .pe-enquiry-head__row {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .pe-enquiry-head__desc {
        text-align: center;
    }

    .pe-lang-switch {
        justify-content: center;
    }

    .pe-form-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .pe-radio-grid {
        grid-template-columns: 1fr;
    }

    .pe-inline-question {
        flex-direction: column;
        align-items: flex-start;
    }

    .pe-radio-group--inline {
        flex-wrap: wrap;
        width: 100%;
    }

    .pe-form-actions,
    .pe-preview-modal__actions {
        grid-template-columns: 1fr;
    }

    .pe-email-verify-row,
    .pe-email-otp-row {
        flex-direction: column;
    }

    .pe-otp-send,
    .pe-otp-verify,
    .pe-otp-resend {
        width: 100%;
    }

    .pe-preview-list {
        grid-template-columns: 1fr;
        gap: 4px 0;
    }

    .pe-preview-list__label {
        margin-top: 8px;
    }
}

