.container {
    width: 480px;
    min-height: 100vh;
    background: #f6f7f8;
    padding-bottom: 90px;
}

.page-header {
    background: #fff;
    padding: 22px 18px 16px;
    border-bottom: 1px solid #eef0f2;
}

.page-header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.page-title {
    font-size: 24px;
    font-weight: 700;
    color: #222;
    line-height: 1.2;
}

.page-subtitle {
    margin-top: 6px;
    font-size: 13px;
    color: #777;
}

.intro-link {
    flex-shrink: 0;
    padding: 8px 14px;
    border-radius: 999px;
    background: #1296db;
    color: #fff;
    font-size: 13px;
    text-decoration: none;
}

.product-list {
    padding: 14px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.product-card {
    display: flex;
    flex-direction: column;
    padding: 12px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    cursor: pointer;
}

.product-image {
    width: 100%;
    height: 140px;
    border-radius: 8px;
    object-fit: cover;
    background: #f2f3f5;
    flex-shrink: 0;
}

.product-info {
    min-width: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    font-size: 17px;
    font-weight: 700;
    color: #222;
    line-height: 1.35;
}

.product-name {
    margin-top: 5px;
    font-size: 13px;
    color: #666;
    line-height: 1.35;
}

.product-meta {
    margin-top: 8px;
    font-size: 12px;
    color: #8a8a8a;
}

.product-bottom {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.product-price {
    color: #ee0a24;
    font-size: 18px;
    font-weight: 700;
}

.product-price span {
    font-size: 12px;
}

.detail-button {
    padding: 6px 12px;
    border-radius: 14px;
    background: #1296db;
    color: #fff;
    font-size: 12px;
    white-space: nowrap;
}

.loading,
.empty-state {
    grid-column: span 2;
    padding: 36px 0;
    text-align: center;
    color: #888;
    font-size: 14px;
}
