body {
            font-family: sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f4f4f4;
            color: #333;
        }

        header {
            position: sticky;
            top: 0;
            background-color: #fff;
            padding: 15px 20px; /* Çì´õ ÆÐµù ÁÙÀÓ */
            text-align: center;
            border-bottom: 1px solid #ddd;
            z-index: 10; /* ´Ù¸¥ ¿ä¼Ò À§¿¡ Ç¥½Ã */
        }

        header h1 {
            margin-bottom: 5px;
            color: #e44d26;
            font-size: 1.2em; /* Çì´õ ÆùÆ® Å©±â ÁÙÀÓ */
        }

        header h1 img {
            height: 30px; /* ·Î°í ³ôÀÌ ÁÙÀÓ */
            vertical-align: middle;
            margin-left: 5px;
        }

        header p {
            font-size: 0.9em;
            color: #777;
            margin-top: 0;
        }

		#search-container {
            display: flex;
            justify-content: center;
            padding: 0 20px 10px 20px; /* °Ë»öÃ¢ ¿µ¿ª ÆÐµù */
            background-color: #fff; /* °Ë»öÃ¢ ¹è°æ»ö */
            border-bottom: 1px solid #ddd;
        }

        #search-input {
            padding: 8px 12px;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-size: 1em;
            width: 80%;
            max-width: 500px;
        }

        #category-menu-list {
            background-color: #f8f8f8;
            border-bottom: 1px solid #ddd;
            padding: 8px 20px; /* ¸Þ´º ÆÐµù ÁÙÀÓ */
            display: flex;
            justify-content: center;
        }

        #category-menu-list ul {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            gap: 10px; /* ¸Þ´º °£°Ý ÁÙÀÓ */
        }

        #category-menu-list li {
            cursor: pointer;
            padding: 6px 10px; /* ¸Þ´º ¾ÆÀÌÅÛ ÆÐµù ÁÙÀÓ */
            border-radius: 5px;
            transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
            font-size: 0.9em;
        }

        #category-menu-list li:hover,
        #category-menu-list li.active {
            background-color: #e44d26;
            color: #fff;
        }

        #category-select {
            display: none;
            width: 100%;
            padding: 8px; /* ¼¿·ºÆ® ¹Ú½º ÆÐµù ÁÙÀÓ */
            margin-bottom: 10px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1em;
        }

        #product-container {
            padding: 15px; /* ÄÁÅ×ÀÌ³Ê ÆÐµù ÁÙÀÓ */
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* ÃÖ¼Ò ³Êºñ ÁÙÀÓ */
            gap: 15px; /* »óÇ° °£°Ý ÁÙÀÓ */
        }

        .product-card {
            background-color: #fff;
            border: 1px solid #ddd;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05); /* ±×¸²ÀÚ ¾àÇÏ°Ô */
            transition: transform 0.1s ease-in-out; /* Æ®·£Áö¼Ç ¼Óµµ ¾à°£ ºü¸£°Ô */
        }

        .product-card:hover {
            transform: translateY(-3px); /* È£¹ö ½Ã ¿òÁ÷ÀÓ ÁÙÀÓ */
        }

        .product-image {
            width: 100%;
            height: 240px; /* ÀÌ¹ÌÁö ³ôÀÌ ÁÙÀÓ */
            object-fit: cover;
        }

        .product-info {
            padding: 10px; /* Á¤º¸ ¿µ¿ª ÆÐµù ÁÙÀÓ */
        }

        .product-name {
            font-weight: bold;
            margin-bottom: 5px;
            font-size: 0.95em;
            overflow: hidden; /* ±ä ÀÌ¸§ Ã³¸® */
            white-space: nowrap;
            text-overflow: ellipsis;
        }

        .product-price {
            color: #e44d26;
            font-weight: bold;
            margin-bottom: 8px;
            font-size: 0.9em;
        }

        .product-link {
            display: block;
            background-color: #2196F3;
            color: #fff;
            text-align: center;
            padding: 8px; /* ¸µÅ© ÆÐµù ÁÙÀÓ */
            text-decoration: none;
            border-radius: 5px;
            transition: background-color 0.2s ease-in-out;
            font-size: 0.85em;
        }

        .product-link:hover {
            background-color: #1976D2;
        }

        .hidden {
            display: none !important;
        }

        footer {
  
            text-align: center;
            padding: 10px; /* ÇªÅÍ ÆÐµù ÁÙÀÓ */
            background-color: #eee;
            color: #000;
            border-top: 1px dotted #3e3e3e;
            font-size: 0.8em;
        }

        /* Mobile view */
        @media (max-width: 768px) {
            header {
                padding: 10px 15px;
            }
            header h1 {
                font-size: 1.1em;
            }
            header h1 img {
                height: 25px;
            }
            header p {
                font-size: 0.8em;
            }
			#search-container {
                padding: 0 15px 5px 15px;
            }
            #search-input {
                font-size: 0.9em;
            }
            #category-menu-list {
                display: none;
            }
            #category-select {
                display: block;
                padding: 8px;
                font-size: 0.9em;
            }
            #product-container {
                padding: 10px;
                grid-template-columns: 1fr;
                gap: 10px;
            }
            .product-image {
                height: 240px;
            }
            .product-name {
                font-size: 0.9em;
            }
            .product-price {
                font-size: 0.85em;
            }
            .product-link {
			display: none;
                padding: 6px;
                font-size: 0.8em;
            }
            footer {
                padding: 8px;
                font-size: 0.7em;
            }
        }