

    /* 🔹 Page Layout */
    .category-page {
        display: flex;
        align-items: flex-start;
    }

    /* 🔹 Sidebar Adjustments */
        .sidebar {
            width: 300px;
            background-color: #222;
            padding: 20px;
            color: #fff;
            border-radius: 8px;
            position: relative;
        }

        /* Sidebar Cart Styling */
#cart-sidebar {
    position: fixed;
    right: -350px; /* Initially hidden */
    top: 0;
    width: 300px;
    height: 100vh;
    background: #222;
    color: #fff;
    box-shadow: -3px 0 10px rgba(0, 0, 0, 0.5);
    padding: 20px;
    transition: right 0.3s ease-in-out;
    z-index: 1000;
    overflow-y: auto;
}

/* Open the cart when active */
#cart-sidebar.open {
    right: 0;
}

/* Cart Title */
#cart-sidebar h3 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 15px;
    border-bottom: 2px solid #444;
    padding-bottom: 10px;
}

/* Cart Items */
#cart-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

#cart-items li {
    background: #333;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
    font-size: 0.9rem;
    display: flex;
    justify-content: space-between;
}

/* Total Price */
#cart-total {
    font-weight: bold;
    font-size: 1.2rem;
    display: block;
    text-align: center;
    margin: 15px 0;
}

/* Checkout Button */
#checkout {
    width: 100%;
    padding: 10px;
    background: #28a745;
    border: none;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
    border-radius: 5px;
}

#checkout:hover {
    background: #218838;
}

/* Close Cart Button */
#close-cart {
    position: absolute;
    top: 10px;
    right: 15px;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
}

/* Floating Cart Icon */
#cart-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #28a745;
    color: white;
    font-size: 1.5rem;
    padding: 15px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1001;
}

#cart-toggle:hover {
    background: #218838;
}




/* 🔹 Pagination Container */
.pagination {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin: 30px auto 20px;
    position: relative;  /* ✅ Ensure it doesn't overlap */
}

/* 🔹 Pagination Buttons */
.pagination button {
    background: #333;
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s ease-in-out;
}

/* 🔹 Active Page */
.pagination button.active {
    background: #ff9800;
    font-weight: bold;
}

/* 🔹 Hover Effect */
.pagination button:hover {
    background: #555;
}





    

    /* 🔹 Product Grid */
    .dutchie-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 columns */
    gap: 20px; /* Space between products */
    padding: 20px;
    }

    /* 🔹 Product Card */
    .dutchie-product {
        background: #111;
        padding: 15px;
        border-radius: 12px;
        text-align: center;
        box-shadow: 0px 4px 12px rgba(255, 255, 255, 0.1);
        transition: transform 0.2s ease-in-out;
    }

    .dutchie-product:hover {
        transform: scale(1.05);
    }

    /* 🔹 Product Image */
    .dutchie-product img {
        width: 100%;
        border-radius: 8px;
        object-fit: contain;
        background: white;
        padding: 10px;
        aspect-ratio: 1 / 1;
    }

    /* 🔹 Product Title */
    .dutchie-product h3 {
        font-size: 16px;
        font-weight: bold;
        color: white;
        margin: 10px 0;
    }

    /* 🔹 Product Info */
    .dutchie-product p {
        font-size: 14px;
        color: #bbb;
        margin: 5px 0;
    }

    /* 🔹 Add to Cart Button */
    .add-to-cart {
        background: #28a745;
        color: white;
        font-size: 14px;
        padding: 10px;
        border: none;
        border-radius: 6px;
        cursor: pointer;
        width: 100%;
        text-transform: uppercase;
        font-weight: bold;
        transition: background 0.3s ease-in-out;
    }

    .add-to-cart:hover {
        background: #218838;
    }

    /* 🔹 Responsive Adjustments */
    @media (max-width: 1024px) {
        .dutchie-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 1100px) {
        .category-page {
            flex-direction: column;
        }

        .sidebar {
            width: 100%;
            margin-bottom: 20px;
        }

        .dutchie-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }



   