/* Product container */

  *{
            a{
                text-decoration: none;
                color: inherit;
            }
        }
        body {
            font-family: 'Segoe UI', Arial, sans-serif;
            background: #f8f8f8;
            margin: 0;
            padding: 0;
        }
        header {
            background: #222;
            color: #fff;
            padding: 1.5rem 0;
            text-align: center;
            letter-spacing: 2px;
            font-size: 2rem;
            font-weight: bold;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        }
        .viewmore-section {
            max-width: 1100px;
            margin: 2rem auto;
            padding: 1rem;
        }
        .products-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
        }
        .product-card {
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 4px 16px rgba(0,0,0,0.07);
            overflow: hidden;
            transition: transform 0.2s, box-shadow 0.2s;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .product-card:hover {
            transform: translateY(-6px) scale(1.03);
            box-shadow: 0 8px 24px rgba(0,0,0,0.13);
        }
        .product-img {
            width: 100%;
            height: 260px;
            object-fit: cover;
            background: #eee;
        }
        .product-info {
            padding: 1rem;
            text-align: center;
        }
        .product-title {
            font-size: 1.2rem;
            font-weight: 600;
            margin: 0.5rem 0 0.2rem 0;
            color: #222;
        }
        .product-price {
            color: #e67e22;
            font-size: 1.1rem;
            font-weight: 500;
            margin-bottom: 0.5rem;
        }
        .view-btn {
            background: #e67e22;
            color: #fff;
            border: none;
            border-radius: 6px;
            padding: 0.5rem 1.2rem;
            font-size: 1rem;
            cursor: pointer;
            transition: 0.2s;
        }
        .view-btn:hover {
            background: #cf711f;
        }
        .bp{
            display: flex;
            justify-content: center;
            margin-top: 2rem;
            margin-bottom: 2rem;
        }
        .bp1 {
            background: #e67e22;
            padding: 0.5rem 1.2rem;
            border-radius: 6px;
            text-decoration: none;
            color: white;
            font-size: 1.2rem;
            transition: 0.2s;
            text-decoration: none;
        }
        .bp1 a{
            color: white;
            text-decoration: none;
        }
        .bp1:hover {
            background: #cf711f;
            transform: scale(1.05);
            
        }
        @media (max-width: 700px) {
            .products-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.2rem;
            }
            .products-grid {
                grid-template-columns: 1fr;
                gap: 1.2rem;
            }
            .product-img {
                height: 200px;
            }
        }
.prntcontainer {
    display: flex;
    justify-content: center;
    margin: 60px 0;
}

.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    width: 90%;
}

/* Product boxes */
.boxes {
    flex: 1 1 200px;
    max-width: 200px;
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    font-family: PlayballRegular;
}

.boxes img {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
}

.txt1 {
    font-weight: bold;
    margin-bottom: 10px;
}

.rate1 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.buynow button {
    border: none;
    background-color: black;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}
.buynow button:hover {
    background-color: grey;
    color: black;
    transition: background-color 0.3s ease, color 0.3s ease;
}
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .container {
        flex-direction: column;
        align-items: center;
    }

    .boxes {
        max-width: 76%;
    }

    .footer-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-copy {
        text-align: left;
    }
    .functionimg{
           
        width: 100%;
        height: auto;
    }
    .sec-container {
    width: 100%;
    gap: 15px;
    padding: 0;
    }
    .sec-container2 {
    width: 100%;
    gap: 10px;
    padding: 0;
    flex-direction: column;
    align-items: center;
    }
}
a {
    text-decoration: none;
    color: white;
}
.boxes:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}
