/* =========================================
   MAILANGKAWI
   REVIEW YOUR REQUEST
========================================= */

#ml-review {
    --ml-dark-blue: #0756A5;
    --ml-blue: #00AEEF;
    --ml-turquoise: #08B7B7;
    --ml-green: #168A3D;
    --ml-orange: #F6A500;

    --ml-text: #1f2937;
    --ml-muted: #6b7280;
    --ml-line: #e5e7eb;
    --ml-light: #f7f9fc;
    --ml-white: #ffffff;

    width: 100%;
    max-width: 920px;

    margin: 0 auto;
    padding: 10px 0 30px;

    color: var(--ml-text);

    box-sizing: border-box;
}


/* =========================================
   HEADER
========================================= */

#ml-review .ml-review-header {
    margin-bottom: 22px;
}


#ml-review .ml-brand {
    display: flex;
    align-items: center;

    gap: 20px;

    padding: 22px 24px;

    background: rgba(255,255,255,0.94);

    border: 1px solid rgba(7,86,165,0.12);

    border-radius: 16px;

    box-shadow:
        0 8px 30px rgba(7,86,165,0.08);
}


#ml-review .ml-review-logo {
    display: block;

    width: 180px;
    max-width: 32%;

    height: auto;

    object-fit: contain;
}


#ml-review .ml-brand-text {
    flex: 1;
    min-width: 0;
}


#ml-review .ml-step-badge {
    display: inline-block;

    margin-bottom: 7px;

    padding: 5px 10px;

    border-radius: 30px;

    background: rgba(0,174,239,0.10);

    color: var(--ml-dark-blue);

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 0.3px;
}


#ml-review .ml-brand h2 {
    margin: 0;

    color: var(--ml-dark-blue);

    font-size: 27px;
    line-height: 1.2;
}


#ml-review .ml-brand p {
    margin: 7px 0 0;

    color: var(--ml-muted);

    font-size: 14px;
    line-height: 1.6;
}


/* =========================================
   MAIN CARDS
========================================= */

#ml-review .ml-review-card {
    margin-bottom: 16px;

    padding: 22px;

    background: rgba(255,255,255,0.96);

    border: 1px solid rgba(7,86,165,0.10);

    border-radius: 16px;

    box-shadow:
        0 6px 24px rgba(31,41,55,0.06);
}


/* =========================================
   SECTION HEADER
========================================= */

#ml-review .ml-section-head {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 15px;

    margin-bottom: 18px;
}


#ml-review .ml-section-head > div {
    display: flex;

    align-items: center;

    gap: 10px;
}


#ml-review .ml-section-number {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 30px;
    height: 30px;

    flex: 0 0 30px;

    border-radius: 50%;

    background: var(--ml-dark-blue);

    color: #fff;

    font-size: 11px;
    font-weight: 700;
}


#ml-review .ml-section-head h3 {
    margin: 0;

    color: var(--ml-dark-blue);

    font-size: 19px;
    line-height: 1.3;
}


#ml-review .ml-section-status {
    padding: 5px 10px;

    border-radius: 20px;

    background: #f1f5f9;

    color: var(--ml-muted);

    font-size: 11px;
    font-weight: 600;
}


/* =========================================
   CUSTOMER INFORMATION
========================================= */

#ml-review .ml-info-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 12px;
}


#ml-review .ml-info-item {
    padding: 14px 15px;

    background: var(--ml-light);

    border: 1px solid #edf0f4;

    border-radius: 10px;

    min-width: 0;
}


#ml-review .ml-info-label {
    display: block;

    margin-bottom: 5px;

    color: var(--ml-muted);

    font-size: 12px;
}


#ml-review .ml-info-item strong {
    display: block;

    color: var(--ml-text);

    font-size: 14px;
    font-weight: 600;

    line-height: 1.5;

    overflow-wrap: anywhere;
}


/* =========================================
   SHOPPING CATEGORY
========================================= */

#ml-review .ml-highlight-row {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 13px 16px;

    margin-bottom: 16px;

    background: rgba(0,174,239,0.07);

    border-left: 4px solid var(--ml-blue);

    border-radius: 8px;
}


#ml-review .ml-highlight-row span {
    color: var(--ml-muted);

    font-size: 13px;
}


#ml-review .ml-highlight-row strong {
    color: var(--ml-dark-blue);

    text-align: right;

    font-size: 14px;
}


/* =========================================
   PRODUCTS
========================================= */

#ml-review .ml-products {
    display: grid;

    gap: 12px;
}


#ml-review .ml-product {
    padding: 17px;

    margin: 0;

    background: #f8fafc;

    border: 1px solid #e9eef4;

    border-radius: 12px;
}


#ml-review .ml-product h4 {
    display: inline-flex;

    align-items: center;

    margin: 0 0 13px;

    padding: 5px 11px;

    background: rgba(7,86,165,0.09);

    border-radius: 20px;

    color: var(--ml-dark-blue);

    font-size: 13px;
    font-weight: 700;
}


#ml-review .ml-product-row {
    display: grid;

    grid-template-columns:
        160px minmax(0, 1fr);

    gap: 15px;

    padding: 9px 0;

    border-bottom: 1px solid #e5e7eb;
}


#ml-review .ml-product-row:last-child {
    border-bottom: 0;
}


#ml-review .ml-product-row > span {
    color: var(--ml-muted);

    font-size: 12px;
}


#ml-review .ml-product-row > strong {
    color: var(--ml-text);

    font-size: 13px;
    font-weight: 600;

    overflow-wrap: anywhere;
}


/* =========================================
   IMAGE THUMBNAILS
========================================= */

#ml-review .ml-product-images-row {
    align-items: start;
}


#ml-review .ml-product-image-grid {
    display: flex;

    flex-wrap: wrap;

    gap: 10px;
}


#ml-review .ml-product-image-link {
    display: block;

    position: relative;

    width: 92px;
    height: 92px;

    overflow: hidden;

    border: 1px solid #dce3ea;

    border-radius: 10px;

    background: #fff;

    line-height: 0;
}


#ml-review .ml-product-image-link::after {
    content: "View";

    position: absolute;

    right: 5px;
    bottom: 5px;

    padding: 3px 6px;

    border-radius: 10px;

    background: rgba(0,0,0,0.65);

    color: white;

    font-size: 9px;
    line-height: 1.2;
}


#ml-review .ml-product-thumb {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.2s ease;
}


@media (hover: hover) {

    #ml-review
    .ml-product-image-link:hover
    .ml-product-thumb {

        transform: scale(1.05);
    }

}


/* =========================================
   SHOPPING TYPE
========================================= */

#ml-review .ml-service-summary {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr) auto;

    gap: 15px;

    align-items: stretch;
}


#ml-review .ml-service-type {
    padding: 15px;

    background: var(--ml-light);

    border-radius: 10px;
}


#ml-review .ml-service-type strong {
    display: block;

    margin-top: 5px;

    color: var(--ml-dark-blue);

    font-size: 16px;
}


#ml-review .ml-fee-box {
    display: flex;

    flex-direction: column;

    justify-content: center;

    min-width: 160px;

    padding: 14px 18px;

    border-radius: 10px;

    background: rgba(246,165,0,0.12);

    border: 1px solid rgba(246,165,0,0.30);
}


#ml-review .ml-fee-box span {
    margin-bottom: 3px;

    color: #78610a;

    font-size: 11px;
}


#ml-review .ml-fee-box strong {
    color: #9a6400;

    font-size: 20px;
}


/* =========================================
   DELIVERY
========================================= */

#ml-review .ml-delivery-method {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 15px;

    padding: 13px 16px;

    margin-bottom: 14px;

    background: rgba(8,183,183,0.08);

    border-left: 4px solid var(--ml-turquoise);

    border-radius: 8px;
}


#ml-review .ml-delivery-method span {
    color: var(--ml-muted);

    font-size: 12px;
}


#ml-review .ml-delivery-method strong {
    color: var(--ml-dark-blue);

    text-align: right;

    font-size: 14px;
}


#ml-review .ml-delivery-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 12px;
}


#ml-review .ml-full-width {
    grid-column: 1 / -1;
}


/* =========================================
   FINAL NOTE
========================================= */

#ml-review .ml-review-note {
    display: flex;

    align-items: flex-start;

    gap: 12px;

    padding: 16px 18px;

    background: rgba(22,138,61,0.08);

    border: 1px solid rgba(22,138,61,0.18);

    border-radius: 12px;
}


#ml-review .ml-note-icon {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 28px;
    height: 28px;

    flex: 0 0 28px;

    border-radius: 50%;

    background: var(--ml-green);

    color: #fff;

    font-size: 14px;
    font-weight: 700;
}


#ml-review .ml-review-note strong {
    display: block;

    margin-bottom: 3px;

    color: var(--ml-green);

    font-size: 14px;
}


#ml-review .ml-review-note p {
    margin: 0;

    color: var(--ml-muted);

    font-size: 12px;
    line-height: 1.5;
}


/* =========================================
   TABLET
========================================= */

@media
(min-width: 768px)
and
(max-width: 980px) {

    #ml-review {
        max-width: 100%;
    }

    #ml-review .ml-info-grid {
        grid-template-columns:
            repeat(2, minmax(0,1fr));
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    #ml-review {
        width: 100%;

        padding-left: 0;
        padding-right: 0;
    }


    #ml-review .ml-brand {
        display: block;

        padding: 18px;

        text-align: center;
    }


    #ml-review .ml-review-logo {
        width: 170px;
        max-width: 70%;

        margin:
            0 auto 14px;
    }


    #ml-review .ml-brand h2 {
        font-size: 23px;
    }


    #ml-review .ml-brand p {
        font-size: 12px;
    }


    #ml-review .ml-review-card {
        padding: 16px;

        border-radius: 13px;
    }


    #ml-review .ml-section-head h3 {
        font-size: 17px;
    }


    #ml-review .ml-section-status {
        display: none;
    }


    #ml-review .ml-info-grid,
    #ml-review .ml-delivery-grid,
    #ml-review .ml-service-summary {
        grid-template-columns: 1fr;
    }


    #ml-review .ml-highlight-row,
    #ml-review .ml-delivery-method {
        display: block;
    }


    #ml-review .ml-highlight-row strong,
    #ml-review .ml-delivery-method strong {
        display: block;

        margin-top: 5px;

        text-align: left;
    }


    #ml-review .ml-product-row {
        grid-template-columns: 1fr;

        gap: 4px;

        padding: 9px 0;
    }


    #ml-review .ml-product-image-link {
        width: 78px;
        height: 78px;
    }


    #ml-review .ml-fee-box {
        min-width: 0;
    }


    #ml-review .ml-full-width {
        grid-column: auto;
    }

}