/* 카탈로그 스타일 제품 카드 */
.product-card.catalog-style {
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.product-card.catalog-style:hover {
    transform: translateY(-8px);
    border-color: #d4af37;
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
}

.product-card .product-image {
    position: relative;
    overflow: hidden;
}

.product-card .product-image img {
    width: 100%;
    height: 280px;
    object-fit: contain;
    object-position: center;
    background: #f8f9fa;
    transition: transform 0.3s ease;
}

.product-card.catalog-style:hover .product-image img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #d4af37 0%, #f9d76b 100%);
    color: #1a1d1e;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 3px 10px rgba(212, 175, 55, 0.4);
    z-index: 2;
}

.product-badge.sold-out {
    background: linear-gradient(135deg, #ff4444 0%, #cc0000 100%);
    color: white;
}

.product-info {
    padding: 20px;
}

.product-category {
    font-size: 13px;
    color: #d4af37;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.product-name {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 12px;
    line-height: 1.3;
}

.product-price {
    font-size: 24px;
    font-weight: 800;
    color: #d4af37;
    margin-bottom: 15px;
}

.product-materials,
.product-benefits {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-materials i,
.product-benefits i {
    color: #d4af37;
    font-size: 14px;
}

.product-footer {
    padding: 0 20px 20px;
}

.buy-buttons {
    display: flex;
    gap: 10px;
    width: 100%;
}

.buy-btn {
    flex: 1;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.naver-btn {
    background: #03C75A;
    color: white;
}

.naver-btn:hover {
    background: #02B350;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(3, 199, 90, 0.4);
}

.coupang-btn {
    background: #FF6B00;
    color: white;
}

.coupang-btn:hover {
    background: #E55F00;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.4);
}

.disabled-btn {
    background: #bdc3c7;
    color: white;
    cursor: not-allowed;
    opacity: 0.6;
}

.disabled-btn:hover {
    transform: none;
    box-shadow: none;
}

/* 카탈로그 안내 배너 */
.catalog-notice {
    background: linear-gradient(135deg, #2c5f4f 0%, #1a3a30 100%);
    color: white;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 30px;
    text-align: center;
}

.catalog-notice h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #d4af37;
}

.catalog-notice p {
    font-size: 15px;
    opacity: 0.9;
    line-height: 1.6;
}

.catalog-notice .platform-logos {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
}

.catalog-notice .platform-logo {
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
}

.catalog-notice .platform-logo.naver {
    background: rgba(3, 199, 90, 0.2);
    color: #03C75A;
}

.catalog-notice .platform-logo.coupang {
    background: rgba(255, 107, 0, 0.2);
    color: #FF6B00;
}

/* 모바일 반응형 */
@media (max-width: 768px) {
    .product-card .product-image img {
        height: 220px;
    }
    
    .product-name {
        font-size: 18px;
    }
    
    .product-price {
        font-size: 20px;
    }
    
    .buy-buttons {
        flex-direction: column;
    }
    
    .buy-btn {
        width: 100%;
    }
    
    .catalog-notice .platform-logos {
        flex-direction: column;
        gap: 10px;
    }
    
    .catalog-notice .platform-logo {
        width: 100%;
    }
}
