body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    position: relative;
}

.search-bar {
    padding: 1rem;
    text-align: center;
}
.search-bar input {
    width: 80%;
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
}
.container {
    display: flex;
    gap: 2rem;
    padding: 1rem;
    flex-wrap: wrap;
}
.card {
    border: 1px solid #ddd;
    border-radius: 8px;
    width: 300px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.card img {
    width: 100%;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}
.info {
    padding: 1rem;
}
.info h3 {
    margin: 0;
    font-size: 1.2rem;
}
.info p {
    margin: 0.5rem 0;
}
.price {
    font-weight: bold;
    color: #4CAF50;
}
button {
    background: #4CAF50;
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
}
button:hover {
    background: #45a049;
}
.cart {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    background: #f8f8f8;
    border-left: 1px solid #ddd;
    overflow-y: auto;
    padding: 1rem;
    transition: transform 0.3s ease;
    transform: translateX(100%);
}
.cart.visible {
    transform: translateX(0);
}
.cart h3 {
    text-align: center;
}
.cart-items {
    list-style: none;
    padding: 0;
}
.cart-items li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}
.cart-items button {
    background: #ff4d4d;
    border: none;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.8rem;
}
.cart-items button:hover {
    background: #ff1a1a;
}
.cart-total {
    text-align: center;
    margin-top: 1rem;
    font-size: 1.2rem;
    font-weight: bold;
}
.cart-toggle {
    position: fixed;
    top: 1rem;
    right: 1rem;
    background: #4CAF50;
    color: #fff;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
.cart-toggle:hover {
    background: #45a049;
}
.payment-form {
    display: none;
    background: #fff;
    padding: 1rem;
    border-radius: 4px;
    margin-top: 1rem;
}
.payment-form input {
    width: 100%;
    padding: 0.5rem;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
}
.payment-form button {
    background: #008CBA;
    color: white;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
.payment-form button:hover {
    background: #007B8A;
}
.logo img{
    width:150px; 
    height:auto;
}
header{
    width:100%;
    position:relative;
   
    z-index:1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background:transparent;
    padding:30px 15%;
    transition:all .50s ease;
    margin-top: -20px;
    margin-left: -100px;
    background-color: #007B8A;
}
.navbar{
    display: flex;
    margin-left: -400px;
    list-style-type: none;
    text-decoration: none;
}
.navbar a{
    padding:10px 25px;
    font-size:var(--p-front);
    font-weight: 400;
    color:var(--other-colour);
    transition:all .40s ease;
}
.navbar a:hover{
color: var(--text-colour);
}
.h-btn{
    display: flex;
    align-items: center;
    margin-right:200px;
    list-style-type: none;
    
}
.h-btn2{
    display: inline-block;
    padding:10px 18px;
    background:lightblue;
    color:var(--text-colour);
    font-size:18px;
    font-weight:500;
    margin-left:20px;
    transition: all .40s ease;
}
.h-btn1{
    color:var(--other-colour);
    font-weight:500;
    font-size:18px;
    background: var(--main-color);
    
}
.h-btn2:hover{
    transform:translateX(-7px);
    
}
