body {
    /*font-family: Arial, sans-serif;*/
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.home_body{
    background-color: maroon;
}



header {
    text-align: center;
    background-color: #f8f9fa;
    padding: 20px 0;
}

header h1 {
    font-size: 2.5em;
    color: #333;
}

header p {
    color: #555;
    font-size: 1.2em;
}

.categories {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 50px 0;
}

.category {
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    width: 300px;
    transition: transform 0.3s ease;
}

.category:hover {
    transform: scale(1.05);
}

.category img {
    width: 100%;
    border-radius: 10px;
}

.category h2 {
    margin: 15px 0;
    color: black;
}

.product img{
    border-radius: 10px;
}

.product img:hover{
    transform: scale(1.3);
}


.logo1{
    width: 300px;
    height: 200px;
}

.logo2{
    width: 300px;
    height: 200px;
    margin-left: 10px;
}

footer {
    text-align: center;
    padding: 10px;
    background-color: #f8f9fa;
    color: #555;
}

/* Style for Orders*/

.order {
    margin: 0 auto; /* Center the form */
    max-width: 400px;
    padding: 20px;
}

.order input{
    width: 300px;
    height: 40px;
    margin-bottom: 10px;
}

.order textarea{
    width: 300px;
    height: 100px;
}

.order button{
    width: 100px;
    height: 30px;
    margin-top: 10px;
    margin-bottom: 10px;
    background-color: black;
    color: white;
    border: thin solid black;
    border-radius: 4px;
    cursor: pointer;
}

.home {
    display: block;
    text-align: center;
    margin: 20px auto;
    color: black;
    text-decoration: none;
    font-weight: bold;
}

.order-link{
    display: block;
    text-align: center;
    margin: 20px auto;
    color: black;
    text-decoration: none;
    font-weight: bold;
}


/* Style for Women*/

.product img{
    width: 200px;
    height: 200px;
}

.batch1{
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 50px;
}

.batch2{
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 50px;
}

.batch3{
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 50px;
}

.batch4{
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 50px;
}

.batch5{
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 50px;
}

.batch6{
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 50px;
}

.batch7{
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 50px;
}

.batch8{
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 50px;
}

.batch9{
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 50px;
}

.batch10{
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 50px;
}

.batch11{
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 50px;
}

.batch12{
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 50px;
}

.cart-link{
    border: thin solid rgb(51, 5, 5);
    text-decoration: none;
    margin-left: 1300px;
    padding: 10px;
    border-radius: 5px;
    background-color: rgb(51, 5, 5);
    color: white;
}

.add-to-cart{
    background-color: rgb(51, 5, 5);
    border: thin solid rgb(51, 5, 5);
    border-radius: 5px;
    color: white;
}

#checkout-btn{
    border: thin solid rgb(78, 53, 7);
    padding: 10px;
    border-radius: 5px;
    background-color: rgb(78, 53, 7);
    color: white;
}

.checkout-link{
    color: white;
    text-decoration: none;
}

.pay-link{
    text-decoration: none;
    color: white;
}

.payment{
    border: thin solid green;
    text-decoration: none;
    padding: 10px;
    border-radius: 5px;
    background-color: green;
    color: white;
}

.payment-box .logo1{
   margin-left: 600px;
}

.add-item{
    border: thin solid black;
    padding: 10px;
    margin-right: 1000px;
}

.remove-btn{
    background-color: red;
    border: thin solid red;
    border-radius: 5px;
    color: white;
}


/* Media Queries for Responsiveness */
@media (max-width: 1024px) {
    header h1 {
        font-size: 2em;
    }

    .categories {
        gap: 10px;
    }

    .category {
        width: 200px;
    }

    .order {
        max-width: 300px;
    }

    .add-item{
        border: thin solid black;
        padding: 10px;
        margin-right: 100px;
    }

    .cart-link{
        margin-left: 50px;
    }

    .payment-box .logo1{
        margin-left: 250px;
    }
}

@media (max-width: 768px) {
    header {
        padding: 15px;
    }

    .logo1, .logo2 {
        width: 300px;
    }

    header h1 {
        font-size: 1.8em;
    }

    .categories {
        flex-direction: column;
        align-items: center;
    }

    .category {
        width: 90%;
    }

    .categories, .batch1, .batch2, .batch3, .batch4, .batch5, .batch6, .batch7, .batch8, .batch9, .batch10, .batch11, .batch12 {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
        margin: 1rem;
    }

    .product {
        width: 90%;
    }

    .product img {
        max-width: 100%;
        height: auto;
    }

    .add-item{
        border: thin solid black;
        padding: 10px;
        margin-right: 50px;
    }

    .cart-link{
        margin-left: 50px;
    }

    .payment-box .logo1{
        margin-left: 150px;
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 1.5em;
    }

    .order button {
        font-size: 0.9em;
        padding: 8px;
    }

    .categories, .batch1, .batch2, .batch3, .batch4, .batch5, .batch6, .batch7, .batch8, .batch9, .batch10, .batch11, .batch12 {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
        margin: 1rem;
    }

    .product {
        width: 90%;
    }

    .product img {
        max-width: 100%;
        height: auto;
    }

    .add-item{
        border: thin solid black;
        padding: 10px;
        margin-right: 50px;
    }

    .cart-link{
        margin-left: 50px;
    }

    .payment-box .logo1{
        margin-left: 150px;
    }
}
