body {
    margin: 0;
    font-family: Arial;
    background-color: #f2f2f2;
}


.navbar {
    background-color: #232f3e;
    padding: 0px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.store-name {
    color: #e79211;
    font-size: 20px;
    font-weight: bold;
}
.left-section {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.425);
}

.cart-link {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 24px;
}

.cart-link:hover {
    color: #ff9900;
}

.search-box {
    display: flex;
    align-items: center;
}

.search-box input {
    padding: 8px;
    width: 100%;
    max-width: 300px;
}

.search-btn {
    padding: 8px 20px;
    background-color: #ff9900;
    border: none;
    color: white;
    font-weight: bold;
    cursor: pointer;
    border-radius: 0 4px 4px 0;
    transition: 0.3s;
}

.search-btn:hover {
    background-color: #e68a00;
}

.navbar a {
    color: white;
    text-decoration: none;
}

.products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    padding: 20px;
}

.card {
    background: white;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 5px gray;
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-container {
    display: flex;
    padding: 40px;
    gap: 50px;
}

.image-section img {
    width: 450px;
    transition: transform 0.3s ease;
}

.image-section img:hover {
    transform: scale(1.4);
}

.price {
    color: red;
    font-size: 24px;
    font-weight: bold;
}

.button-group {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.cart-btn {
    background-color: #ffd814;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
}

.buy-btn {
    background-color: #ffa41c;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
}

.cart-item {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    background: white;
    padding: 15px;
    border-radius: 8px;
}

.qty button {
    padding: 5px 10px;
}

@media (max-width: 768px) {

.navbar{
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.store-name{
    text-align: center;
}

.search-box{
    width: 100%;
    justify-content: center;
}

.search-box input{
    width: 70%;
}

.logo img{
    width:60px;
    height:60px;
}

.cart-link{
    font-size:18px;
}

}
@media (max-width:768px){

.card img{
    height:160px;
}

.card{
    padding:10px;
}

}
