/*
|--------------------------------------------------------------------------
| ASIA LABEX
| Exhibitor Product List
|--------------------------------------------------------------------------
*/


/* =========================================================
   MAIN WRAPPER
========================================================= */

.asia-labex-epl {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 20px 60px;
    box-sizing: border-box;
}


/* =========================================================
   PAGE HEADER
========================================================= */

.asia-labex-epl-header {
    margin-bottom: 38px;

    padding: 34px 38px;

    border-radius: 18px;

    background: linear-gradient(
        135deg,
        #f8fafc 0%,
        #ffffff 55%,
        #f8fafc 100%
    );

    border: 1px solid #e5e7eb;

    box-sizing: border-box;
}


.asia-labex-epl-header-content {
    max-width: 850px;
}


.asia-labex-epl-eyebrow {
    display: inline-block;

    margin-bottom: 10px;

    color: #64748b;

    font-size: 12px;
    line-height: 1.4;

    font-weight: 700;

    letter-spacing: 0.14em;
}


.asia-labex-epl-header h1 {
    margin: 0 0 12px;

    color: #0f172a;

    font-size: 36px;
    line-height: 1.15;

    font-weight: 750;

    letter-spacing: -0.02em;
}


.asia-labex-epl-header p {
    max-width: 760px;

    margin: 0;

    color: #64748b;

    font-size: 17px;
    line-height: 1.65;
}

/* =========================================================
   EXHIBITOR GRID
========================================================= */

.asia-labex-epl-grid {
    display: grid;

    /*
     * Desktop:
     * Exactly 4 cards per row
     */

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 24px;

    width: 100%;
}


/* =========================================================
   COMPANY CARD
========================================================= */

.asia-labex-epl-card {
    display: flex;
    flex-direction: column;

    min-width: 0;

    background: #ffffff;

    border: 1px solid #e5e7eb;
    border-radius: 16px;

    overflow: hidden;

    box-shadow:
        0 4px 18px rgba(15, 23, 42, 0.06);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease;
}


.asia-labex-epl-card:hover {
    transform: translateY(-3px);

    border-color: #d1d5db;

    box-shadow:
        0 12px 30px rgba(15, 23, 42, 0.10);
}


/* =========================================================
   COMPANY LOGO AREA
========================================================= */

.asia-labex-epl-card-logo {
    width: 100%;
    height: 150px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 18px;

    box-sizing: border-box;

    background: #ffffff;

    border-bottom: 1px solid #f1f5f9;

    overflow: hidden;
}


.asia-labex-epl-card-logo img {
    display: block;

    width: auto;
    height: auto;

    max-width: 125px;
    max-height: 125px;

    object-fit: contain;

    flex-shrink: 0;
}


.asia-labex-epl-card-logo-placeholder {
    width: 82px;
    height: 82px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;

    background: #f1f5f9;

    color: #334155;

    font-size: 22px;
    font-weight: 700;
}


/* =========================================================
   CARD CONTENT
========================================================= */

.asia-labex-epl-card-content {
    flex: 1;

    display: flex;
    flex-direction: column;

    padding: 20px 20px 16px;

    box-sizing: border-box;
}


/* =========================================================
   COMPANY NAME
========================================================= */

.asia-labex-epl-card-company {
    margin: 0;

    color: #0f172a;

    font-size: 18px;
    line-height: 1.35;

    font-weight: 700;

    overflow-wrap: anywhere;
}


/* =========================================================
   COUNTRY
========================================================= */

.asia-labex-epl-card-country {
    margin-top: 7px;

    color: #64748b;

    font-size: 14px;
    line-height: 1.5;
}


/* =========================================================
   CATEGORIES
========================================================= */

.asia-labex-epl-card-categories {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 4px;

    margin-top: 15px;

    min-height: 22px;
}


.asia-labex-epl-category {
    color: #334155;

    font-size: 12px;
    line-height: 1.4;

    font-weight: 500;
}


.asia-labex-epl-category-separator {
    color: #94a3b8;

    font-size: 12px;

    user-select: none;
}


/* =========================================================
   CARD ACTION
========================================================= */

.asia-labex-epl-card-action {
    padding: 0 20px 20px;

    margin-top: auto;
}


.asia-labex-epl-view-products {
    width: 100%;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 44px;

    padding: 10px 16px;

    border: 0;
    border-radius: 9px;

    background: #0f172a;

    color: #ffffff;

    font-family: inherit;
    font-size: 14px;
    font-weight: 600;

    line-height: 1.3;

    cursor: pointer;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}


.asia-labex-epl-view-products:hover {
    background: #1e293b;

    transform: translateY(-1px);
}


.asia-labex-epl-view-products:focus-visible {
    outline: 3px solid rgba(15, 23, 42, 0.18);
    outline-offset: 2px;
}


/* =========================================================
   EMPTY STATE
========================================================= */

.asia-labex-epl-empty {
    padding: 50px 30px;

    text-align: center;

    border: 1px solid #e5e7eb;
    border-radius: 16px;

    background: #ffffff;
}


.asia-labex-epl-empty h2 {
    margin: 0 0 8px;

    color: #0f172a;

    font-size: 22px;
}


.asia-labex-epl-empty p {
    margin: 0;

    color: #64748b;

    font-size: 15px;
}


/* =========================================================
   RESPONSIVE — LAPTOP
========================================================= */

@media (max-width: 1200px) {

    .asia-labex-epl-grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));

        gap: 20px;
    }

}


/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 850px) {

    .asia-labex-epl {
        padding-left: 16px;
        padding-right: 16px;
    }


    .asia-labex-epl-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 18px;
    }


    .asia-labex-epl-header h1 {
        font-size: 30px;
    }

}


/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 560px) {

    .asia-labex-epl {
        padding-left: 12px;
        padding-right: 12px;
    }


    .asia-labex-epl-grid {
        grid-template-columns: 1fr;

        gap: 16px;
    }


    .asia-labex-epl-card-logo {
        height: 165px;
    }


    .asia-labex-epl-header h1 {
        font-size: 27px;
    }


    .asia-labex-epl-header p {
        font-size: 14px;
    }

}

/* =========================================================
   COMPANY PRODUCT MODAL
========================================================= */

.asia-labex-epl-company-modal {
    position: fixed;

    inset: 0;

    z-index: 999999;

    display: none;

    align-items: center;
    justify-content: center;

    padding: 30px;

    box-sizing: border-box;
}


.asia-labex-epl-company-modal.is-open {
    display: flex;
}


/* =========================================================
   MODAL OVERLAY
========================================================= */

.asia-labex-epl-modal-overlay {
    position: absolute;

    inset: 0;

    background: rgba(15, 23, 42, 0.68);

    backdrop-filter: blur(4px);
}


/* =========================================================
   MODAL CONTAINER
========================================================= */

.asia-labex-epl-modal-container {
    position: relative;

    z-index: 2;

    width: 100%;
    max-width: 1180px;

    max-height: calc(100vh - 60px);

    overflow-y: auto;

    background: #ffffff;

    border-radius: 20px;

    box-shadow:
        0 30px 80px rgba(15, 23, 42, 0.25);

    box-sizing: border-box;

    scrollbar-width: thin;
}


/* =========================================================
   CLOSE BUTTON
========================================================= */

.asia-labex-epl-modal-close {
    position: absolute;

    top: 18px;
    right: 18px;

    z-index: 10;

    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 0;
    border-radius: 50%;

    background: #f1f5f9;

    color: #0f172a;

    font-family: inherit;

    font-size: 27px;
    line-height: 1;

    cursor: pointer;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}


.asia-labex-epl-modal-close:hover {
    background: #e2e8f0;

    transform: rotate(3deg);
}


.asia-labex-epl-modal-close:focus-visible {
    outline: 3px solid rgba(15, 23, 42, 0.2);

    outline-offset: 2px;
}


/* =========================================================
   COMPANY HEADER
========================================================= */

.asia-labex-epl-modal-company-header {
    display: flex;
    align-items: center;

    gap: 24px;

    padding: 34px 70px 30px 34px;

    border-bottom: 1px solid #e5e7eb;
}


.asia-labex-epl-modal-logo {
    width: 110px;
    height: 110px;

    flex: 0 0 110px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 10px;

    border: 1px solid #e5e7eb;
    border-radius: 14px;

    background: #ffffff;

    box-sizing: border-box;
}


.asia-labex-epl-modal-logo img {
    width: 100%;
    height: 100%;

    object-fit: contain;
}


.asia-labex-epl-modal-logo-placeholder {
    width: 75px;
    height: 75px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: #f1f5f9;

    color: #334155;

    font-size: 20px;
    font-weight: 700;
}


.asia-labex-epl-modal-company-info {
    min-width: 0;
}


.asia-labex-epl-modal-company-info h2 {
    margin: 0;

    color: #0f172a;

    font-size: 28px;
    line-height: 1.25;

    font-weight: 750;
}


.asia-labex-epl-modal-country {
    margin-top: 7px;

    color: #64748b;

    font-size: 15px;
}


.asia-labex-epl-modal-website {
    display: inline-block;

    margin-top: 12px;

    color: #0f172a;

    font-size: 14px;
    font-weight: 600;

    text-decoration: underline;
    text-underline-offset: 3px;
}


/* =========================================================
   COMPANY DETAILS
========================================================= */

.asia-labex-epl-modal-details {
    padding: 30px 34px 0;
}


.asia-labex-epl-modal-section {
    margin-bottom: 26px;
}


.asia-labex-epl-modal-section h3 {
    margin: 0 0 9px;

    color: #0f172a;

    font-size: 18px;
    line-height: 1.4;

    font-weight: 700;
}


.asia-labex-epl-modal-section p {
    max-width: 900px;

    margin: 0;

    color: #475569;

    font-size: 15px;
    line-height: 1.7;
}


/* =========================================================
   TAGS
========================================================= */

.asia-labex-epl-modal-tags {
    display: flex;

    flex-wrap: wrap;

    gap: 8px;
}


.asia-labex-epl-modal-tags span {
    display: inline-flex;

    align-items: center;

    min-height: 30px;

    padding: 5px 11px;

    border: 1px solid #e2e8f0;
    border-radius: 999px;

    background: #f8fafc;

    color: #334155;

    font-size: 12px;
    font-weight: 600;
}


/* =========================================================
   PRODUCTS SECTION
========================================================= */

.asia-labex-epl-modal-products-section {
    padding: 10px 34px 34px;
}


.asia-labex-epl-modal-products-heading {
    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 20px;

    margin-bottom: 20px;

    padding-top: 12px;

    border-top: 1px solid #e5e7eb;
}


.asia-labex-epl-modal-eyebrow {
    display: block;

    margin-bottom: 5px;

    color: #64748b;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 0.14em;
}


.asia-labex-epl-modal-products-heading h3 {
    margin: 0;

    color: #0f172a;

    font-size: 22px;
    line-height: 1.35;

    font-weight: 700;
}


.asia-labex-epl-product-count {
    flex-shrink: 0;

    color: #64748b;

    font-size: 13px;
    font-weight: 600;
}


/* =========================================================
   PRODUCTS GRID
========================================================= */

.asia-labex-epl-products-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 18px;
}


/* =========================================================
   PRODUCT CARD
========================================================= */

.asia-labex-epl-product-card {
    display: flex;

    flex-direction: column;

    min-width: 0;

    overflow: hidden;

    border: 1px solid #e5e7eb;

    border-radius: 14px;

    background: #ffffff;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}


.asia-labex-epl-product-card:hover {
    transform: translateY(-2px);

    box-shadow:
        0 10px 25px rgba(15, 23, 42, 0.08);
}


/* =========================================================
   PRODUCT IMAGE
========================================================= */

.asia-labex-epl-product-image {
    width: 100%;

    aspect-ratio: 1 / 1;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 14px;

    box-sizing: border-box;

    background: #ffffff;

    border-bottom: 1px solid #f1f5f9;
}


.asia-labex-epl-product-image img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    display: block;
}


.asia-labex-epl-product-image-placeholder {
    color: #94a3b8;

    font-size: 13px;
}


/* =========================================================
   PRODUCT CONTENT
========================================================= */

.asia-labex-epl-product-content {
    display: flex;

    flex-direction: column;

    flex: 1;

    padding: 15px;
}


.asia-labex-epl-product-name {
    margin: 0;

    color: #0f172a;

    font-size: 16px;

    line-height: 1.4;

    font-weight: 700;
}


.asia-labex-epl-product-code {
    margin-top: 7px;

    color: #64748b;

    font-size: 11px;

    line-height: 1.5;

    overflow-wrap: anywhere;
}


.asia-labex-epl-product-code strong {
    color: #475569;

    font-weight: 600;
}


.asia-labex-epl-product-number {
    margin-top: 3px;

    color: #94a3b8;

    font-size: 11px;
}


/* =========================================================
   PRODUCT ENQUIRY BUTTON
========================================================= */

.asia-labex-epl-product-enquire {
    width: 100%;

    min-height: 40px;

    margin-top: 15px;

    padding: 9px 12px;

    border: 1px solid #0f172a;

    border-radius: 8px;

    background: #0f172a;

    color: #ffffff;

    font-family: inherit;

    font-size: 13px;

    font-weight: 600;

    cursor: pointer;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}


.asia-labex-epl-product-enquire:hover {
    background: #1e293b;

    transform: translateY(-1px);
}


/* =========================================================
   NO PRODUCTS
========================================================= */

.asia-labex-epl-no-products {
    padding: 30px;

    text-align: center;

    border: 1px dashed #cbd5e1;

    border-radius: 12px;

    background: #f8fafc;
}


.asia-labex-epl-no-products p {
    margin: 0;

    color: #64748b;

    font-size: 14px;
}


/* =========================================================
   RESPONSIVE — PRODUCT GRID
========================================================= */

@media (max-width: 1050px) {

    .asia-labex-epl-products-grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }

}


@media (max-width: 780px) {

    .asia-labex-epl-company-modal {
        padding: 15px;
    }


    .asia-labex-epl-modal-container {
        max-height: calc(100vh - 30px);

        border-radius: 16px;
    }


    .asia-labex-epl-modal-company-header {
        padding: 28px 55px 24px 24px;

        gap: 16px;
    }


    .asia-labex-epl-modal-logo {
        width: 85px;
        height: 85px;

        flex-basis: 85px;
    }


    .asia-labex-epl-modal-company-info h2 {
        font-size: 22px;
    }


    .asia-labex-epl-modal-details {
        padding: 25px 24px 0;
    }


    .asia-labex-epl-modal-products-section {
        padding: 10px 24px 25px;
    }


    .asia-labex-epl-products-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}


@media (max-width: 520px) {

    .asia-labex-epl-modal-company-header {
        align-items: flex-start;

        flex-direction: column;

        padding-top: 24px;
    }


    .asia-labex-epl-modal-logo {
        width: 90px;
        height: 90px;
    }


    .asia-labex-epl-modal-products-heading {
        align-items: flex-start;

        flex-direction: column;
    }


    .asia-labex-epl-products-grid {
        grid-template-columns: 1fr;
    }

}

/* =========================================================
   PRODUCT ENQUIRY MODAL
========================================================= */

.asia-labex-epl-enquiry-modal {
    position: fixed;

    inset: 0;

    z-index: 1000000;

    display: none;

    align-items: center;
    justify-content: center;

    padding: 20px;

    box-sizing: border-box;
}


.asia-labex-epl-enquiry-modal.is-open {
    display: flex;
}


/* =========================================================
   OVERLAY
========================================================= */

.asia-labex-epl-enquiry-overlay {
    position: absolute;

    inset: 0;

    background: rgba(15, 23, 42, 0.72);

    backdrop-filter: blur(5px);
}


/* =========================================================
   CONTAINER
========================================================= */

.asia-labex-epl-enquiry-container {
    position: relative;

    z-index: 2;

    width: 100%;

    max-width: 570px;

    max-height: calc(100vh - 40px);

    overflow-y: auto;

    padding: 32px;

    box-sizing: border-box;

    border-radius: 18px;

    background: #ffffff;

    box-shadow:
        0 30px 80px rgba(15, 23, 42, 0.30);
}


/* =========================================================
   CLOSE
========================================================= */

.asia-labex-epl-enquiry-close {
    position: absolute;

    top: 16px;
    right: 16px;

    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 0;

    border-radius: 50%;

    background: #f1f5f9;

    color: #0f172a;

    font-family: inherit;

    font-size: 26px;

    line-height: 1;

    cursor: pointer;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}


.asia-labex-epl-enquiry-close:hover {
    background: #e2e8f0;

    transform: rotate(3deg);
}


/* =========================================================
   HEADER
========================================================= */

.asia-labex-epl-enquiry-header {
    padding-right: 45px;

    margin-bottom: 22px;
}


.asia-labex-epl-enquiry-eyebrow {
    display: block;

    margin-bottom: 7px;

    color: #64748b;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 0.14em;
}


.asia-labex-epl-enquiry-header h2 {
    margin: 0 0 8px;

    color: #0f172a;

    font-size: 25px;

    line-height: 1.3;

    font-weight: 700;
}


.asia-labex-epl-enquiry-header p {
    margin: 0;

    color: #64748b;

    font-size: 14px;

    line-height: 1.6;
}


/* =========================================================
   SELECTED PRODUCT
========================================================= */

.asia-labex-epl-enquiry-product {
    margin-bottom: 24px;

    padding: 16px;

    border: 1px solid #e2e8f0;

    border-radius: 12px;

    background: #f8fafc;
}


.asia-labex-epl-enquiry-product-label {
    margin-bottom: 5px;

    color: #64748b;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 0.12em;
}


.asia-labex-epl-enquiry-product-name {
    color: #0f172a;

    font-size: 18px;

    line-height: 1.4;

    font-weight: 700;
}


.asia-labex-epl-enquiry-product-company {
    margin-top: 4px;

    color: #475569;

    font-size: 13px;
}


.asia-labex-epl-enquiry-product-code {
    margin-top: 6px;

    color: #94a3b8;

    font-size: 11px;

    font-weight: 600;
}


/* =========================================================
   FORM
========================================================= */

.asia-labex-epl-enquiry-form {
    display: flex;

    flex-direction: column;

    gap: 16px;
}


.asia-labex-epl-enquiry-field {
    display: flex;

    flex-direction: column;

    gap: 7px;
}


.asia-labex-epl-enquiry-field label {
    color: #334155;

    font-size: 13px;

    line-height: 1.4;

    font-weight: 600;
}


.asia-labex-epl-enquiry-field label span {
    color: #dc2626;
}


.asia-labex-epl-enquiry-field input {
    width: 100%;

    min-height: 45px;

    padding: 11px 13px;

    box-sizing: border-box;

    border: 1px solid #cbd5e1;

    border-radius: 8px;

    background: #ffffff;

    color: #0f172a;

    font-family: inherit;

    font-size: 14px;

    line-height: 1.4;

    outline: none;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}


.asia-labex-epl-enquiry-field input:focus {
    border-color: #64748b;

    box-shadow:
        0 0 0 3px rgba(100, 116, 139, 0.12);
}


.asia-labex-epl-enquiry-field input::placeholder {
    color: #94a3b8;
}


/* =========================================================
   MESSAGES
========================================================= */

.asia-labex-epl-enquiry-message {
    display: none;

    padding: 12px 14px;

    border-radius: 8px;

    font-size: 13px;

    line-height: 1.5;
}


.asia-labex-epl-enquiry-message.is-visible {
    display: block;
}


.asia-labex-epl-enquiry-error {
    border: 1px solid #fecaca;

    background: #fef2f2;

    color: #b91c1c;
}


.asia-labex-epl-enquiry-success {
    border: 1px solid #bbf7d0;

    background: #f0fdf4;

    color: #166534;
}


/* =========================================================
   SUBMIT
========================================================= */

.asia-labex-epl-enquiry-submit {
    width: 100%;

    min-height: 46px;

    margin-top: 2px;

    padding: 11px 18px;

    border: 0;

    border-radius: 9px;

    background: #0f172a;

    color: #ffffff;

    font-family: inherit;

    font-size: 14px;

    font-weight: 600;

    cursor: pointer;

    transition:
        background 0.2s ease,
        transform 0.2s ease,
        opacity 0.2s ease;
}


.asia-labex-epl-enquiry-submit:hover {
    background: #1e293b;

    transform: translateY(-1px);
}


.asia-labex-epl-enquiry-submit:disabled {
    opacity: 0.6;

    cursor: wait;

    transform: none;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .asia-labex-epl-enquiry-modal {
        padding: 12px;
    }


    .asia-labex-epl-enquiry-container {
        max-height: calc(100vh - 24px);

        padding: 24px 20px;

        border-radius: 15px;
    }


    .asia-labex-epl-enquiry-header h2 {
        font-size: 22px;
    }

}

/* =========================================================
   ENQUIRY SUCCESS SCREEN
========================================================= */

.asia-labex-epl-enquiry-success-screen {
    display: none;

    text-align: center;

    padding: 45px 20px 30px;
}


.asia-labex-epl-enquiry-success-screen.is-visible {
    display: block;
}


/* =========================================================
   SUCCESS ICON
========================================================= */

.asia-labex-epl-enquiry-success-icon {
    width: 92px;
    height: 92px;

    margin: 0 auto 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #ecfdf3;

    color: #16a34a;
}


.asia-labex-epl-enquiry-success-icon svg {
    width: 62px;
    height: 62px;
}


/* =========================================================
   SUCCESS HEADING
========================================================= */

.asia-labex-epl-enquiry-success-screen h2 {
    margin: 0 0 12px;

    color: #0f172a;

    font-size: 27px;

    line-height: 1.3;

    font-weight: 700;
}


/* =========================================================
   SUCCESS TEXT
========================================================= */

.asia-labex-epl-enquiry-success-screen p {
    max-width: 390px;

    margin: 0 auto 28px;

    color: #64748b;

    font-size: 15px;

    line-height: 1.7;
}


/* =========================================================
   DONE BUTTON
========================================================= */

.asia-labex-epl-enquiry-success-done {
    min-width: 130px;

    min-height: 44px;

    padding: 10px 22px;

    border: 0;

    border-radius: 8px;

    background: #0f172a;

    color: #ffffff;

    font-family: inherit;

    font-size: 14px;

    font-weight: 600;

    cursor: pointer;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}


.asia-labex-epl-enquiry-success-done:hover {
    background: #1e293b;

    transform: translateY(-1px);
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .asia-labex-epl-enquiry-success-screen {
        padding: 35px 12px 20px;
    }


    .asia-labex-epl-enquiry-success-icon {
        width: 80px;
        height: 80px;
    }


    .asia-labex-epl-enquiry-success-icon svg {
        width: 54px;
        height: 54px;
    }


    .asia-labex-epl-enquiry-success-screen h2 {
        font-size: 23px;
    }

}

/* =========================================================
   SEARCH + A-Z DIRECTORY CONTROLS
========================================================= */

.asia-labex-epl-directory-controls {
    position: relative;

    width: 100%;

    margin: 0 0 28px;

    padding: 20px 24px;

    box-sizing: border-box;

    background:
        linear-gradient(
            145deg,
            #ffffff 0%,
            #fbfcfe 100%
        );

    border: 1px solid #e6eaf0;

    border-radius: 16px;

    box-shadow:
        0 8px 28px rgba(15, 23, 42, 0.04);
}


/* =========================================================
   COMPACT DIRECTORY LAYOUT
========================================================= */

.asia-labex-epl-directory-controls-inner {
    display: grid;

    grid-template-columns:
        minmax(300px, 0.32fr)
        minmax(0, 0.68fr);

    align-items: center;

    gap: 28px;
}


/* =========================================================
   SEARCH
========================================================= */

.asia-labex-epl-search {
    width: 100%;
}


.asia-labex-epl-search-label {
    display: block;

    margin: 0 0 8px;

    color: #172033;

    font-family: inherit;

    font-size: 13px;

    line-height: 1.4;

    font-weight: 700;
}


.asia-labex-epl-search-box {
    position: relative;

    display: flex;

    align-items: center;

    width: 100%;

    min-width: 0;
}


/* =========================================================
   SEARCH ICON
========================================================= */

.asia-labex-epl-search-icon {
    position: absolute;

    left: 15px;

    top: 50%;

    z-index: 2;

    width: 19px;
    height: 19px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #64748b;

    transform: translateY(-50%);

    pointer-events: none;
}


.asia-labex-epl-search-icon svg {
    display: block;

    width: 18px;
    height: 18px;
}


/* =========================================================
   SEARCH INPUT
========================================================= */

.asia-labex-epl-search-input {
    width: 100% !important;

    min-width: 0;

    height: 48px !important;

    margin: 0 !important;

    padding:
        0 46px 0 44px !important;

    box-sizing: border-box;

    border:
        1px solid #d9e0e8 !important;

    border-radius: 10px !important;

    outline: none !important;

    background: #ffffff !important;

    color: #172033 !important;

    font-family: inherit !important;

    font-size: 14px !important;

    font-weight: 500;

    line-height: 48px !important;

    box-shadow:
        0 2px 7px rgba(15, 23, 42, 0.025) !important;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease !important;

    appearance: none;

    -webkit-appearance: none;
}


.asia-labex-epl-search-input:hover {
    border-color: #cbd5e1 !important;
}


.asia-labex-epl-search-input:focus {
    border-color: #94a3b8 !important;

    box-shadow:
        0 0 0 3px rgba(15, 23, 42, 0.055),
        0 4px 12px rgba(15, 23, 42, 0.035) !important;
}


.asia-labex-epl-search-input::placeholder {
    color: #94a3b8 !important;

    opacity: 1;
}


/* =========================================================
   CLEAR BUTTON
========================================================= */

.asia-labex-epl-search-clear {
    position: absolute;

    top: 50%;
    right: 9px;

    z-index: 3;

    width: 30px !important;
    height: 30px !important;

    min-width: 30px !important;
    min-height: 30px !important;

    margin: 0 !important;
    padding: 0 !important;

    display: flex !important;

    align-items: center;
    justify-content: center;

    border: 0 !important;

    border-radius: 7px !important;

    background: #f1f5f9 !important;

    color: #64748b !important;

    font-family: Arial, sans-serif !important;

    font-size: 17px !important;

    line-height: 1 !important;

    cursor: pointer;

    transform: translateY(-50%);

    transition:
        background 0.18s ease,
        color 0.18s ease !important;

    box-shadow: none !important;
}


.asia-labex-epl-search-clear:hover {
    background: #e2e8f0 !important;

    color: #172033 !important;
}


.asia-labex-epl-search-clear[hidden] {
    display: none !important;
}


/* =========================================================
   ALPHABET
========================================================= */

.asia-labex-epl-alphabet {
    width: 100%;

    margin: 0;
}


.asia-labex-epl-alphabet-header {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 15px;

    margin: 0 0 8px;
}


.asia-labex-epl-alphabet-header > span:first-child {
    color: #172033;

    font-family: inherit;

    font-size: 13px;

    line-height: 1.4;

    font-weight: 700;
}


.asia-labex-epl-result-count {
    color: #7b8798;

    font-family: inherit;

    font-size: 12px;

    font-weight: 500;

    white-space: nowrap;
}


/* =========================================================
   A-Z BUTTON LIST
========================================================= */

.asia-labex-epl-alphabet-list {
    display: flex;

    align-items: center;

    justify-content: flex-end;

    flex-wrap: wrap;

    gap: 5px;
}


/* =========================================================
   A-Z BUTTONS
========================================================= */

.asia-labex-epl-letter {
    width: 29px !important;
    min-width: 29px !important;

    height: 32px !important;
    min-height: 32px !important;

    margin: 0 !important;
    padding: 0 !important;

    display: inline-flex !important;

    align-items: center;
    justify-content: center;

    box-sizing: border-box;

    border:
        1px solid #dce3eb !important;

    border-radius: 7px !important;

    background: #ffffff !important;

    color: #536174 !important;

    font-family: inherit !important;

    font-size: 12px !important;

    font-weight: 650 !important;

    line-height: 1 !important;

    text-align: center;

    cursor: pointer;

    box-shadow:
        0 1px 2px rgba(15, 23, 42, 0.02) !important;

    transition:
        color 0.18s ease,
        background 0.18s ease,
        border-color 0.18s ease,
        box-shadow 0.18s ease,
        transform 0.18s ease !important;

    appearance: none !important;

    -webkit-appearance: none !important;
}


.asia-labex-epl-letter:hover {
    border-color: #b8c3d1 !important;

    background: #f8fafc !important;

    color: #172033 !important;

    box-shadow:
        0 4px 10px rgba(15, 23, 42, 0.06) !important;

    transform: translateY(-1px);
}


.asia-labex-epl-letter:focus-visible {
    outline:
        2px solid rgba(15, 23, 42, 0.16) !important;

    outline-offset: 2px;
}


/* =========================================================
   ACTIVE ALL
========================================================= */

.asia-labex-epl-letter.is-active {
    border-color: #172033 !important;

    background: #172033 !important;

    color: #ffffff !important;

    box-shadow:
        0 4px 12px rgba(15, 23, 42, 0.13) !important;
}


.asia-labex-epl-letter.is-active:hover {
    border-color: #172033 !important;

    background: #172033 !important;

    color: #ffffff !important;

    transform: none;
}


/* =========================================================
   FILTERED CARDS
========================================================= */

.asia-labex-epl-card.is-filtered {
    display: none !important;
}


/* =========================================================
   NO RESULTS
========================================================= */

.asia-labex-epl-no-results {
    margin-top: 20px;

    padding: 55px 25px;

    text-align: center;

    border:
        1px solid #e5e9ef;

    border-radius: 16px;

    background:
        linear-gradient(
            145deg,
            #ffffff 0%,
            #fafbfc 100%
        );

    box-shadow:
        0 8px 28px rgba(15, 23, 42, 0.035);
}


.asia-labex-epl-no-results[hidden] {
    display: none !important;
}


.asia-labex-epl-no-results-icon {
    width: 44px;
    height: 44px;

    margin: 0 auto 14px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 11px;

    background: #f1f5f9;

    color: #64748b;

    font-size: 20px;
}


.asia-labex-epl-no-results h2 {
    margin: 0 0 7px;

    color: #172033;

    font-family: inherit;

    font-size: 20px;

    line-height: 1.35;

    font-weight: 700;
}


.asia-labex-epl-no-results p {
    max-width: 520px;

    margin: 0 auto;

    color: #718096;

    font-family: inherit;

    font-size: 14px;

    line-height: 1.6;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .asia-labex-epl-directory-controls-inner {
        grid-template-columns: 1fr;

        gap: 20px;
    }


    .asia-labex-epl-alphabet-list {
        justify-content: flex-start;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 560px) {

    .asia-labex-epl-directory-controls {
        margin-bottom: 22px;

        padding: 17px 15px;

        border-radius: 14px;
    }


    .asia-labex-epl-directory-controls-inner {
        gap: 17px;
    }


    .asia-labex-epl-search-input {
        height: 46px !important;

        padding-left: 42px !important;

        font-size: 13px !important;

        line-height: 46px !important;
    }


    .asia-labex-epl-search-icon {
        left: 13px;
    }


    .asia-labex-epl-search-clear {
        right: 8px;
    }


    .asia-labex-epl-alphabet-header {
        align-items: flex-start;

        flex-direction: column;

        gap: 4px;

        margin-bottom: 8px;
    }


    .asia-labex-epl-alphabet-list {
        justify-content: flex-start;

        gap: 5px;
    }


    .asia-labex-epl-letter {
        width: 31px !important;

        min-width: 31px !important;

        height: 31px !important;
    }

}

/* =========================================================
   80 / 20 PRODUCT DIRECTORY LAYOUT
========================================================= */

.asia-labex-epl-layout {
    display: grid;

    grid-template-columns:
        minmax(0, 4fr)
        minmax(270px, 1fr);

    gap: 24px;

    align-items: start;

    width: 100%;
}


/* =========================================================
   LEFT MAIN CONTENT
========================================================= */

.asia-labex-epl-main {
    min-width: 0;
    width: 100%;
}


/* =========================================================
   COMPACT MAIN CONTENT WHEN 80/20 SIDEBAR IS PRESENT
========================================================= */

.asia-labex-epl-main .asia-labex-epl-header {
    padding: 26px 28px;
    margin-bottom: 25px;
}

.asia-labex-epl-main .asia-labex-epl-header h1 {
    font-size: 30px;
}

.asia-labex-epl-main .asia-labex-epl-header p {
    font-size: 15px;
}


/* =========================================================
   COMPACT COMPANY GRID
========================================================= */

.asia-labex-epl-main .asia-labex-epl-grid {
    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 16px;
}


/* =========================================================
   COMPACT COMPANY CARD
========================================================= */

.asia-labex-epl-main .asia-labex-epl-card-logo {
    height: 115px;
    padding: 12px;
}

.asia-labex-epl-main .asia-labex-epl-card-logo img {
    max-width: 95px;
    max-height: 95px;
}

.asia-labex-epl-main .asia-labex-epl-card-content {
    padding: 14px 15px 12px;
}

.asia-labex-epl-main .asia-labex-epl-card-company {
    font-size: 16px;
}

.asia-labex-epl-main .asia-labex-epl-card-country {
    margin-top: 5px;
    font-size: 12px;
}

.asia-labex-epl-main .asia-labex-epl-card-categories {
    margin-top: 10px;
    gap: 3px;
}

.asia-labex-epl-main .asia-labex-epl-category {
    font-size: 11px;
}

.asia-labex-epl-main .asia-labex-epl-card-action {
    padding: 0 15px 15px;
}

.asia-labex-epl-main .asia-labex-epl-view-products {
    min-height: 38px;
    padding: 8px 12px;
    font-size: 12px;
}


/* =========================================================
   URGENT SIDEBAR
========================================================= */

.asia-labex-epl-urgent-wrapper {
    position: sticky;

    top: 90px;

    align-self: start;

    min-width: 0;

    width: 100%;
}


/* =========================================================
   URGENT CARD
========================================================= */

.asia-labex-epl-urgent-card {
    width: 100%;

    box-sizing: border-box;

    padding: 18px;

    background: #ffffff;

    border: 1px solid #e2e8f0;

    border-radius: 14px;

    box-shadow:
        0 6px 24px rgba(15, 23, 42, 0.08);
}


/* =========================================================
   URGENT HEADER
========================================================= */

.asia-labex-epl-urgent-header {
    margin-bottom: 15px;
}

.asia-labex-epl-urgent-eyebrow {
    display: block;

    margin-bottom: 5px;

    color: #64748b;

    font-size: 9px;

    line-height: 1.4;

    font-weight: 800;

    letter-spacing: 0.13em;
}

.asia-labex-epl-urgent-header h2 {
    margin: 0;

    color: #0f172a;

    font-size: 19px;

    line-height: 1.25;

    font-weight: 750;
}

.asia-labex-epl-urgent-header p {
    margin: 6px 0 0;

    color: #64748b;

    font-size: 11px;

    line-height: 1.5;
}


/* =========================================================
   URGENT FORM
========================================================= */

.asia-labex-epl-urgent-form {
    display: flex;

    flex-direction: column;

    gap: 9px;
}


/* =========================================================
   URGENT FIELD
========================================================= */

.asia-labex-epl-urgent-field {
    width: 100%;
}

.asia-labex-epl-urgent-field label {
    display: block;

    margin-bottom: 4px;

    color: #334155;

    font-size: 11px;

    line-height: 1.3;

    font-weight: 650;
}

.asia-labex-epl-urgent-field label span {
    color: #dc2626;
}

.asia-labex-epl-urgent-field input {
    width: 100%;

    min-height: 35px;

    padding: 8px 9px;

    box-sizing: border-box;

    border: 1px solid #dbe2ea;

    border-radius: 7px;

    background: #ffffff;

    color: #0f172a;

    font-family: inherit;

    font-size: 11px;

    line-height: 1.3;

    outline: none;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.asia-labex-epl-urgent-field input::placeholder {
    color: #94a3b8;
}

.asia-labex-epl-urgent-field input:focus {
    border-color: #64748b;

    box-shadow:
        0 0 0 3px rgba(100, 116, 139, 0.10);
}


/* =========================================================
   URGENT MESSAGES
========================================================= */

.asia-labex-epl-urgent-message {
    display: none;

    padding: 8px 9px;

    border-radius: 7px;

    font-size: 10px;

    line-height: 1.4;
}

.asia-labex-epl-urgent-message.is-visible {
    display: block;
}

.asia-labex-epl-urgent-error {
    background: #fef2f2;

    border: 1px solid #fecaca;

    color: #b91c1c;
}

.asia-labex-epl-urgent-success {
    background: #f0fdf4;

    border: 1px solid #bbf7d0;

    color: #166534;
}


/* =========================================================
   URGENT SUBMIT
========================================================= */

.asia-labex-epl-urgent-submit {
    width: 100%;

    min-height: 38px;

    margin-top: 3px;

    padding: 8px 12px;

    border: 0;

    border-radius: 7px;

    background: #0f172a;

    color: #ffffff;

    font-family: inherit;

    font-size: 11px;

    font-weight: 700;

    line-height: 1.3;

    cursor: pointer;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.asia-labex-epl-urgent-submit:hover {
    background: #1e293b;

    transform: translateY(-1px);
}

.asia-labex-epl-urgent-submit:disabled {
    opacity: 0.65;

    cursor: not-allowed;

    transform: none;
}


/* =========================================================
   80% AREA — LAPTOP
========================================================= */

@media (max-width: 1200px) {

    .asia-labex-epl-layout {
        grid-template-columns:
            minmax(0, 3.4fr)
            minmax(250px, 1fr);

        gap: 18px;
    }

    .asia-labex-epl-main .asia-labex-epl-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 850px) {

    .asia-labex-epl-layout {
        grid-template-columns: 1fr;

        gap: 24px;
    }

    .asia-labex-epl-urgent-wrapper {
        position: static;

        width: 100%;
    }

    .asia-labex-epl-urgent-card {
        max-width: none;
    }

    .asia-labex-epl-main .asia-labex-epl-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 560px) {

    .asia-labex-epl-layout {
        display: block;
    }

    .asia-labex-epl-urgent-wrapper {
        position: static;

        margin-top: 22px;
    }

    .asia-labex-epl-main .asia-labex-epl-grid {
        grid-template-columns: 1fr;
    }

    .asia-labex-epl-main .asia-labex-epl-header {
        padding: 22px 20px;
    }

    .asia-labex-epl-main .asia-labex-epl-header h1 {
        font-size: 26px;
    }

    .asia-labex-epl-urgent-card {
        padding: 16px;
    }

}