.print3d-page {
    padding: 1rem 0 2.5rem;
    display: grid;
    gap: 1rem;
}

.print3d-shell {
    max-width: 1160px;
    width: calc(100% - 40px);
    margin: 0 auto;
}

.print3d-hero,
.print3d-results-head,
.print3d-studio-card,
.print3d-empty-state,
.print3d-soft-cta {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(18, 28, 39, 0.08);
    border-radius: 18px;
    box-shadow: 0 18px 34px rgba(31, 26, 21, 0.08);
    backdrop-filter: blur(16px);
}

.print3d-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 1rem;
    padding: 1.35rem 1.45rem;
    position: relative;
    overflow: hidden;
}

.print3d-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(196, 107, 72, 0.1) 0%, rgba(196, 107, 72, 0) 30%),
        radial-gradient(circle at bottom right, rgba(23, 52, 75, 0.08) 0%, rgba(23, 52, 75, 0) 34%);
    pointer-events: none;
}

.print3d-hero > * {
    position: relative;
    z-index: 1;
}

.print3d-kicker,
.print3d-side-label {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 0.34rem 0.72rem;
    border-radius: 999px;
    background: rgba(23, 52, 75, 0.07);
    color: #17344b;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.print3d-title,
.print3d-results-head h2,
.print3d-soft-cta h2,
.seller-name {
    font-family: 'Fraunces', Georgia, serif;
    color: #231f1b;
    line-height: 1.06;
}

.print3d-title {
    font-size: clamp(2rem, 3vw, 3rem);
    margin: 0.75rem 0 0.7rem;
}

.print3d-subtitle,
.print3d-soft-cta p,
.print3d-card-copy {
    color: #61594f;
    line-height: 1.7;
}

.print3d-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 1rem;
}

.print3d-hero-aside {
    display: grid;
    gap: 0.8rem;
    align-content: start;
}

.print3d-hero-card {
    display: grid;
    gap: 0.25rem;
    padding: 1rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(23, 52, 75, 0.1);
}

.print3d-hero-card strong {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 2rem;
    color: #17344b;
    line-height: 1;
}

.print3d-hero-card p {
    color: #665d53;
    line-height: 1.6;
    margin: 0;
}

.print3d-results-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.2rem 1.3rem;
    margin: 1rem auto;
}

.print3d-results-head h2 {
    margin: 0.45rem 0 0;
    font-size: 1.7rem;
}

.print3d-results-head p {
    color: #6a6258;
    margin: 0;
    white-space: nowrap;
}

.sellers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.seller-card {
    display: grid;
    gap: 1rem;
    padding: 1.15rem;
    color: inherit;
    text-decoration: none;
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.print3d-studio-cover {
    position: relative;
    padding-top: 125%;
    overflow: hidden;
    border-radius: 18px;
    background: linear-gradient(135deg, #ddd4c8 0%, #e9e2d7 100%);
}

.print3d-studio-cover img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.seller-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 34px rgba(23, 52, 75, 0.12);
}

.print3d-studio-top {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 0.85rem;
    align-items: center;
}

.seller-avatar {
    position: relative;
    width: 72px;
    height: 72px;
}

.seller-avatar img,
.seller-avatar .avatar-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 18px;
    object-fit: cover;
}

.avatar-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #17344b 0%, #102537 100%);
    color: white;
    font-size: 1.9rem;
    font-weight: 600;
}

.verified-badge {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 22px;
    height: 22px;
    border-radius: 999px;
    background: #17344b;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    border: 2px solid #fff;
}

.print3d-studio-identity {
    min-width: 0;
}

.print3d-studio-eyebrow {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-bottom: 0.3rem;
    color: #73685d;
    font-size: 0.78rem;
}

.seller-name {
    font-size: 1.28rem;
    margin-bottom: 0.18rem;
}

.seller-username {
    color: #7b746c;
    font-size: 0.9rem;
    margin: 0;
}

.seller-info {
    display: grid;
    gap: 0.72rem;
}

.seller-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    color: #6a6258;
    font-size: 0.88rem;
}

.seller-rating {
    color: #17344b;
    font-weight: 700;
}

.seller-pricing-preview,
.print3d-material-row,
.print3d-card-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    align-items: center;
}

.price-tag,
.delivery-time,
.print3d-material-chip {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0.45rem 0.72rem;
    border-radius: 12px;
    border: 1px solid rgba(23, 52, 75, 0.1);
    background: rgba(255, 255, 255, 0.78);
    color: #17344b;
    font-size: 0.84rem;
}

.print3d-card-footer {
    justify-content: space-between;
    color: #665d53;
    font-size: 0.88rem;
    padding-top: 0.15rem;
    border-top: 1px solid rgba(23, 52, 75, 0.08);
}

.print3d-empty-state,
.print3d-soft-cta {
    text-align: center;
    padding: 2.4rem 1.5rem;
}

.print3d-empty-state h3,
.print3d-soft-cta h2 {
    font-size: 1.6rem;
    margin-bottom: 0.55rem;
}

.print3d-soft-cta {
    margin-top: 1rem;
}

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

@media (max-width: 720px) {
    .print3d-shell {
        width: calc(100% - 24px);
    }

    .print3d-results-head {
        flex-direction: column;
        align-items: start;
    }

    .sellers-grid {
        grid-template-columns: 1fr;
    }
}
