/* ==========================================================
   MEDILEAF PRODUCT VIEW
========================================================== */

:root {
    --ml-pv-green: #31a050;
    --ml-pv-dark: #173d24;
    --ml-pv-lime: #a6ce39;
    --ml-pv-bg: #f7faf5;
    --ml-pv-border: #dfe9df;
    --ml-pv-muted: #667085;
    --ml-pv-white: #ffffff;
}

.ml-product-view {
    padding: 40px 0 84px;
    background: var(--ml-pv-bg);
}

.ml-product-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
    font-size: 14px;
}

.ml-product-breadcrumb a {
    color: var(--ml-pv-green);
    font-weight: 700;
    text-decoration: none;
    transition: color 0.2s ease;
}

.ml-product-breadcrumb a:hover {
    color: var(--ml-pv-dark);
}

.ml-product-breadcrumb span {
    color: #98a2b3;
}

.ml-product-breadcrumb strong {
    color: var(--ml-pv-dark);
}

.ml-product-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(380px, 0.82fr);
    gap: 34px;
    align-items: stretch;
}

.ml-product-gallery-shell {
    display: grid;
    grid-template-columns: 106px minmax(0, 1fr);
    gap: 18px;
    height: 100%;
}

.ml-product-angle-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 640px;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
}

.ml-product-angle-thumb {
    width: 100%;
    padding: 8px;
    border: 1px solid var(--ml-pv-border);
    border-radius: 18px;
    background: var(--ml-pv-white);
    cursor: pointer;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.ml-product-angle-thumb img {
    display: block;
    width: 100%;
    height: 74px;
    border-radius: 12px;
    background: #f9fbf8;
    object-fit: contain;
}

.ml-product-angle-thumb span {
    display: block;
    margin-top: 7px;
    color: var(--ml-pv-muted);
    font-size: 11px;
    font-weight: 700;
    line-height: 1.25;
    text-align: center;
}

.ml-product-angle-thumb:hover {
    transform: translateY(-2px);
    border-color: rgba(49, 160, 80, 0.45);
}

.ml-product-angle-thumb.active {
    border-color: var(--ml-pv-green);
    box-shadow: 0 10px 26px rgba(49, 160, 80, 0.13);
}

.ml-product-main-stage {
    position: relative;
    min-height: 640px;
    height: 100%;
    padding: 42px;
    border: 1px solid rgba(49, 160, 80, 0.10);
    border-radius: 32px;
    background:
        radial-gradient(circle at 50% 30%, rgba(166, 206, 57, 0.18), transparent 45%),
        linear-gradient(145deg, #f1f8ee, #ffffff);
    box-shadow: 0 18px 45px rgba(31, 45, 34, 0.08);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ml-product-main-image {
    width: 100%;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ml-product-main-image img {
    display: block;
    width: 100%;
    max-height: 520px;
    object-fit: contain;
    transition: opacity 0.22s ease, transform 0.22s ease;
}

.ml-product-main-image img.is-switching {
    opacity: 0;
    transform: scale(0.985);
}

.ml-product-badge {
    position: absolute;
    top: 22px;
    left: 22px;
    z-index: 3;
    padding: 9px 16px;
    border-radius: 999px;
    background: var(--ml-pv-green);
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
}

.ml-product-image-nav {
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid rgba(49, 160, 80, 0.12);
    border-radius: 50%;
    background: linear-gradient(135deg, #31a050, #7ed13f);
    color: var(--ml-pv-white);
    transform: translateY(-50%);
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(31, 45, 34, 0.10);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ml-product-image-nav:hover {
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 14px 28px rgba(31, 45, 34, 0.16);
}

.ml-product-image-nav.prev {
    left: 18px;
}

.ml-product-image-nav.next {
    right: 18px;
}

.ml-product-image-caption {
    position: absolute;
    left: 24px;
    bottom: 22px;
    max-width: calc(100% - 48px);
    padding: 8px 13px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--ml-pv-dark);
    font-size: 12px;
    font-weight: 800;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.ml-product-info {
    position: sticky;
    top: 24px;
    align-self: start;
    padding: 38px;
    border: 1px solid rgba(49, 160, 80, 0.08);
    border-radius: 30px;
    background: var(--ml-pv-white);
    box-shadow: 0 18px 45px rgba(31, 45, 34, 0.08);
}

.ml-product-category {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--ml-pv-green);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.ml-product-info h1 {
    margin: 0 0 18px;
    color: var(--ml-pv-dark);
    font-size: clamp(28px, 3vw, 35px);
    font-weight: 700;
    line-height: 1.08;
}

.ml-product-stock {
    margin-bottom: 22px;
}

.ml-stock-badge {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    padding: 9px 15px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
}

.ml-stock-badge.in-stock {
    background: #e8f8ed;
    color: #168b4b;
}

.ml-stock-badge.low-stock {
    background: #fff5df;
    color: #168b4b;
}

.ml-stock-badge.out-stock {
    background: #ffecec;
    color: #d92d20;
}

.ml-stock-badge i {
    font-size: 15px;
}

.ml-low-stock-message {
    padding-left: 9px;
    border-left: 1px solid rgba(213, 127, 0, 0.30);
    color: #d97706;
    font-size: 13px;
    font-weight: 700;
}

.ml-product-price {
    margin: 0 0 18px;
    color: var(--ml-pv-dark);
    font-size: 25px;
    font-weight: 500;
}

.ml-product-price strong {
    font-weight: 800;
}

.ml-product-short p {
    margin: 0;
    color: #56615a;
    font-size: 16px;
    line-height: 1.75;
}

.ml-see-full-desc {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    margin-left: 4px;
    color: var(--ml-pv-green);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}

.ml-see-full-desc:hover {
    color: var(--ml-pv-green);
    text-decoration: underline;
}

.ml-see-full-desc i {
    font-size: 16px;
}

.ml-product-colour-control {
    margin: 24px 0;
}

.ml-color-label,
.ml-quantity-label {
    display: block;
    margin-bottom: 9px;
    color: var(--ml-pv-dark);
    font-size: 14px;
    font-weight: 800;
}

.ml-custom-select {
    position: relative;
}

.ml-custom-select-trigger {
    width: 100%;
    height: 58px;
    padding: 0 18px;
    border: 1px solid var(--ml-pv-green);
    border-radius: 17px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: var(--ml-pv-dark);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
}

.ml-custom-select-trigger i {
    transition: transform 0.22s ease;
}

.ml-custom-select.open .ml-custom-select-trigger i {
    transform: rotate(180deg);
}

.ml-selected-colour-wrap {
    min-width: 0;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.ml-color-dot,
.color-circle {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    border: 1px solid rgba(0, 0, 0, 0.10);
    border-radius: 50%;
}

.ml-custom-options {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    z-index: 40;
    display: none;
    max-height: 310px;
    padding: 8px;
    border: 1px solid var(--ml-pv-border);
    border-radius: 18px;
    background: #ffffff;
    overflow-y: auto;
    box-shadow: 0 18px 42px rgba(31, 45, 34, 0.16);
}

.ml-custom-select.open .ml-custom-options {
    display: block;
}

.ml-custom-option {
    width: 100%;
    min-height: 50px;
    padding: 9px 12px;
    border: 0;
    border-radius: 13px;
    background: transparent;
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr) 38px;
    gap: 10px;
    align-items: center;
    color: var(--ml-pv-dark);
    font-size: 14px;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
}

.ml-custom-option:hover,
.ml-custom-option.active {
    background: rgba(49, 160, 80, 0.08);
}

.ml-custom-option img {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: #f8fbf7;
    object-fit: contain;
}

.ml-available-colours {
    margin-top: 18px;
}

.ml-available-colours-title {
    display: block;
    margin-bottom: 11px;
    color: var(--ml-pv-dark);
    font-size: 13px;
    font-weight: 800;
}

.ml-colour-card-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.ml-colour-card {
    position: relative;
    min-width: 0;
    padding: 10px 8px 9px;
    border: 1px solid #e5ebe5;
    border-radius: 16px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    color: var(--ml-pv-dark);
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 8px 22px rgba(31, 45, 34, 0.05);
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.ml-colour-card:hover {
    transform: translateY(-2px);
    border-color: rgba(49, 160, 80, 0.45);
}

.ml-colour-card.active {
    border-color: var(--ml-pv-green);
    box-shadow: 0 10px 24px rgba(49, 160, 80, 0.13);
}

.ml-colour-card img {
    width: 72px;
    height: 84px;
    max-width: 100%;
    border-radius: 11px;
    background: #f8fbf7;
    object-fit: contain;
}

.ml-colour-card-check {
    position: absolute;
    top: 7px;
    right: 7px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--ml-pv-green);
    color: #ffffff;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 11px;
}

.ml-colour-card.active .ml-colour-card-check {
    display: flex;
}

.ml-product-purchase-box {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 12px;
}

.ml-product-qty {
    height: 56px;
    border: 1px solid var(--ml-pv-border);
    border-radius: 50px;
    display: grid;
    grid-template-columns: 44px 1fr 44px;
    overflow: hidden;
}

.ml-product-qty button {
    border: 0;
    background: transparent;
    color: var(--ml-pv-green);
    font-size: 20px;
    font-weight: 800;
    cursor: pointer;
}

.ml-product-qty button:hover {
    background: rgba(49, 160, 80, 0.06);
}

.ml-product-qty input {
    width: 100%;
    border: 0;
    outline: 0;
    color: var(--ml-pv-dark);
    font-weight: 800;
    text-align: center;
    -moz-appearance: textfield;
}

.ml-product-qty input::-webkit-inner-spin-button,
.ml-product-qty input::-webkit-outer-spin-button {
    margin: 0;
    -webkit-appearance: none;
}

.ml-product-add-btn {
    height: 56px;
    border: 0;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--ml-pv-green), var(--ml-pv-lime));
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.ml-product-add-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(49, 160, 80, 0.22);
}

.ml-product-add-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.ml-product-details {
    padding: 76px 0;
    background:
        linear-gradient(180deg, #f8fbf7 0%, #ffffff 180px);
}

.ml-product-description-box {
    position: relative;
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 52px 54px;
    border: 1px solid #dce9df;
    border-left: 4px solid var(--ml-pv-green);
    border-radius: 28px;
    background: #ffffff;
    box-shadow: 0 16px 42px rgba(23, 61, 36, 0.07);
    color: #56615a;
    overflow: hidden;
}

.ml-product-description-box h2 {
    margin: 0 0 28px;
    color: var(--ml-pv-dark);
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.ml-product-description-box h3 {
    margin: 42px 0 16px;
    color: var(--ml-pv-dark);
    font-size: 25px;
    font-weight: 800;
    line-height: 1.3;
}

.ml-product-description-box h4 {
    margin: 30px 0 13px;
    color: var(--ml-pv-dark);
    font-size: 19px;
    font-weight: 800;
    line-height: 1.35;
}

.ml-product-description-box p {
    margin: 0 0 17px;
    color: #56615a;
    font-size: 16px;
    line-height: 1.85;
}

.ml-product-description-box strong {
    color: var(--ml-pv-dark);
    font-weight: 800;
}

.ml-product-description-box table {
    width: 100%;
    margin: 28px 0 34px;
    border: 1px solid #dce9df;
    border-radius: 16px;
    border-spacing: 0;
    border-collapse: separate;
    table-layout: fixed;
    overflow: hidden;
    background: #ffffff;
    font-size: 15px;
    line-height: 1.55;
}

.ml-product-description-box table th,
.ml-product-description-box table td {
    padding: 15px 18px;
    border: 0;
    border-bottom: 1px solid #e6ece7;
    text-align: left;
    vertical-align: top;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: normal;
}

.ml-product-description-box table th:first-child,
.ml-product-description-box table td:first-child {
    width: 32%;
}

.ml-product-description-box table th:last-child,
.ml-product-description-box table td:last-child {
    width: 68%;
}

.ml-product-description-box table th {
    color: #ffffff;
    background: var(--ml-pv-dark);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.01em;
}

.ml-product-description-box table td {
    color: #344054;
    background: #ffffff;
}

.ml-product-description-box table tr:nth-child(even) td {
    background: #f9fbf9;
}

.ml-product-description-box table tr:hover td {
    background: #f1f8f0;
}

.ml-product-description-box table tr:last-child td {
    border-bottom: 0;
}

.ml-product-description-box table td:first-child {
    color: var(--ml-pv-dark);
    font-weight: 700;
}

/* ==========================================================
   LIST BULLETS — always on by default
   FIX: no more list-level on/off switch (that was the bug —
   it hid bullets for the WHOLE <ul>/<ol> the moment ANY table
   existed anywhere inside it). Bullets now stay on for every
   list unconditionally; only the one <li> that actually wraps
   a table/pre/heading loses its own marker, further down.

   ALIGNMENT FIX: padding-left reduced so the bullet marker
   sits directly under the heading's left edge instead of
   being pushed further right (was causing the heading and
   list to look "front/back" offset instead of lined up).
========================================================== */

.ml-product-description-box ul,
.ml-product-description-box ol {
    margin: 0 0 22px;
    padding-left: 20px;
}

.ml-product-description-box ul {
    list-style: disc;
}

.ml-product-description-box ol {
    list-style: decimal;
}

.ml-product-description-box li {
    margin: 16px 0;
    color: #56615a;
    font-size: 16px;
    line-height: 1.75;
}

.ml-product-description-box li::marker {
    color: var(--ml-pv-green);
}

.ml-product-description-box .table-responsive {
    width: 100%;
    margin: 28px 0 34px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.ml-product-description-box .table-responsive table {
    margin: 0;
    min-width: 650px;
}

.ml-product-description-box img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 26px auto;
    border-radius: 14px;
}

.ml-product-description-box blockquote {
    margin: 26px 0;
    padding: 18px 22px;
    border-left: 4px solid var(--ml-pv-green);
    border-radius: 0 12px 12px 0;
    background: #f5faf4;
    color: #56615a;
}

.ml-product-description-box hr {
    margin: 34px 0;
    border: 0;
    border-top: 1px solid #e3ebe3;
}

.ml-product-description-box> :first-child {
    margin-top: 0;
}

.ml-product-description-box> :last-child {
    margin-bottom: 0;
}

.ml-product-description-box pre {
    display: block;
    width: 100%;
    margin: 24px 0 30px;
    padding: 20px 22px;

    border: 1px solid #dce9df;
    border-left: 4px solid var(--ml-pv-green);
    border-radius: 14px;

    background: #f7faf7;
    color: #26382d;

    font-family:
        ui-monospace,
        SFMono-Regular,
        Menlo,
        Monaco,
        Consolas,
        "Liberation Mono",
        "Courier New",
        monospace;

    font-size: 14px;
    line-height: 1.75;

    white-space: pre-wrap;
    overflow-wrap: anywhere;
    word-break: break-word;

    overflow-x: auto;
    box-sizing: border-box;
}

/* ==========================================================
   REMOVE EDITOR BULLETS BEFORE BLOCK ELEMENTS
   Uses descendant selectors (no ">") so it also catches a
   table wrapped in .table-responsive or any other wrapper
   div inside an <li> — not just a direct/p child.
========================================================== */

.ml-product-description-box li:has(table),
.ml-product-description-box li:has(pre),
.ml-product-description-box li:has(h1),
.ml-product-description-box li:has(h2),
.ml-product-description-box li:has(h3),
.ml-product-description-box li:has(h4) {
    list-style: none;
    margin-left: 0;
    padding-left: 0;
}

.ml-product-description-box li:has(table)::marker,
.ml-product-description-box li:has(pre)::marker,
.ml-product-description-box li:has(h1)::marker,
.ml-product-description-box li:has(h2)::marker,
.ml-product-description-box li:has(h3)::marker,
.ml-product-description-box li:has(h4)::marker {
    content: "";
}

@media (max-width: 767.98px) {
    .ml-product-description-box {
        border-left-width: 3px;
    }

    .ml-product-description-box pre {
        padding: 16px 17px;
        font-size: 13px;
        line-height: 1.65;
        border-radius: 12px;
    }
}

@media (max-width: 767.98px) {
    .ml-product-details {
        padding: 58px 0;
    }

    .ml-product-description-box {
        padding: 34px 28px;
        border-radius: 24px;
    }

    .ml-product-description-box h2 {
        font-size: 29px;
    }

    .ml-product-description-box h3 {
        margin-top: 34px;
        font-size: 22px;
    }

    .ml-product-description-box p,
    .ml-product-description-box li {
        font-size: 15px;
        line-height: 1.75;
    }

    .ml-product-description-box table {
        min-width: 650px;
        font-size: 14px;
    }

    .ml-product-description-box table th,
    .ml-product-description-box table td {
        padding: 13px 14px;
    }
}

@media (max-width: 480px) {
    .ml-product-details {
        padding: 48px 0;
    }

    .ml-product-description-box {
        padding: 28px 20px;
        border-radius: 20px;
    }

    .ml-product-description-box h2 {
        font-size: 26px;
    }

    .ml-product-description-box h3 {
        font-size: 20px;
    }

    .ml-product-description-box h4 {
        font-size: 18px;
    }

    .ml-product-description-box ul,
    .ml-product-description-box ol {
        padding-left: 18px;
    }

    .ml-product-description-box table {
        min-width: 600px;
    }

    .ml-product-description-box table th,
    .ml-product-description-box table td {
        padding: 11px 12px;
    }
}

@media (max-width: 1199.98px) {
    .ml-product-layout {
        grid-template-columns: minmax(0, 1fr) minmax(340px, 0.85fr);
        gap: 26px;
    }

    .ml-product-main-stage {
        min-height: 560px;
        padding: 34px;
    }

    .ml-product-main-image {
        min-height: 450px;
    }

    .ml-product-main-image img {
        max-height: 450px;
    }

    .ml-product-info {
        padding: 30px;
    }
}

@media (max-width: 991.98px) {
    .ml-product-layout {
        grid-template-columns: 1fr;
    }

    .ml-product-info {
        position: static;
        padding: 30px;
    }

    .ml-product-gallery-shell {
        grid-template-columns: 92px minmax(0, 1fr);
    }

    .ml-product-main-stage {
        min-height: 540px;
    }

    .ml-product-main-image {
        min-height: 430px;
    }

    .ml-product-main-image img {
        max-height: 430px;
    }
}

@media (max-width: 767.98px) {
    .ml-product-view {
        padding: 40px 0 64px;
    }

    .ml-product-breadcrumb {
        margin-bottom: 22px;
        font-size: 13px;
    }

    .ml-product-gallery-shell {
        display: flex;
        flex-direction: column-reverse;
        gap: 14px;
    }

    .ml-product-angle-list {
        width: 100%;
        max-height: none;
        padding-bottom: 5px;
        flex-direction: row;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x proximity;
        -webkit-overflow-scrolling: touch;
    }

    .ml-product-angle-thumb {
        width: 86px;
        min-width: 86px;
        scroll-snap-align: start;
    }

    .ml-product-angle-thumb img {
        height: 62px;
    }

    .ml-product-main-stage {
        min-height: 420px;
        padding: 28px 24px;
        border-radius: 24px;
    }

    .ml-product-main-image {
        min-height: 340px;
    }

    .ml-product-main-image img {
        max-height: 340px;
    }

    .ml-product-info {
        padding: 26px 22px;
        border-radius: 24px;
    }

    .ml-colour-card-list {
        display: flex;
        overflow-x: auto;
        gap: 10px;
        padding-bottom: 6px;
        scroll-snap-type: x proximity;
        -webkit-overflow-scrolling: touch;
    }

    .ml-colour-card {
        width: 104px;
        min-width: 104px;
        scroll-snap-align: start;
    }

    .ml-product-purchase-box {
        grid-template-columns: 1fr;
    }

    .ml-product-details {
        padding: 54px 0;
    }

    .ml-product-description-box {
        padding: 30px 24px;
        border-radius: 24px;
    }
}

@media (max-width: 480px) {
    .ml-product-view {
        padding: 30px 0 52px;
    }

    .ml-product-main-stage {
        min-height: 360px;
        padding: 24px 18px;
    }

    .ml-product-main-image {
        min-height: 290px;
    }

    .ml-product-main-image img {
        max-height: 290px;
    }

    .ml-product-image-nav {
        width: 38px;
        height: 38px;
    }

    .ml-product-image-nav.prev {
        left: 10px;
    }

    .ml-product-image-nav.next {
        right: 10px;
    }

    .ml-product-image-caption {
        left: 16px;
        bottom: 16px;
        max-width: calc(100% - 32px);
    }

    .ml-product-badge {
        top: 15px;
        left: 15px;
        padding: 7px 12px;
        font-size: 11px;
    }

    .ml-product-info {
        padding: 22px 18px;
        border-radius: 22px;
    }

    .ml-product-info h1 {
        font-size: 29px;
    }

    .ml-stock-badge {
        border-radius: 16px;
    }

    .ml-low-stock-message {
        width: 100%;
        margin-left: 23px;
        padding-left: 0;
        border-left: 0;
    }

    .ml-custom-select-trigger {
        height: 54px;
        border-radius: 15px;
    }

    .ml-product-qty,
    .ml-product-add-btn {
        height: 54px;
    }

    .ml-product-description-box {
        padding: 24px 18px;
    }
}

@media (max-width: 360px) {
    .ml-product-main-stage {
        min-height: 330px;
        padding: 20px 14px;
    }

    .ml-product-main-image {
        min-height: 260px;
    }

    .ml-product-main-image img {
        max-height: 260px;
    }

    .ml-product-angle-thumb {
        width: 78px;
        min-width: 78px;
    }

    .ml-product-angle-thumb img {
        height: 56px;
    }

    .ml-product-info {
        padding: 20px 16px;
    }

    .ml-product-info h1 {
        font-size: 26px;
    }

    .ml-product-short p {
        font-size: 15px;
    }
}