 .page_404 h1 {
        font-size: 24px;
        /* margin-top: 100px; */
        text-align: center;
    }

    .page_404 h2 {
        text-align: center;
        margin-bottom: 30px;
    }
    .page_404 a {
        text-decoration: underline;
    }

    .page_404_product .product-grid-container {
        width: 100%;
        padding: 20px;
        background-color: #fafafa;
    }

   .page_404_product .product-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        max-width: 1200px;
        margin: 0 auto;
    }

   .page_404_product .product-card {
        width: 260px;
        height: 520px;
        padding: 15px;
        border: 1px solid #ddd;
        border-radius: 8px;
        background-color: #fff;
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        transition: transform 0.2s;
    }

   .page_404_product .product-card:hover {
        transform: scale(1.02);
    }

   .page_404_product .product-card img {
        width: 100%;
        height: auto;
        aspect-ratio: 4 / 5;
        object-fit: cover;
        border-radius: 5px;
        margin-bottom: 10px;
    }


    .page_404_product .product-card h5 {
        font-size: 16px;
        margin: 10px 0 5px;
        white-space: normal;
        word-break: break-word;
        flex-grow: 0;
    }

   .page_404_product .product-price {
        font-size: 14px;
        color: #666;
        margin: 10px 0;
    }

   .page_404_product .product-footer {
        margin-top: auto;
        padding-top: 10px;
    }

   .page_404_product .btn-cart {
        display: block;
        width: 100%;
    }

    .promo-banner {
        text-align: center;
        margin-top: 60px;
        margin-bottom: 30px;
    }
    .page_404 {
        padding: 2px 6px;
    }

    /* {% comment %} .promo-banner img {
        max-width: 100%;
        height: auto;
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    } {% endcomment %} */

    /* Tablet View: Show 2 products per view */
    @media (max-width: 1024px) {
       .product-card {
            width: 45%;
            height: auto;
        }

       .page_404_product .product-card img {
            height: auto;
            width: 100%;
            aspect-ratio: 4 / 5;
            object-fit: contain;
        }
    }

    @media (max-width: 768px) {
       .page_404_product .product-card {
            width: 90%;
            height: auto;
        }

       .page_404_product .product-card img {
            height: auto;
            width: 100%;
            aspect-ratio: 4 / 5;
            object-fit: contain;
        }
    }


   .page_404_product .availability.instock {
        display: none !important;
    }

   .page_404_product .scroll-btn {
        display: none !important;
    }