.product-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}



.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}



.product-item {
    cursor: pointer;
    border: 1px solid black; /* Á¦Ç° ¾ÆÀÌÅÛ ÀüÃ¼¿¡ Å×µÎ¸® Ãß°¡ */
    overflow: hidden; /* ³»ºÎ ÀÌ¹ÌÁö°¡ ¸ð¼­¸®¸¦ ¹þ¾î³ªÁö ¾Êµµ·Ï ÇÔ */
}


.product-image {
    position: relative;
    width: 100%;
    padding-top: 100%; /* 1:1 ºñÀ²ÀÇ Á¤»ç°¢Çü ÄÁÅ×ÀÌ³Ê */
    overflow: hidden;
}


.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain; /* ÀÌ¹ÌÁö°¡ Àß¸®Áö ¾Ê°í ÀüÃ¼°¡ º¸ÀÌµµ·Ï ¼³Á¤ */
}


.product-title {
    text-align: center;
    margin-top: 10px;
}


.product-title h3 {
    font-size: 16px;
    color: #333;
    margin: 0;
}


@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}