/* MOOB product long description styling */
.product.info.detailed .data.item.content .moob-long-description,
.product.info.detailed .moob-long-description {
    --moob-desc-blue: #0b3155;
    --moob-desc-orange: #f45112;
    --moob-desc-text: #44586a;
    --moob-desc-muted: #5f7081;
    --moob-desc-border: #dce5ed;
    width: 100%;
    max-width: 1180px;
    margin: 16px 0 22px;
    padding: 20px;
    box-sizing: border-box;
    border: 1px solid var(--moob-desc-border);
    border-radius: 8px;
    background: #f8fbfd;
    box-shadow: 0 6px 18px rgba(11, 49, 85, 0.06);
    color: var(--moob-desc-text);
    font-family: Montserrat, Arial, sans-serif;
}

.product.info.detailed .moob-long-description-intro p,
.product.info.detailed .moob-long-description p {
    margin: 0 0 10px;
    color: var(--moob-desc-text);
    font-size: 15px;
    line-height: 1.7;
    font-weight: 500;
}

.product.info.detailed .moob-long-description-intro p:last-child,
.product.info.detailed .moob-long-description p:last-child {
    margin-bottom: 0;
}

.product.info.detailed .moob-long-description-section {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid #e2ebf1;
}

.product.info.detailed .moob-long-description-section h3 {
    margin: 0 0 14px;
    color: var(--moob-desc-blue);
    font-size: 22px;
    line-height: 1.3;
    font-weight: 900;
    text-transform: none;
}

.product.info.detailed .moob-long-description-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.product.info.detailed .moob-long-description-list li {
    position: relative;
    margin: 0;
    padding: 12px 14px 12px 34px;
    box-sizing: border-box;
    border: 1px solid #e1eaf0;
    border-radius: 6px;
    background: #ffffff;
    color: var(--moob-desc-muted);
    font-size: 14px;
    line-height: 1.6;
    font-weight: 500;
}

.product.info.detailed .moob-long-description-list li:before {
    content: "";
    position: absolute;
    left: 14px;
    top: 20px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--moob-desc-orange);
}

.product.info.detailed .moob-long-description-list strong {
    color: var(--moob-desc-blue);
    font-weight: 900;
}

@media (max-width: 767px) {
    .product.info.detailed .data.item.content .moob-long-description,
    .product.info.detailed .moob-long-description {
        margin: 12px 0 18px;
        padding: 14px;
    }

    .product.info.detailed .moob-long-description-section h3 {
        font-size: 18px;
    }

    .product.info.detailed .moob-long-description-list {
        grid-template-columns: 1fr;
    }
}

/* MOOB product short description styling */
.product.info.detailed .data.item.content .moob-short-description,
.product.info.detailed .moob-short-description {
    --moob-short-blue: #0b3155;
    --moob-short-orange: #f45112;
    --moob-short-text: #44586a;
    --moob-short-border: #dce5ed;
    width: 100%;
    max-width: 1180px;
    margin: 14px 0 20px;
    padding: 16px;
    box-sizing: border-box;
    border: 1px solid var(--moob-short-border);
    border-radius: 8px;
    background: #f8fbfd;
    box-shadow: 0 6px 18px rgba(11, 49, 85, 0.05);
    color: var(--moob-short-text);
    font-family: Montserrat, Arial, sans-serif;
}

.product.info.detailed .data.item.content .moob-short-description ul,
.product.info.detailed .moob-short-description ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.product.info.detailed .data.item.content .moob-short-description li,
.product.info.detailed .moob-short-description li {
    position: relative;
    margin: 0;
    padding: 12px 14px 12px 38px;
    box-sizing: border-box;
    border: 1px solid #e1eaf0;
    border-radius: 6px;
    background: #ffffff;
    color: var(--moob-short-text);
    font-size: 14px;
    line-height: 1.55;
    font-weight: 600;
}

.product.info.detailed .data.item.content .moob-short-description li:before,
.product.info.detailed .moob-short-description li:before {
    content: "";
    position: absolute;
    left: 14px;
    top: 18px;
    width: 10px;
    height: 10px;
    box-sizing: border-box;
    border: 2px solid var(--moob-short-orange);
    border-radius: 50%;
    background: #ffffff;
}

.product.info.detailed .data.item.content .moob-short-description li:first-child,
.product.info.detailed .moob-short-description li:first-child {
    grid-column: 1 / -1;
    border-color: #ffd8ca;
    background: #fff8f5;
    color: var(--moob-short-blue);
    font-weight: 800;
}

@media (max-width: 767px) {
    .product.info.detailed .data.item.content .moob-short-description,
    .product.info.detailed .moob-short-description {
        margin: 12px 0 18px;
        padding: 12px;
    }

    .product.info.detailed .data.item.content .moob-short-description ul,
    .product.info.detailed .moob-short-description ul {
        grid-template-columns: 1fr;
    }
}
