/* Del Monaco LIVE V160 — compact luxury product profile strip
   Scope: product pages only. Does not touch hero image or product gallery. */

body.dm-live-v160-profile-strip .dm-v160-profile-strip {
    --dm-gold: #e3bd61;
    --dm-cream: #f5ecd7;
    --dm-muted: rgba(245, 236, 215, .74);
    --dm-line: rgba(215, 175, 76, .24);
    --dm-surface: rgba(4, 16, 13, .94);
    position: relative;
    width: min(1600px, calc(100% - 48px));
    margin: 18px auto 14px;
    padding: 0;
    isolation: isolate;
}

body.dm-live-v160-profile-strip .dm-v160-profile-strip::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: 28px;
    background:
        linear-gradient(110deg, rgba(232, 190, 82, .20), transparent 23%, transparent 74%, rgba(232, 190, 82, .13)),
        radial-gradient(circle at 10% 0%, rgba(218, 174, 70, .12), transparent 30%);
    z-index: -1;
    opacity: .95;
}

body.dm-live-v160-profile-strip .dm-v160-profile-strip__inner {
    display: grid;
    grid-template-columns: 1.05fr 1fr 1fr 1fr 1.45fr;
    align-items: stretch;
    min-height: 166px;
    overflow: hidden;
    border: 1px solid var(--dm-line);
    border-radius: 27px;
    background:
        radial-gradient(circle at 15% 15%, rgba(211, 166, 69, .085), transparent 27%),
        radial-gradient(circle at 83% 40%, rgba(136, 111, 46, .055), transparent 29%),
        linear-gradient(180deg, rgba(5, 17, 14, .97), rgba(2, 11, 9, .985));
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.018),
        0 20px 55px rgba(0,0,0,.20);
}

body.dm-live-v160-profile-strip .dm-v160-profile-strip__cell {
    position: relative;
    min-width: 0;
    padding: 24px 24px 22px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

body.dm-live-v160-profile-strip .dm-v160-profile-strip__cell + .dm-v160-profile-strip__cell::before {
    content: "";
    position: absolute;
    left: 0;
    top: 22%;
    bottom: 22%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(217, 179, 87, .30), transparent);
}

body.dm-live-v160-profile-strip .dm-v160-profile-strip__kicker {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 11px;
    color: var(--dm-gold);
    font-size: 12px;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: .20em;
    text-transform: uppercase;
    white-space: nowrap;
}

body.dm-live-v160-profile-strip .dm-v160-profile-strip__kicker::before {
    content: "";
    width: 38px;
    height: 1px;
    flex: 0 0 38px;
    background: linear-gradient(to right, rgba(227, 189, 97, .95), rgba(227, 189, 97, .08));
}

body.dm-live-v160-profile-strip .dm-v160-profile-strip__title {
    margin: 0;
    color: var(--dm-cream);
    font-family: "Cormorant Garamond", "Times New Roman", serif;
    font-size: clamp(29px, 2.1vw, 43px);
    line-height: .94;
    font-weight: 700;
    letter-spacing: -.025em;
    text-wrap: balance;
}

body.dm-live-v160-profile-strip .dm-v160-profile-strip__label {
    margin: 0 0 8px;
    color: var(--dm-gold);
    font-size: 11px;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: .17em;
    text-transform: uppercase;
}

body.dm-live-v160-profile-strip .dm-v160-profile-strip__text {
    margin: 0;
    color: rgba(247, 239, 220, .92);
    font-size: clamp(14px, .98vw, 17px);
    line-height: 1.46;
    font-weight: 650;
    text-wrap: balance;
}

body.dm-live-v160-profile-strip .dm-v160-profile-strip__mood {
    background:
        linear-gradient(180deg, rgba(211, 170, 74, .04), transparent 72%),
        radial-gradient(circle at 85% 20%, rgba(211, 170, 74, .10), transparent 36%);
}

body.dm-live-v160-profile-strip .dm-v160-profile-strip__mood-title {
    margin: 0 0 9px;
    color: var(--dm-cream);
    font-family: "Cormorant Garamond", "Times New Roman", serif;
    font-size: clamp(27px, 2.05vw, 42px);
    line-height: .98;
    font-weight: 700;
    letter-spacing: -.022em;
    text-wrap: balance;
}

body.dm-live-v160-profile-strip .dm-v160-profile-strip__mood-copy {
    margin: 0;
    color: var(--dm-muted);
    font-size: 14px;
    line-height: 1.45;
    max-width: 42ch;
}

/* reveal animation */
body.dm-live-v160-profile-strip .dm-v160-profile-strip__cell {
    opacity: 0;
    transform: translateY(13px);
    transition:
        opacity .72s cubic-bezier(.22,.61,.36,1),
        transform .72s cubic-bezier(.22,.61,.36,1),
        background-color .30s ease;
}

body.dm-live-v160-profile-strip .dm-v160-profile-strip.is-visible .dm-v160-profile-strip__cell {
    opacity: 1;
    transform: translateY(0);
}

body.dm-live-v160-profile-strip .dm-v160-profile-strip.is-visible .dm-v160-profile-strip__cell:nth-child(1){transition-delay:.02s}
body.dm-live-v160-profile-strip .dm-v160-profile-strip.is-visible .dm-v160-profile-strip__cell:nth-child(2){transition-delay:.08s}
body.dm-live-v160-profile-strip .dm-v160-profile-strip.is-visible .dm-v160-profile-strip__cell:nth-child(3){transition-delay:.14s}
body.dm-live-v160-profile-strip .dm-v160-profile-strip.is-visible .dm-v160-profile-strip__cell:nth-child(4){transition-delay:.20s}
body.dm-live-v160-profile-strip .dm-v160-profile-strip.is-visible .dm-v160-profile-strip__cell:nth-child(5){transition-delay:.26s}

body.dm-live-v160-profile-strip .dm-v160-profile-strip__cell:hover {
    background-color: rgba(226, 183, 86, .022);
}

@media (max-width: 1300px) {
    body.dm-live-v160-profile-strip .dm-v160-profile-strip {
        width: min(1480px, calc(100% - 32px));
    }

    body.dm-live-v160-profile-strip .dm-v160-profile-strip__inner {
        grid-template-columns: 1fr 1fr 1fr 1fr 1.30fr;
    }

    body.dm-live-v160-profile-strip .dm-v160-profile-strip__cell {
        padding: 22px 18px 20px;
    }
}

@media (max-width: 1060px) {
    body.dm-live-v160-profile-strip .dm-v160-profile-strip {
        margin-top: 14px;
        margin-bottom: 12px;
    }

    body.dm-live-v160-profile-strip .dm-v160-profile-strip__inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        min-height: 0;
    }

    body.dm-live-v160-profile-strip .dm-v160-profile-strip__lead,
    body.dm-live-v160-profile-strip .dm-v160-profile-strip__mood {
        grid-column: 1 / -1;
    }

    body.dm-live-v160-profile-strip .dm-v160-profile-strip__cell + .dm-v160-profile-strip__cell::before {
        top: 0;
        right: 18px;
        bottom: auto;
        left: 18px;
        width: auto;
        height: 1px;
        background: linear-gradient(to right, transparent, rgba(217, 179, 87, .26), transparent);
    }

    body.dm-live-v160-profile-strip .dm-v160-profile-strip__mood {
        padding-top: 20px;
        padding-bottom: 20px;
    }
}

@media (max-width: 640px) {
    body.dm-live-v160-profile-strip .dm-v160-profile-strip {
        width: calc(100% - 22px);
        margin: 12px auto 10px;
    }

    body.dm-live-v160-profile-strip .dm-v160-profile-strip__inner {
        grid-template-columns: 1fr;
        border-radius: 22px;
    }

    body.dm-live-v160-profile-strip .dm-v160-profile-strip__lead,
    body.dm-live-v160-profile-strip .dm-v160-profile-strip__mood {
        grid-column: auto;
    }

    body.dm-live-v160-profile-strip .dm-v160-profile-strip__cell {
        padding: 17px 17px 16px;
    }

    body.dm-live-v160-profile-strip .dm-v160-profile-strip__kicker {
        font-size: 10px;
        letter-spacing: .17em;
        white-space: normal;
    }

    body.dm-live-v160-profile-strip .dm-v160-profile-strip__title {
        font-size: clamp(31px, 10vw, 42px);
    }

    body.dm-live-v160-profile-strip .dm-v160-profile-strip__mood-title {
        font-size: clamp(27px, 8.5vw, 37px);
    }

    body.dm-live-v160-profile-strip .dm-v160-profile-strip__text,
    body.dm-live-v160-profile-strip .dm-v160-profile-strip__mood-copy {
        font-size: 14px;
    }
}

@media (prefers-reduced-motion: reduce) {
    body.dm-live-v160-profile-strip .dm-v160-profile-strip__cell {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}
