/* Shared showroom sales layout for collections with showroom metadata. */

:root {
    --showroom-accent: #ff312e;
    --showroom-accent-hover: #d81b1b;
    --showroom-panel-bg: #232326;
    --showroom-panel-border: rgba(214, 200, 168, 0.12);
    --showroom-price-label: #bbb;
    --showroom-muted-copy: #aaa;
    --showroom-include-text: #e0e0e0;
}

.lp-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    gap: 2rem;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1.5rem 0 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 768px) {
    .lp-hero {
        grid-template-columns: 1fr;
    }
}

.lp-hero__media {
    margin: 0;
    border-radius: 1.2rem;
    overflow: hidden;
    aspect-ratio: 1;
    max-width: 420px;
    margin-inline: auto;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.lp-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.lp-hero__eyebrow {
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--showroom-accent);
    margin: 0 0 0.75rem;
    font-weight: 600;
}

.lp-hero__title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    line-height: 1.15;
    margin: 0 0 1rem;
}

.lp-hero__lead {
    font-size: 1.05rem;
    line-height: 1.55;
    color: #a9a9a9;
    margin: 0 0 1.25rem;
    max-width: 38rem;
}

.lp-hero__subheadline {
    font-size: 1.2rem;
    line-height: 1.4;
    margin: 0 0 0.85rem;
    color: #e7dcc4;
    font-weight: 600;
}

.lp-hero__lead--support {
    color: #c7b58b;
    font-size: 0.98rem;
}

.lp-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 1.25rem;
}

.showroom-share {
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.showroom-share__label {
    margin: 0 0 0.75rem;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--showroom-muted-copy);
    font-weight: 600;
}

.showroom-share__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.showroom-share__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 0.85rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.04);
    color: #f4f0e7;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: transform 0.15s, background 0.2s, border-color 0.2s;
}

.showroom-share__btn:hover:not(:disabled) {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 49, 46, 0.35);
}

.showroom-share__btn--disabled,
.showroom-share__btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.showroom-share__btn--copy.is-copied {
    border-color: rgba(255, 178, 102, 0.45);
    background: rgba(200, 106, 48, 0.2);
}

.showroom-share__icon {
    flex-shrink: 0;
}

.showroom-share__btn-text {
    white-space: nowrap;
}

@media (max-width: 480px) {
    .showroom-share__btn-text {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
    }

    .showroom-share__btn {
        padding: 0.55rem;
    }
}

.lp-link-button {
    display: inline-block;
    padding: 0.8rem 1.3rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.04);
    color: #f4f0e7;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.15s, background 0.2s, border-color 0.2s;
}

.lp-link-button:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.08);
}

.lp-link-button--primary {
    background: linear-gradient(135deg, #c86a30, #8d3f1f);
    border-color: rgba(255, 178, 102, 0.45);
}

.lp-link-button--ghost {
    background: transparent;
    color: #d6c8a8;
    border-color: rgba(214, 200, 168, 0.22);
}

.lp-cta-wrap {
    display: flex;
    justify-content: center;
    margin: 0 0 2.5rem;
}

.lp-cta-wrap__message {
    margin: 0 0 0.75rem;
    text-align: center;
    color: #aaa;
    font-size: 0.95rem;
}

.lp-cta-wrap--tight {
    margin-bottom: 1.75rem;
}

.lp-cta-form {
    margin: 0;
}

.lp-cta-button {
    display: inline-block;
    background: #ff312e;
    color: #fff;
    padding: 0.85rem 2.25rem;
    border-radius: 999px;
    border: none;
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.2s, transform 0.15s;
}

.lp-cta-button:hover {
    background: #d81b1b;
}

.lp-cta-button:active {
    transform: scale(0.98);
}

.lp-story,
.lp-who {
    max-width: 900px;
    margin-inline: auto;
    margin-bottom: 2.5rem;
}

.lp-story h2,
.lp-who h2 {
    font-size: 1.35rem;
    margin: 0 0 1.25rem;
    text-align: center;
}

.lp-story-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.35rem 0.5rem;
}

.lp-story-step {
    background: #232326;
    color: #f7f7f2;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    font-size: 0.92rem;
    font-weight: 600;
}

.lp-story-arrow {
    color: var(--showroom-accent);
    font-weight: 700;
    user-select: none;
}

.lp-who-card {
    background: #19191b;
    border-radius: 1.1rem;
    padding: 1.5rem 1.75rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.lp-who-card ul {
    margin: 0;
    padding-left: 1.2rem;
    color: #adadad;
    line-height: 1.65;
}

.lp-who-card li {
    margin-bottom: 0.5rem;
}

.lp-includes,
.lp-track-header,
.lp-field-manual {
    max-width: 980px;
    margin: 0 auto 2.5rem;
}

.lp-includes h2,
.lp-track-header h2,
.lp-field-manual h2 {
    font-size: 1.35rem;
    margin: 0 0 1.25rem;
    text-align: center;
}

.lp-includes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.offer-box {
    background: var(--showroom-panel-bg);
    color: #fff;
    border-radius: 1.1rem;
    margin: 2.2rem auto;
    max-width: 480px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    padding: 2rem 2.2rem 1.5rem;
    text-align: center;
}

.offer-box__title {
    font-size: 1.5rem;
    margin: 0 0 0.7rem;
}

.offer-box__pricing {
    font-size: 1.1rem;
    margin-bottom: 1.1rem;
}

.offer-box__price {
    color: var(--showroom-accent);
    font-weight: 700;
    font-size: 2.1rem;
}

.offer-box__price-label {
    display: block;
    color: var(--showroom-price-label);
    font-size: 1rem;
    margin-top: 0.2rem;
}

.offer-box__includes {
    list-style: none;
    padding: 0;
    margin: 0 0 1.2rem;
}

.offer-box__include-item {
    margin-bottom: 0.3rem;
    color: var(--showroom-include-text);
}

.offer-box__include-item::before {
    content: "\2713";
    color: var(--showroom-accent);
    font-weight: 700;
    margin-right: 0.55rem;
}

.offer-box__cta-form {
    margin-top: 1.2rem;
}

.offer-box__cta-button {
    display: inline-block;
    background: var(--showroom-accent);
    color: #fff;
    padding: 0.7rem 2.1rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.offer-box__cta-button:hover {
    background: var(--showroom-accent-hover);
}

.offer-box__coming-soon {
    margin-top: 1.2rem;
    color: var(--showroom-muted-copy);
}

.lp-include-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
    padding: 1.15rem;
    color: #ddd6c7;
    line-height: 1.55;
}

.lp-field-manual {
    background: linear-gradient(180deg, rgba(200, 106, 48, 0.1), rgba(15, 18, 26, 0.85));
    border: 1px solid rgba(214, 200, 168, 0.12);
    border-radius: 1.2rem;
    padding: 1.6rem;
}

.lp-field-manual p {
    color: #d9d2c3;
    line-height: 1.65;
    text-align: center;
    max-width: 720px;
    margin: 0 auto 1rem;
}

.lp-field-manual__actions {
    display: flex;
    justify-content: center;
}

.lp-field-manual__note {
    color: #9c998f;
    font-size: 0.92rem;
}

.song-card__subtitle {
    color: #d6c8a8;
    font-weight: 600;
    letter-spacing: 0.02em;
    margin-top: -0.35rem;
}

.showroom-shell--hold-the-line .lp-hero,
.showroom-shell--hold-the-line .lp-who-card,
.showroom-shell--hold-the-line .lp-include-card,
.showroom-shell--hold-the-line .lp-field-manual {
    background-image:
        radial-gradient(circle at top left, rgba(200, 106, 48, 0.12), transparent 35%),
        radial-gradient(circle at bottom right, rgba(79, 101, 128, 0.16), transparent 30%);
}

.showroom-shell--hold-the-line {
    --showroom-accent: #e38b47;
    --showroom-accent-hover: #c86a30;
    --showroom-panel-bg: #11151c;
    --showroom-panel-border: rgba(214, 200, 168, 0.12);
    --showroom-price-label: #b9b1a1;
    --showroom-muted-copy: #a29c90;
    --showroom-include-text: #e3dac8;
}

.showroom-shell--hold-the-line .lp-hero {
    padding: 1.75rem;
    border: 1px solid var(--showroom-panel-border);
    border-radius: 1.25rem;
    background-color: var(--showroom-panel-bg);
}

.showroom-shell--hold-the-line .lp-field-manual__body {
    color: #2f2824;
    font-weight: 700;
    font-size: 1.05rem;
    line-height: 1.75;
}

.showroom-shell--hold-the-line .lp-field-manual__note {
    color: #4a4038;
    font-weight: 700;
    font-size: 1.02rem;
    line-height: 1.7;
}

.showroom-shell--hold-the-line .lp-field-manual ul {
    margin: 1rem auto;
    max-width: 640px;
    color: #2f2824;
    font-size: 1.05rem;
    line-height: 1.75;
}

.showroom-shell--hold-the-line .lp-field-manual li {
    color: #2f2824;
    margin-bottom: 0.55rem;
}


.showroom-shell--hold-the-line .lp-includes {
    padding: 1.6rem;
    border-radius: 1.25rem;
    background: linear-gradient(180deg, rgba(5, 7, 10, 0.98), rgba(10, 12, 16, 0.96));
    border: 1px solid rgba(214, 200, 168, 0.08);
}

.showroom-shell--hold-the-line #lp-includes-title {
    color: #ffffff !important;
}

.showroom-shell--hold-the-line .lp-include-card {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    background: linear-gradient(180deg, rgba(9, 11, 15, 0.98), rgba(14, 17, 22, 0.96));
    border-color: var(--showroom-panel-border);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
    color: var(--showroom-include-text);
}

.showroom-shell--hold-the-line .lp-include-card::before {
    content: "\2713";
    flex: 0 0 auto;
    width: 1.35rem;
    height: 1.35rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(227, 139, 71, 0.16);
    border: 1px solid rgba(227, 139, 71, 0.32);
    color: #f4d9bf;
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1;
    margin-top: 0.05rem;
}

.showroom-shell--love-parade .lp-story h2,
.showroom-shell--love-parade .lp-who h2,
.showroom-shell--love-parade .lp-includes h2,
.showroom-shell--love-parade .lp-track-header h2 {
    color: #2a2528;
}

.showroom-shell--love-parade .lp-cta-wrap__message,
.showroom-shell--love-parade .lp-cta-strip p {
    color: #4a4247;
}

.showroom-shell--sandigan {
    --showroom-accent: #c45c6a;
    --showroom-accent-hover: #a84758;
    --showroom-panel-bg: #221d21;
    --showroom-panel-border: rgba(253, 232, 234, 0.14);
    --showroom-price-label: #bdaab0;
    --showroom-muted-copy: #a18f95;
    --showroom-include-text: #d9c7cc;
}

.showroom-shell--sandigan .lp-hero,
.showroom-shell--sandigan .lp-who-card,
.showroom-shell--sandigan .lp-include-card {
    background-image:
        radial-gradient(circle at top left, rgba(196, 92, 106, 0.15), transparent 38%),
        radial-gradient(circle at bottom right, rgba(253, 232, 234, 0.12), transparent 32%);
}

.showroom-shell--sandigan .lp-include-card {
    color: #cdb7bd;
}

.showroom-shell--sandigan .offer-box__price-label,
.showroom-shell--sandigan .offer-box__include-item,
.showroom-shell--sandigan .offer-box__coming-soon {
    color: #b89ea6;
}

.showroom-shell--sandigan .lp-hero {
    padding: 1.75rem;
    border: 1px solid var(--showroom-panel-border);
    border-radius: 1.25rem;
    background-color: var(--showroom-panel-bg);
}

.showroom-shell--sandigan .lp-hero__title {
    color: #f6d7de;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.32);
    letter-spacing: 0.01em;
}

.lp-cta-strip {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    margin: 2rem 0;
    padding: 1.5rem 1rem;
    background: linear-gradient(180deg, rgba(255, 49, 46, 0.08), transparent);
    border-radius: 1rem;
}

.lp-cta-strip p {
    margin: 0;
    font-size: 0.95rem;
    color: #999;
    text-align: center;
}
