        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Yu Gothic', 'YuGothic', 'メイリオ', Meiryo, sans-serif;
		    background: url(../img/bg.png);
        }
        .min {
            font-family: 'Yu Mincho', 'YuMincho', serif;
        }
        a {
		    text-decoration: none;
	    }
        .header {
		    position: relative;
		    height: auto;
		    background: url(../img/main_image.png) right top / 60vw no-repeat;    
		    display: flex;
		    align-items: center;
		    justify-content: center;
        }
        .header2 {
		    background-color: #000000;
		    display: flex;
		    align-items: center;
		    justify-content: space-between;
		    flex-wrap: wrap;
		    gap: 1rem;
		}

        .header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
        }
        .logo-area {
		    display: flex;
		    align-items: center;
		    gap: 1rem;
		    color: white;
		    text-decoration: none;
		    margin-left: calc((100vw - 1200px) / 2);
		}
        .logo-icon {
		    width: 225px;
		    height: auto;
		    display: flex;
		    flex-direction: column;
		    align-items: center;
		    justify-content: left;
		    position: relative;
		    padding: 1.2rem 0;
		}
		.header-right {
		    display: flex;
		    flex-direction: column;
		    gap: 0.8rem;
		    flex: 1;
		    max-width: 600px;
		    margin-right: calc((100vw - 1200px) / 2);
		}

        .header-nav {
            position: absolute;
            top: 20px;
            right: calc((100vw - 1200px) / 2);
            display: flex;
            gap: 15px;
            z-index: 10;
        }

        .nav-button {
            background: #000000;
            color: white;
            border: none;
            padding: 12px 24px;
            border-radius: 25px;
            font-size: 14px;
            cursor: pointer;
            transition: background 0.3s;
            border: 1px solid;
        }

        .nav-button:hover {
            background: rgba(51, 25, 0, 1);
        }
        
        .header-nav.pc {
            display: flex;
        }

        .nav-item {
            position: relative;
        }

        .nav-button:hover {
            opacity: 0.7;
        }

        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background-color: #fff;
            border: 1px solid #ddd;
            border-radius: 4px;
            min-width: 200px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: opacity 0.3s, transform 0.3s, visibility 0.3s;
            margin-top: 8px;
            z-index: 1000;
        }

        .nav-item:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-menu a {
            display: block;
            padding: 12px 20px;
            color: #333;
            text-decoration: none;
            transition: background-color 0.2s;
            border-bottom: 1px solid #f0f0f0;
        }

        .dropdown-menu a:last-child {
            border-bottom: none;
        }

        .dropdown-menu a:hover {
            color: #9f9c9c;
        }

        .header-content {
            position: relative;
            z-index: 5;
            text-align: center;
            color: white;
        }

        .logo-container {
		    display: block;
		    align-items: center;
		    justify-content: left;
		    gap: 20px;
		    margin-bottom: 0;
		}

        .kura-icon {
		    width: 40vw;
		    height: auto;
		    display: flex;
		    align-items: center;
		    justify-content: left;
		    padding: 4vw 5vw 5vw 0;
		}

        .title-text {
            text-align: left;
        }

        .title-text .small {
            font-size: 18px;
            letter-spacing: 8px;
            margin-bottom: 5px;
        }

        .title-text .main {
            font-size: 48px;
            font-weight: bold;
            letter-spacing: 4px;
            margin-bottom: 10px;
        }

        .title-text .sub {
            font-size: 42px;
            font-weight: bold;
            letter-spacing: 4px;
        }

        .description {
            font-size: 20px;
            margin-top: 30px;
            letter-spacing: 2px;
        }

        /* 認定物産品説明セクション */
        .certification-section {
		    background: #000000;
		    color: white;
		    padding: 50px 80px;
		    width: 1200px;
		    border-radius: 10px;
		}

        .certification-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            gap: 50px;
            align-items: flex-start;
        }

        .certification-badge {
            flex-shrink: 0;
        }

        .certification-badge img {
            width: 200px;
            height: auto;
        }

        .certification-text {
            flex: 1;
            text-align: left;
        }

        .certification-text h2 {
            font-size: 22px;
            margin-bottom: 30px;
            font-weight: bold;
        }

        .certification-text .intro {
            font-size: 15px;
            line-height: 1.8;
            margin-bottom: 25px;
        }

        .certification-list {
            list-style: none;
        }

        .certification-list li {
            font-size: 14px;
            line-height: 1.9;
            margin-bottom: 12px;
            display: flex;
            gap: 10px;
        }

        .certification-list li::before {
            content: '(' attr(data-number) ')';
            flex-shrink: 0;
        }
        /* 検索エリア */
        .search-area {
            display: flex;
            gap: 0.5rem;
            justify-content: flex-end;
            margin-top: 3em;
        }

        .search-input {
            flex: 1;
            max-width: 450px;
            padding: 0.6rem 1rem;
            border: 1.5px solid rgba(255, 255, 255, 0.3);
            border-radius: 5px;
		    background: white;
		    color: #161616;
            font-size: 0.9rem;
            outline: none;
            transition: all 0.3s ease;
        }

        .search-input:focus {
            background: white;
            border-color: rgba(255, 255, 255, 0.6);
        }

        .search-button {
            background: transparent;
            border: 1.5px solid rgba(255, 255, 255, 0.6);
            color: white;
            padding: 0.6rem 1.5rem;
            border-radius: 20px;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .search-button:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: white;
        }

        /* メインコンテンツ */
        .main-content {
        	padding-top: 1.5em;
        }
        .pa-top15 {
        	padding-top: 1.5em;
        }
        .certification-label {
		    margin-bottom: 0.3rem;
		    line-height: 0.1;
		}
		.page-description {
		    margin: 0 auto;
		    line-height: 1.8;
		    color: #333;
		    text-align: center;
		}
		 /* タグエリア */
        .product-tags {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 2rem;
        }

        .tag {
            display: inline-block;
            padding: 0.5rem 1.2rem;
            border: 1.5px solid #333;
            font-size: 0.9rem;
            color: #333;
            background: white;
            transition: all 0.3s ease;
        }

        .tag:hover {
            background: #333;
            color: white;
        }
         /* 中央：画像と価格・店舗情報エリア */
        .product-main-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            margin-bottom: 2rem;
        }

        .product-image-area {
            display: flex;
            align-items: flex-start;
        }

        .product-main-image {
            width: 100%;
            height: auto;
            object-fit: contain;
        }

        .product-right-section {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        /* 価格セクション */
        .product-price-section {
            text-align: right;
        }

        .product-price {
            font-size: 2rem;
            font-weight: bold;
            color: #000000;
            margin-bottom: 0.5rem;
        }

        .product-set-info {
            font-size: 0.9rem;
            color: #666;
        }

        /* 店舗情報カード */
        .shop-info-card {
            background: white;
            border: 2px solid #e0e0e0;
            border-radius: 12px;
            padding: 1.5rem;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .shop-name {
            font-size: 1.2rem;
            font-weight: bold;
            color: #000000;
            margin: 0 0 1rem 0;
            padding-bottom: 0.5rem;
        }

        .shop-content {
            display: grid;
            grid-template-columns: 1fr auto;
            gap: 1.5rem;
            align-items: start;
        }

        .shop-details {
            display: flex;
            flex-direction: column;
            gap: 0.3rem;
        }

        .shop-details p {
            margin: 0;
            font-size: 0.85rem;
            color: #333;
            line-height: 1.6;
        }

        .shop-link {
            color: #2563eb;
		    text-decoration: underline;
            transition: color 0.3s ease;
            word-break: break-all;
        }

        .shop-link:hover {
            font-weight: 600;
		    color: #002a85;
        }

        .shop-image {
            width: 200px;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            object-fit: cover;
        }

        .interview-button {
            width: 100%;
            background: white;
            border: 2px solid #000000;
            color: #000000;
            padding: 0.8rem 1.5rem;
            border-radius: 25px;
            font-size: 0.9rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 0.5rem;
        }

        .interview-button:hover {
            background: #000000;
            color: white;
        }

        /* SNSシェアエリア */
        .social-share {
            display: flex;
            gap: 1rem;
            justify-content: center;
            padding-top: 2rem;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .social-icon svg {
            width: 24px;
            height: 24px;
        }

        .social-icon.twitter {
            background: #000000;
            color: white;
        }

        .social-icon.twitter:hover {
            background: #1a1a1a;
            transform: translateY(-2px);
        }

        .social-icon.instagram {
            background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
            color: white;
        }

        .social-icon.instagram:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(188, 24, 136, 0.4);
        }

        .social-icon.facebook {
            background: #1877f2;
            color: white;
        }

        .social-icon.facebook:hover {
            background: #0d65d9;
            transform: translateY(-2px);
        }

        .social-icon.line {
            background: #00b900;
            color: white;
        }

        .social-icon.line:hover {
            background: #009e00;
            transform: translateY(-2px);
        }

        .social-icon.note {
            background: #41c9b4;
            color: white;
        }

        .social-icon.note:hover {
            background: #2fb09c;
            transform: translateY(-2px);
        }
        article {
	        background: url(../img/bg.png);
        }
        article.bg1 {
	        border-top: 3em solid #bfbfbf;
	        background: url(../img/bg1.png);
        }
        section {
		    width: 1200px;
		    margin-left: auto;
		    margin-right: auto;
		}

        /* セクション全般 */
        .section {
            text-align: center;
            margin-bottom: 60px;
        }
        .bb{
		    background: white;
		    border: 1px solid;
		    border-radius: 10px;
		    padding: 1.5em;
		}

        .section-title {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 15px;
            margin-bottom: 30px;
        }

		.title img {
		    width: 6em;
		    height: auto;
		}
        .section-title h2 {
            font-size: 24px;
            font-weight: bold;
        }

        .search-box {
            display: flex;
            justify-content: center;
            gap: 15px;
            max-width: 600px;
            margin: 0 auto;
        }

        .search-box input {
            flex: 1;
            padding: 15px 25px;
            border: 1px solid #ccc;
            border-radius: 30px;
            font-size: 15px;
        }

        .search-box button {
            padding: 15px 40px;
            background: #000000;
            color: white;
            border: none;
            border-radius: 30px;
            font-size: 15px;
            cursor: pointer;
            transition: background 0.3s;
        }

        .search-box button:hover {
            background: #1a0f08;
        }

        /* カテゴリセクション */
        .category-section {
            display: grid;
            grid-template-columns: 55vw auto;
            gap: 1vw;
            max-width: 1200px;
            margin: 0 auto 80px;
        }

        .category-box {
            background: white;
            border: 2px solid #000000;
            border-radius: 20px;
            padding: 40px 30px;
            text-align: left;
        }

        .category-box-title {
            text-align: center;
            margin-bottom: 25px;
        }

        .category-box-title h3 {
            font-size: 20px;
            font-weight: bold;
            margin-bottom: 10px;
        }
        .category-boxes.ko a {
		    text-decoration: none;
		    color: #000;
		}

        .underline {
            width: 4em;
		    height: 12px;
		    background: #d4a574;
		    margin: 0 auto;
		    border-radius: 10px;
        }

        .category-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 15px;
        }

        .category-item {
            aspect-ratio: 1;
            border: 2px solid #000000;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 15px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
            background: white;
            text-align: center;
        }

        .category-item:hover {
            background: #000000;
		    color: #ffffff;
            transform: scale(1.05);
        }

        .category-item.filled {
            background: #000000;
            color: white;
            border-color: #000000;
        }

        .category-item.filled:hover {
            background: #1a0f08;
        }

        .specialty-list {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .specialty-item {
            padding: 18px 30px;
            border: 2px solid #000000;
            border-radius: 30px;
            text-align: center;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
            background: white;
        }

        .specialty-item:hover {
            background: #000000;
		    color: #ffffff;
            transform: translateX(5px);
        }

        /* 一覧セクション */
        .product-list-section {
            text-align: center;
            padding: 80px 0 50px;
        }

        .product-list-title {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 15px;
            padding-bottom: 50px;
        }

        .product-list-title h2 {
            font-size: 24px;
            font-weight: bold;
        }

        /* 商品グリッド */
        .product-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0;
        }
        .product-grid {
		    height: auto;
		    background: url(bg.png);    
        }
        .product-grid a {
		    text-decoration: none;
		}

        .product-card {
            background: white;
            border: 2px solid #ddd;
            border-radius: 15px;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.3s;
        }

        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }

        .product-image {
            width: 100%;
            aspect-ratio: 1;
            object-fit: cover;
            background: white;
            padding: 15px;
        }

        .product-info {
            padding: 20px 15px;
            text-align: center;
        }

        .product-name {
            font-size: 14px;
            line-height: 1.6;
            color: #000000;
            font-weight: 500;
        }

        /* フッター */
        .footer {
            background: #000000;
            color: white;
            padding: 2em 0 .5em;
        }

        .footer-info {
            margin-bottom: 2.5em;
            width: 1200px;
		    margin-left: auto;
		    margin-right: auto;
        }

        .footer-info p {
            font-size: 15px;
            line-height: 1.2;
            margin-bottom: 5px;
        }

        .footer-info .organization {
            font-weight: bold;
            margin-bottom: 6px;
		    font-size: 1.2em;
        }

        .footer-copyright {
            text-align: center;
            font-size: 14px;
        }
        
        /* タブナビゲーション（モバイル用） */
        .category-tabs {
            display: none;
            border-radius: 12px 12px 0 0;
        }

        .category-tabs-wrapper {
            display: flex;
            gap: 0.5rem;
        }

        .tab-button {
            flex: 1;
            padding: 0.8rem 1rem;
            background: transparent;
            border: none;
            border-radius: 12px 12px 0 0;
            font-size: 0.9rem;
            font-weight: bold;
            color: #666;
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid;
		    border-bottom: 0;
            background: white;

        }
        .category-boxes.ko{
		    display: grid;
		    grid-template-columns: 60vw auto;
		    gap: 1vw;
		    max-width: 1200px;
		    margin: 0 auto 80px;
		}
		nav .search-box input {
		    flex: 1;
		    padding: 15px 25px;
		    border: 1px solid #0c0c0c;
		    border-radius: 5px;
		    font-size: 15px;
		    background: transparent;
		}
		nav .search-box {
		    padding: 1em;
		    display: flex;
		    justify-content: center;
		    gap: 15px;
		    max-width: 600px;
		    margin: 0 auto;
		    background: transparent;
		    border-bottom: 2px dotted #ccc;
		}
		
		/* 1. チェックボックスを完全に非表示にする */
		.accordion-toggle {
		    display: none;
		}
		.accordion-item{
		    text-align: center;
		}

		/* 2. コンテンツの初期状態（閉じている状態） */
		.accordion-content {
		    max-height: 0; 
		    overflow: hidden; 
		    padding: 0 15px;
		    transition: max-height 0.3s ease-in-out, padding 0.3s ease-in-out; 
		}
		.accordion-header{
		    cursor: pointer;
		    padding: 5px 20px;
		    text-align: center;
		    border: 1px solid;
		    width: max-content;
		    margin: 0 auto;
		    border-radius: 20px;
		}
		/* チェックボックス（id="accordion-toggle-1"）がONのとき */
		#accordion-toggle-1:checked + .accordion-header {
		    /* 見出しを非表示にする */
		    display: none; 
		}
		/* 3. 【開く】操作：チェックされている状態（:checked）でコンテンツを表示 */
		/* `~` (間接セレクタ) は、チェックボックスの後に続く要素（コンテンツ）を選択 */
		.accordion-toggle:checked ~ .accordion-content {
		    max-height: 800px; /* 十分な高さを設定 */
		    padding: 15px;
		    text-align: left;
		}

		/* 4. 閉じるボタンのスタイル（初期状態は非表示） */
		.close-button {
		    display: none; /* 初期状態では隠しておく */
		    cursor: pointer;
		    padding: 5px 20px;
		    text-align: center;
		    border: 1px solid;
		    width: max-content;
		    margin: 0 auto;
		    border-radius: 20px;
		}

		/* 5. 【表示】：チェックされている状態のときだけ閉じるボタンを表示 */
		.accordion-toggle:checked ~ .accordion-content .close-button {
		    display: block; 
		}
		.button-group{
		    justify-content: flex-end;
		    display: flex;
		    margin-bottom: 1em;
		}

		.pc {display: block;}
		.sp{display: none;}

        /* レスポンシブ対応 */
        @media (max-width: 1210px) {
            .category-section {
			    display: grid;
			    grid-template-columns: 60vw auto;
			    gap: 1vw;
			    max-width: 1200px;
			    margin: 0 auto 80px;
			}
            
            .product-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 1em;
            }
            section,.footer-info {
			    width: 94vw;
		    }
		    .header-nav {
			    right: 3vw;
			}
			.header-right {
			    margin-right: 3vw;
			}
	        .logo-area {
			    margin-left: 3vw;
			}

			.kura-icon {
			    padding: 5em 3vw 5vw 03vw;
			}
			.certification-section {
			    width: 97vw;
			    padding: 30px 5vw;
			    border-radius: 0;
			}
            
        }

        @media (max-width: 768px) {
			.pc,.header-nav.pc{display: none;}
			.sp{display: block;}
        .tab-button.active {
            background: #000000;
            color: white;
        }
        .category-box {
            display: none;
            animation: fadeIn 0.4s ease;
        }

        .category-box.active {
            display: block;
        }
        .category-boxes {
		    display: grid;
		    grid-template-columns: 60vw auto;
		    gap: 1vw;
		    max-width: 1200px;
		    margin: 0 auto 80px;
		}
            .product-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .category-section {
                grid-template-columns: 1fr;
            }
            .certification-content {
                flex-direction: column;
                align-items: center;
                width: 100%;
            }
            .bg-sp-none {
                background: none;
            }
            .bb {
			    border: none;
			    padding: 0;
			}
			.product-price-section {
			    text-align: center;
			    padding: 1em 0;
			}
			.product-right-section {
			    display: block;
			    width: auto;
			}
			.shop-content {
			    display: initial;
			    text-align: center;
			}
            /* モバイルでタブ表示 */
            .category-tabs {
                display: block;
            }

            .category-boxes {
                grid-template-columns: 1fr;
            }

            .category-box {
                display: none;
            }

            .category-box.active {
                display: block;
                width: 94vw;
                border-radius: 0 0 20px 20px;
            }

            .category-grid {
                grid-template-columns: repeat(4, 1fr);
                gap: 0.6rem;
            }

            .category-item {
                font-size: 0.75rem;
                padding: 0.3rem;
            }
             /* ハンバーガーメニューボタン */
        .menu-toggle {
            background: none;
            border: none;
            cursor: pointer;
            padding: 10px;
            display: flex;
            flex-direction: column;
            align-items: center;
            margin: 0 auto;
            z-index:13;
        }
       .sub .menu-toggle {
	        background: none;
	        border: none;
	        cursor: pointer;
	        padding: 10px;
	        display: flex;
	        flex-direction: column;
	        align-items: center;
	        margin: 0 3vw 0 0;
	        z-index: 13;
	    }

        .hamburger {
            display: flex;
            flex-direction: column;
            gap: 6px;
            transition: all 0.3s;
            margin-bottom: 5px;
            height: 30px;
        }

        .hamburger span {
            display: block;
            width: 30px;
            height: 3px;
            background: #333;
            transition: all 0.3s;
        }
        .sub .hamburger span {
            display: block;
            width: 42px;
	        height: 7px;
	        background: #f9f9f9;
            transition: all 0.3s;
        }
        .sub .menu-toggle.active .hamburger span {
	        height: 33px;
	        width: 7px;
	        background: #333;
	    }

        /* メニューが開いたら3本線を縦に */
        .menu-toggle.active .hamburger {
            flex-direction: row;
            gap: 6px;
        }

        .menu-toggle.active .hamburger span {
            width: 3px;
            height: 30px;
        }

        .menu-text {
            color: #c8a865;
            font-size: 14px;
            font-weight: bold;
            letter-spacing: 1px;
        }

        /* メニュー */
        .nav-menu {
            max-height: 0;
            overflow: hidden;
            background: white;
            transition: max-height 0.4s ease-out;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }

        .nav-menu.active {
            max-height: 800px;
            transition: max-height 0.5s ease-in;
            width: 90vw;
		    position: absolute;
		    z-index: 10;
		    top: auto;
		    left: 50%;
		    transform: translate(-50%, 0);
		    margin-bottom: 1em;
		    padding-bottom: 1em;
        }
        .sub .nav-menu.active {
	        max-height: 800px;
	        transition: max-height 0.5s ease-in;
	        width: 90vw;
	        position: absolute;
	        z-index: 10;
	        top: 0;
	        left: 50%;
	        transform: translate(-50%, 0);
	        margin-bottom: 1em;
	        padding-bottom: 1em;
	        padding-top: 1em;
	    }
	    .header2 {
		    gap:0;
		}
		.logo-icon {
		    width: 120px;
		    padding: 0.8rem 0;
		}

        .menu-header {
		    padding: 1em 0;
		    text-align: center;
		    border-bottom: 2px dotted #ccc;
		}

        .menu-header h2 {
            font-size: 16px;
            color: #333;
        }
        
        .menu-header a {
            color: #333;
            text-decoration: none;
        }

        .menu-list {
            list-style: none;
            padding: 1em 0;
            text-align: center;
        }

        .menu-list li {
        }

        .menu-list a {
            display: block;
            padding: 5px 0;
            color: #333;
            text-decoration: none;
            font-size: 16px;
            transition: background 0.3s;
        }

        .menu-list a:hover {
            background: #f9f9f9;
            color: #c8a865;
        }
        .header {
		    background: url(../img/bg.png) right top / 100vw no-repeat;
		}

        /* メインコンテンツ */
        .main-content {
            position: relative;
        }

        .hero-image {
            width: 100%;
            height: 300px;
            object-fit: cover;
        }
            .kura-icon {
		        background: transparent;
		        padding: 3vw;
		        width: 65vw;
		        margin: auto;
		    }
		    .category-box {
		    	text-align: center;
		    }

        }

        @media (max-width: 480px) {
            .product-grid {
                grid-template-columns: repeat(1, 1fr);
            }
        }
        
