@charset "UTF-8";

/* Shop 페이지 스타일 */
.shop_products {
    padding: 40px 0;
}

.shop_products_inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.product_item {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.product_item.on {
    transform: translateY(-5px);
}

.product_image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.product_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product_item.on .product_img {
    transform: scale(1.05);
}

.product_info {
    padding: 25px;
    text-align: center;
}

.product_title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.product_desc {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.product_price {
    font-size: 24px;
    font-weight: 700;
    color: #007bff;
    margin-bottom: 20px;
}

/* 반응형 디자인 */
@media screen and (max-width: 768px) {
    .shop_products_inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .product_info {
        padding: 20px;
    }
    
    .product_title {
        font-size: 18px;
    }
} 