.main-content { flex: 1; height: 100%; overflow-y: scroll; background: #fff; }
.content-inner { padding: 15px; }

/* 8열 그리드 시스템 */
#product-container { 
    display: grid; 
    grid-template-columns: repeat(8, 1fr); 
    gap: 12px; 
}

/* 상품 카드 디자인 */
.product-card { 
    background: #fff; border: 1px solid #eee; padding: 8px; border-radius: 6px;
    text-decoration: none; color: inherit; display: block; transition: transform 0.2s;
}
.product-card:hover { transform: translateY(-3px); border-color: var(--main-blue); }

.img-box { width: 100%; aspect-ratio: 1/1; background: #f8f8f8; border-radius: 4px; overflow: hidden; margin-bottom: 8px; }
.img-box img { width: 100%; height: 100%; object-fit: cover; display: block; }

.info-box .title { font-size: 12px; color: #333; height: 34px; line-height: 1.4; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.info-box .price-row { margin-top: 5px; font-size: 14px; font-weight: 800; color: #ae0000; }