.shop-sections {
            padding: 25px 15px;
            max-width: 1400px;
            margin: auto;
        }

        /* دسته بندی */

        .category-block {
            margin-bottom: 40px;
        }

        .category-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 18px;
        }

        .category-icon {
            width: 34px;
            height: 34px;
            object-fit: contain;
            flex-shrink: 0;
        }

        .category-title {
            font-size: 20px;
            font-weight: 700;
            padding-right: 8px;
            border-right: 4px solid #ef394e;
        }


        .category-title {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 18px;
            padding-right: 8px;
            border-right: 4px solid #ef394e;
        }

        .products-grid {
            display: flex;
            gap: 16px;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            cursor: grab;
        }

        .products-grid:active {
            cursor: grabbing;
        }

        .products-grid::-webkit-scrollbar {
            display: none;
        }

        .products-grid::-webkit-scrollbar-thumb {
            background: #ddd;
            border-radius: 10px;
        }

        /* کارت محصول */

        .product-card {
            width: 190px;
            min-width: 190px;
            max-width: 190px;
            flex: 0 0 190px;
            display: flex;
            flex-direction: column;
        }


        .product-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 28px rgba(0, 0, 0, .08);
        }

        /* تصویر */

        .pc-image {
            padding: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .product-card img,
        .product-card {
            user-select: none;
            -webkit-user-drag: none;
        }

        .pc-image img {
            width: 100%;
            height: 160px;
            object-fit: contain;
        }

        /* عنوان */

        .pc-title {
            font-size: 14px;
            line-height: 1.8;
            padding: 10px 12px;
            color: #333;

            display: -webkit-box;
            -webkit-line-clamp: 2;
            /* فقط 2 خط */
            -webkit-box-orient: vertical;
            overflow: hidden;

            min-height: 50px;
        }

        /* قیمت */

        .pc-price-box {
            padding: 0 12px 12px 12px;
        }

        .pc-price-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .pc-price {
            font-size: 15px;
            font-weight: 700;
            color: #222;
        }

        .pc-price small {
            font-size: 11px;
            color: #777;
        }

        /* قیمت قبلی */

        .pc-old {
            font-size: 12px;
            color: #999;
            text-decoration: line-through;
            margin-top: 4px;
        }

        /* تخفیف */

        .pc-discount {
            background: #ef394e;
            color: #fff;
            font-size: 11px;
            padding: 3px 7px;
            border-radius: 8px;
        }

        /* ناموجود */

        .pc-unavailable {
            color: #ef394e;
            font-size: 13px;
            font-weight: 600;
        }

        /* لودینگ */

        .loader {
            text-align: center;
            padding: 25px 0;
            display: none;
        }

        .spinner {
            width: 30px;
            height: 30px;
            border: 3px solid #eee;
            border-top: 3px solid #ef394e;
            border-radius: 50%;
            animation: spin .8s linear infinite;
            margin: auto;
        }


        #loadMoreBtn {
            background: #ef394e;
            color: white;
            border: none;
            border-radius: 12px;
            padding: 12px 28px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
        }

        #loadMoreBtn:disabled {
            opacity: .6;
            cursor: not-allowed;
        }


        @keyframes spin {
            to {
                transform: rotate(360deg)
            }
        }

        /* دسکتاپ */

        @media(min-width:768px) {
            .products-grid {
                gap: 20px;
            }
        }


        @media(min-width:1200px) {
            .products-grid {
                grid-template-columns: repeat(5, 1fr);
            }
        }