﻿.shop-hero {
    padding: 4.8rem 0 3.6rem;
    background:
        radial-gradient(circle at top right, rgba(255, 140, 0, 0.18), transparent 30%),
        linear-gradient(135deg, #111214 0%, #0c0d10 54%, #171412 100%);
    border-bottom: 1px solid rgba(255, 140, 0, 0.16);
}

.shop-hero-inner {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 1.8rem;
    align-items: center;
}

.shop-cover-card,
.shop-meta-card,
.shop-record-card,
.shop-empty-card {
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(10px);
}

.shop-cover-card {
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
}

.shop-cover-image,
.shop-record-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.shop-cover-fallback,
.shop-record-empty {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffb347;
    font-size: 2rem;
    letter-spacing: 0.18em;
    background: linear-gradient(135deg, #17191c 0%, #101114 100%);
}

.shop-eyebrow {
    margin: 0 0 0.75rem;
    color: #ff8c00;
    letter-spacing: 0.16em;
    font-size: 0.78rem;
    text-transform: uppercase;
}

.shop-hero-copy h1,
.shop-section-head h2,
.shop-record-body h3,
.shop-empty-card h3 {
    margin: 0;
    color: #ffffff;
}

.shop-hero-copy h1 {
    font-size: clamp(2.4rem, 5vw, 4rem);
    line-height: 1.1;
}

.shop-intro,
.shop-section-desc,
.shop-record-meta,
.shop-empty-card p {
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.8;
}

.shop-intro {
    margin: 1rem 0 0;
    max-width: 760px;
}

.shop-meta-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.8rem;
}

.shop-meta-card {
    border-radius: 18px;
    padding: 1rem 1.1rem;
}

.shop-meta-card span {
    display: block;
    color: rgba(255, 255, 255, 0.56);
    font-size: 0.82rem;
    margin-bottom: 0.5rem;
}

.shop-meta-card strong {
    color: #ffffff;
    font-size: 1.02rem;
    line-height: 1.6;
}

.shop-section {
    padding: 3.5rem 0 4.5rem;
}

.shop-section-head {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
    align-items: end;
    margin-bottom: 1.5rem;
}

.shop-section-desc {
    max-width: 420px;
    margin: 0;
}

.shop-record-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    justify-content: flex-start;
    gap: 1rem;
}

.shop-record-card {
    width: 100%;
    max-width: 272px;
    justify-self: start;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.shop-record-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 38px rgba(0, 0, 0, 0.22);
}

.shop-record-cover {
    aspect-ratio: 1 / 1;
    background: #111214;
}

.shop-record-body {
    padding: 0.8rem 0.8rem 0.85rem;
}

.shop-record-meta {
    margin: 0 0 0.42rem;
    font-size: 0.78rem;
}

.shop-record-body h3 {
    min-height: 2.5rem;
    font-size: 0.92rem;
    line-height: 1.35;
}

.shop-record-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.8rem;
    margin-top: 0.75rem;
}

.shop-record-price {
    color: #ffb347;
    font-size: 0.94rem;
    font-weight: 700;
}

.shop-record-actions {
    display: flex;
    gap: 0.55rem;
}

.shop-record-btn {
    min-width: 68px;
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #ffb347 0%, #ff8c00 100%);
    color: #111214;
    font-size: 0.76rem;
    font-weight: 700;
    text-align: center;
}

.shop-record-btn.ghost {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: #ffffff;
}

.shop-empty-card {
    border-radius: 22px;
    padding: 1.5rem;
}

.shop-empty-card p {
    margin: 0.8rem 0 0;
}

@media (max-width: 1024px) {
    .shop-hero-inner,
    .shop-section-head {
        grid-template-columns: 1fr;
        display: grid;
    }

    .shop-meta-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .shop-hero {
        padding-top: 4rem;
    }

    .shop-hero-inner {
        grid-template-columns: 1fr;
    }

    .shop-cover-card,
    .shop-meta-card,
    .shop-record-card,
    .shop-empty-card {
        border-radius: 14px;
    }

    .shop-record-grid {
        gap: 0.85rem;
    }

    .shop-record-card {
        max-width: none;
        width: 100%;
    }

    .shop-record-body {
        padding: 0.72rem 0.72rem 0.78rem;
    }

    .shop-record-meta {
        margin-bottom: 0.35rem;
        font-size: 0.76rem;
    }

    .shop-record-body h3 {
        min-height: 0;
        font-size: 0.88rem;
    }

    .shop-record-price {
        font-size: 0.9rem;
    }

    .shop-record-foot {
        flex-direction: column;
        align-items: stretch;
    }

    .shop-record-actions {
        justify-content: stretch;
    }

    .shop-record-btn {
        flex: 1;
        min-height: 36px;
        padding: 0.42rem 0.68rem;
        font-size: 0.74rem;
    }
}
