/* ==========================
   Ramki Homemade Foods
   Main Stylesheet
========================== */


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


body {

    font-family: Arial, Helvetica, sans-serif;

    background: #fffaf2;

    color: #333;

}


/* Header */

header {

    background: #8b4513;

    color: white;

    padding: 20px;

    text-align: center;

}


header h1 {

    font-size: 28px;

    margin-bottom: 10px;

}


nav a {

    color: white;

    text-decoration: none;

    margin: 0 12px;

    font-size: 16px;

}


nav a:hover {

    text-decoration: underline;

}



/* Main container */

main {

    width: 90%;

    max-width: 1200px;

    margin: 30px auto;

}



/* Product Grid */

.products {

    display: grid;

    grid-template-columns: repeat(
        auto-fit,
        minmax(220px,1fr)
    );

    gap: 25px;

    margin-top: 25px;

}



/* Product Card */

.card {

    background: white;

    border-radius: 12px;

    padding: 15px;

    box-shadow: 
    0 3px 10px rgba(0,0,0,0.1);

    text-align: center;

}



.card img {

    width: 100%;

    height: 180px;

    object-fit: cover;

    border-radius: 10px;

}



.card h3 {

    margin: 15px 0 8px;

    color: #8b4513;

}



.card p {

    font-size: 18px;

    font-weight: bold;

    color: #222;

}



.card a {

    display: inline-block;

    margin-top: 12px;

    background:#e67e22;

    color:white;

    padding:10px 20px;

    border-radius:6px;

    text-decoration:none;

}


.card a:hover {

    background:#d35400;

}



/* Buttons */


.btn {

    background:#8b4513;

    color:white;

    padding:12px 20px;

    border-radius:6px;

    text-decoration:none;

    display:inline-block;

}


.btn:hover {

    background:#5d2e0c;

}



/* Forms */


input,
textarea,
select {


    width:100%;

    padding:12px;

    margin:8px 0;

    border:1px solid #ccc;

    border-radius:5px;


}



button {

    background:#8b4513;

    color:white;

    border:none;

    padding:12px 25px;

    border-radius:6px;

    cursor:pointer;

}


button:hover {

    background:#5d2e0c;

}



/* Cart */


.cart-table {

    width:100%;

    border-collapse:collapse;

    background:white;

}


.cart-table th,
.cart-table td {

    padding:12px;

    border-bottom:1px solid #ddd;

    text-align:center;

}



/* Footer */


footer {

    background:#8b4513;

    color:white;

    text-align:center;

    padding:20px;

    margin-top:40px;

}



/* Mobile */


@media(max-width:600px){


header h1 {

    font-size:22px;

}


nav a {

    display:inline-block;

    margin:5px;

}


main {

    width:95%;

}


.card img {

    height:150px;

}


}

.categories
{
    margin:20px 0;
    display:flex;
    gap:10px;
    flex-wrap:wrap;
}



.product-view
{
    background:white;
    padding:25px;
    border-radius:12px;
    text-align:center;
}



.product-view img
{
    max-width:100%;
    border-radius:10px;
}



.product-view h2
{
    color:#8b4513;
    margin:15px;
}