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

        body {
            font-family: 'Poppins', sans-serif;
            background-color: #f0f4f8;
            color: #333;
            margin: 0;
        }

        .header {
            background: linear-gradient(135deg, #6e8efb, #a777e3);
            color: white;
            text-align: center;
            padding: 20px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }

        .header h1 {
            font-size: 2.5rem;
            margin-bottom: 10px;
        }

        .header p {
            font-size: 1.2rem;
        }

        .nav {
            display: flex;
            justify-content: center;
            background: #333;
            padding: 10px 0;
        }

        .nav a {
            color: white;
            text-decoration: none;
            margin: 0 15px;
            font-size: 1rem;
            font-weight: bold;
            transition: color 0.3s ease;
            cursor: pointer;
        }

        .nav a:hover {
            color: #6e8efb;
        }

        .container {
            max-width: 1200px;
            margin: 20px auto;
            padding: 20px;
        }

        .products {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 15px;
        }

        .product {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            padding: 10px;
        }

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

        .product img {
            width: 150px;
            height: 150px;
            object-fit: cover;
            margin-bottom: 10px;
            display: block;
            margin-left: auto;
            margin-right: auto;
        }

        .product-content {
            text-align: center;
        }

        .product h3 {
            font-size: 1.2rem;
            margin-bottom: 10px;
        }

        .product p {
            font-size: 0.9rem;
            color: #555;
        }

        .product button {
            background: linear-gradient(135deg, #6e8efb, #a777e3);
            color: white;
            border: none;
            padding: 8px 15px;
            border-radius: 5px;
            cursor: pointer;
            font-size: 0.9rem;
            transition: background 0.3s ease;
        }

        .product button:hover {
            background: linear-gradient(135deg, #a777e3, #6e8efb);
        }

#confirmation {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90%;
    width: 400px;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    /* z-index: 1000; */
    overflow-wrap: break-word;
    overflow: hidden;
}
 	#confirmation h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #333;
    text-align: center;
    overflow-wrap: break-word;
}


  #confirmation p {
    font-size: 1rem;
    line-height: 1.5;
    color: #555;
    margin: 0;
}

        footer {
            background: #333;
            color: white;
            text-align: center;
            padding: 10px 0;
            margin-top: 20px;
        }

        footer p {
            font-size: 0.9rem;
        }

        #cart {
            background: #f9f9f9;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            margin-top: 20px;
        }

        #cart h3 {
            margin-bottom: 15px;
        }

        #cart ul {
            list-style-type: none;
            padding: 0;
        }

        #cart ul li {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 10px;
            padding: 10px;
            background: white;
            border-radius: 5px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }

        #cart ul li input {
            width: 50px;
            text-align: center;
        }

        #cart ul li button {
            background: red;
            color: white;
            border: none;
            padding: 5px 10px;
            border-radius: 5px;
            cursor: pointer;
        }
     #terms, #delivery {
            display: none;
            margin-top: 20px;
        }

        #terms h3, #delivery h3 {
            margin-bottom: 15px;
            font-size: 1.5rem;
        }

        #terms p, #delivery p {
            margin-bottom: 10px;
            font-size: 1rem;
            line-height: 1.5;
        }

        @media (max-width: 768px) {
            .nav {
                flex-direction: column;
                align-items: center;
            }

            .products {
                grid-template-columns: 1fr;
            }

 #confirmation {
        width: 90%;
        padding: 15px;
    }

    #confirmation h2 {
        font-size: 1.2rem;
    }

    #confirmation p {
        font-size: 0.9rem;
    }
            .header h1, .header h2 {
                font-size: 2rem;
            }

            .header p {
                font-size: 1rem;
            }
        }