/* Cross-product offers and account handoff shared by Home and Store. */

.suite-band { background: #f5f5f7; }

.suite-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(14px, 2vw, 22px);
    margin-top: clamp(36px, 5vw, 64px);
}

.suite-card {
    display: flex;
    min-height: 310px;
    flex-direction: column;
    justify-content: space-between;
    gap: 32px;
    padding: clamp(26px, 3vw, 36px);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    background: rgba(255,255,255,.94);
    transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s var(--ease);
}

.suite-card:hover {
    transform: translateY(-3px);
    border-color: transparent;
    box-shadow: var(--lift-2);
}

.suite-card-owner {
    background: #18181a;
    color: #fff;
}

.suite-number {
    font-size: clamp(48px, 5vw, 70px);
    font-weight: 600;
    line-height: 1;
    letter-spacing: -.055em;
}

.suite-kicker {
    align-self: flex-start;
    padding: 6px 10px;
    border-radius: 999px;
    background: var(--surface);
    color: var(--ink-2);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.suite-card h3 {
    font-size: clamp(21px, 2vw, 26px);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -.025em;
}

.suite-card p {
    margin-top: 12px;
    color: var(--ink-2);
    font-size: 15px;
    line-height: 1.6;
}

.suite-card-owner p { color: rgba(255,255,255,.7); }

.suite-link {
    display: inline-block;
    margin-top: 22px;
    font-size: 14px;
    font-weight: 600;
}

.account-section {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(360px, 1.1fr);
    gap: clamp(42px, 7vw, 100px);
    align-items: center;
}

.account-copy h2 { max-width: 12ch; margin-top: 14px; }
.account-copy .lead { max-width: 39ch; margin-top: 22px; }
.account-copy .btn { margin-top: 30px; }

.account-preview {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--r-xl);
    background: rgba(255,255,255,.96);
    box-shadow: var(--lift-2);
}

.account-preview-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    border-bottom: 1px solid var(--line);
    font-size: 13px;
    font-weight: 600;
}

.account-preview-head span:last-child { color: var(--ink-3); font-weight: 500; }

.account-preview-body { padding: clamp(22px, 3vw, 32px); }

.account-preview-body > p {
    color: var(--ink-3);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.account-product {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 14px;
    margin-top: 14px;
    padding: 16px;
    border-radius: var(--r-md);
    background: #f5f7f5;
}

.account-product img { width: 48px; height: 48px; border-radius: 12px; }
.account-product strong { display: block; font-size: 16px; }
.account-product small { display: block; margin-top: 2px; color: var(--ink-3); font-size: 12px; }
.account-product > span { color: var(--ink-3); font-size: 13px; }

.account-discover {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
    color: var(--ink-2);
    font-size: 13px;
}

.account-icons { display: flex; }
.account-icons img {
    width: 30px;
    height: 30px;
    margin-left: -6px;
    border: 2px solid #fff;
    border-radius: 8px;
    background: #fff;
}

@media (max-width: 860px) {
    .suite-grid,
    .account-section { grid-template-columns: 1fr; }
    .suite-card { min-height: 250px; }
}

@media (max-width: 520px) {
    .suite-card { min-height: 230px; }
    .account-preview { border-radius: var(--r-lg); }
    .account-product { grid-template-columns: auto 1fr; }
    .account-product > span { grid-column: 2; }
}

.account-alt { margin-top: 16px; font-size: 13.5px; color: var(--ink-3); }
.account-alt a { color: var(--ink-2); text-underline-offset: 3px; }
.account-alt a:hover { color: var(--ink); }

/* Offer write-in dialog */
.offer-dialog {
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 30px;
    width: min(460px, calc(100vw - 40px));
    background: var(--bg);
    color: var(--ink);
}
.offer-dialog::backdrop { background: rgba(8, 8, 10, .45); }
.offer-dialog-close {
    position: absolute;
    top: 14px;
    right: 16px;
    border: 0;
    background: none;
    font-size: 22px;
    line-height: 1;
    color: var(--ink-3);
    cursor: pointer;
}
.offer-dialog h3 { padding-right: 28px; font-size: 21px; font-weight: 600; letter-spacing: -.02em; }
.offer-dialog form { display: grid; gap: 14px; margin-top: 18px; }
.offer-dialog label { display: grid; gap: 6px; font-size: 13px; font-weight: 500; color: var(--ink-2); }
.offer-dialog label[hidden] { display: none; }
.offer-dialog input,
.offer-dialog textarea {
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 10px 12px;
    font: inherit;
    font-size: 14px;
    color: var(--ink);
    background: var(--bg);
}
.offer-dialog textarea { resize: vertical; }
.offer-dialog-actions { display: flex; align-items: center; gap: 14px; }
.offer-dialog-actions .btn { flex: none; white-space: nowrap; }
.offer-dialog-status { font-size: 13px; color: var(--ink-2); }
.offer-dialog-alt { font-size: 12px; color: var(--ink-3); }
.offer-dialog-alt a { color: var(--ink-2); }
