body.single-product .summary .julius-highlights {
    --julius-highlight-gold: #c7922e;
    --julius-highlight-gold-dark: #94651c;
    --julius-highlight-border: #e8e1d6;
    --julius-highlight-background: #fbfaf8;
    --julius-highlight-text: #27231e;

    display: block !important;
    width: 100% !important;
    margin: 18px 0 24px !important;
    padding: 0 !important;
    box-sizing: border-box;
}

/* Título */

body.single-product
.summary
.julius-highlights
.julius-highlights-title {
    display: block !important;
    width: 100% !important;
    margin: 0 0 10px !important;
    padding: 0 !important;

    color: #1e1b17;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: 0.055em;
    text-transform: uppercase;
}

/* Grelha que contém os seis destaques */

body.single-product
.summary
.julius-highlights
.julius-highlights-list {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 9px !important;

    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box;
}

/* Cada cartão */

body.single-product
.summary
.julius-highlights
.julius-highlights-list
.julius-highlight-item {
    display: flex !important;
    align-items: center !important;
    gap: 9px !important;

    width: auto !important;
    min-width: 0 !important;
    min-height: 56px;
    margin: 0 !important;
    padding: 10px 11px !important;
    box-sizing: border-box;

    background:
        linear-gradient(
            145deg,
            #ffffff 0%,
            var(--julius-highlight-background) 100%
        ) !important;

    border: 1px solid var(--julius-highlight-border) !important;
    border-radius: 10px !important;
    box-shadow: none !important;

    transition:
        border-color 0.18s ease,
        box-shadow 0.18s ease,
        transform 0.18s ease;
}

body.single-product
.summary
.julius-highlights
.julius-highlights-list
.julius-highlight-item:hover {
    border-color: #d7bc8c !important;
    box-shadow: 0 7px 18px rgba(79, 57, 23, 0.07) !important;
    transform: translateY(-1px);
}

/* Ícone */

body.single-product
.summary
.julius-highlights
.julius-highlight-icon {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;

    flex: 0 0 27px;
    width: 27px !important;
    height: 27px !important;

    color: var(--julius-highlight-gold-dark) !important;
    background: #fff9ef !important;
    border: 1px solid #e7cfa8;
    border-radius: 50%;

    font-size: 12px;
    font-weight: 900;
    line-height: 1;
}

/* Texto */

body.single-product
.summary
.julius-highlights
.julius-highlight-text {
    display: block !important;
    min-width: 0;

    color: var(--julius-highlight-text) !important;
    font-size: 10.5px;
    font-weight: 650;
    line-height: 1.35;

    overflow-wrap: anywhere;
}

/* Tablet */

@media (max-width: 1100px) {
    body.single-product
    .summary
    .julius-highlights
    .julius-highlights-list {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

/* Telemóvel */

@media (max-width: 600px) {
    body.single-product .summary .julius-highlights {
        margin: 16px 0 20px !important;
    }

    body.single-product
    .summary
    .julius-highlights
    .julius-highlights-list {
        grid-template-columns: 1fr !important;
        gap: 8px !important;
    }

    body.single-product
    .summary
    .julius-highlights
    .julius-highlight-item {
        min-height: 52px;
    }

    body.single-product
    .summary
    .julius-highlights
    .julius-highlight-text {
        font-size: 12px;
    }
}