
 
    .headline {
        text-align: center;
        font-size: 24px;
        font-weight: bold;
        margin-top: 20px;
        color: #333;
        font-weight: bold;
    }
.header {
    background-color: #333;
    color: white;
    padding: 5px 2px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: large;
    font-family: Arial, sans-serif;
    position: fixed;
    top: 0;
    width: 99%;
    z-index: 1000;

}
 .HeaderSpace{
        margin-top: 90px;
    }
.logo img{
    width: 75px;
    
    border-radius: 50%;
}
.menu ul{
    display: flex;
    
    align-items: center;
}
.menu ul li{
    list-style: none;
    margin: 0 10px;
}
.AddtoCart{
    transition: 0.5s;
}
.AddtoCart:hover{
    color: rgb(22, 230, 85);
}
.menu-list li{
    transition: 0.5s;
}
.menu-list li:hover{
    color: rgb(255, 0, 0);
    
}
/* Catagory start Css */

.catagory{
    justify-content: center;
    align-items: center;
    margin-top: 90px; /* Increased to prevent overlap with fixed header */
    padding: 20px;
    background-color: #f8f8f8;

}
.catagory-list ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.catagory-list ul li{
    list-style: none;
    margin: 10px;
    padding: 10px;
    border-radius: 5px;
    background-color: #f0f0f0;
    transition: 0.3s;
}
.catagory-list{
    width: 100%;
}
.cat-Block{
    
    
    
    align-items: center;
    margin-top: 20px;
    position: relative;
    width: 300px;
    height: 180px;
    overflow: hidden;
    transition: 0.5s;
}
.cat-img{
    width: 300px;
    
    border-radius: 5px;
    object-fit: cover;
    filter: blur(0px) brightness(50%);
    transition: 0.5s;
    
}
.cat-Block:hover .cat-img{
    transform: scale(1.3);
    transition: transform 0.5s;
    filter:   brightness(50%);
}
.cat-name{
    
    font-size: 1.2em;
    margin-top: 5px;
    color: #ffffff;
    position: absolute;
    top: 30%;
    left: 10%;
    font-weight: bold;
}
.Shop-btn-cat{
   
    bottom: 10px;
    left: 10px;
    padding: 5px 10px;
    background-color: #ff0000;
    color: white;
    border: none;
    border-radius: 5px 0px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 10%;
    font-weight: bold;
    transition: 0.5s;
}
.Shop-btn-cat:hover{
    background-color: #ffffff;
    color: #ff0000;
}
/* Catagory end Css */

/* Prodact List Start Css  */
.products-list{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 0px 50px;
}
.product-item {
    width: 260px;
    margin: 24px 16px;
    padding: 18px 14px 16px 14px;
    border: none;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08), 0 1.5px 4px rgba(0,0,0,0.04);
    text-align: center;
    transition: box-shadow 0.25s;
    position: relative;
    overflow: hidden;
}
.product-item:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.13), 0 2px 8px rgba(0,0,0,0.07);
    z-index: 2;
}
.product-item img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 14px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    background: #f8f8f8;
    transition: transform 0.25s cubic-bezier(.4,2,.6,1);
}
.product-item:hover img {
    transform: translateY(-8px) scale(1.03);
}
.product-item h3 {
    font-size: 1.15em;
    font-weight: 600;
    color: #222;
    margin: 8px 0 6px 0;
    letter-spacing: 0.01em;
}
.product-item p {
    font-size: 0.98em;
    color: #666;
    margin-bottom: 12px;
    min-height: 38px;
}
.product-item .price {
    font-size: 1.12em;
    color: #ff0000;
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
}
.product-item .old-price {
    font-size: 1em;
    color: #888;
    text-decoration: line-through;
    margin-right: 8px;
    font-weight: 400;
    opacity: 0.7;
}
.product-item .discount-badge {
    display: inline-block;
    background: #22c55e;
    color: #fff;
    font-size: 0.85em;
    font-weight: 600;
    border-radius: 4px;
    padding: 2px 7px;
    margin-left: 6px;
    vertical-align: middle;
}
.add-to-cart , .view-cart{
    background: linear-gradient(90deg, #ff0000 0%, #ff4d4d 100%);
    color: #fff;
    border: none;
    padding: 8px 18px;
    border-radius: 6px 0px 6px 0px;
    cursor: pointer;
    transition: 
        background 0.3s cubic-bezier(.4,2,.6,1),
        color 0.3s,
        box-shadow 0.3s;
    font-weight: 700;
    font-size: 1em;
    box-shadow: 0 2px 8px rgba(255,0,0,0.08);
    letter-spacing: 0.03em;
    outline: none;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
}
.add-to-cart:hover, .add-to-cart:focus {
    background: #fff;
    color: #ff0000;
    box-shadow: 0 4px 16px rgba(255,0,0,0.13);
    border: 1.5px solid #ff0000;
}.view-cart {
    background: #fff;
    color: #ff0000;
    box-shadow: 0 4px 16px rgba(255,0,0,0.13);
    border: 1.5px solid #ff0000;
}
.add-to-cart:active {
    background: #ffeaea;
    color: #c40000;
}
/* Product List End Css   */

.Cart-Count {
    position: absolute; 
    top: -8px; 
    right: -12px;
     background: #e74c3c;
     color: #fff;
     border-radius: 50%;
     padding: 2px 7px; 
    font-size: 12px; 
    font-weight: bold;
}
.social-icons i {
    margin: 0 10px;
    color: white;
    font-size: 15px;
    transition: color 0.3s ease;
}
 .product-item {
        position: relative;
    }
    .discount-badge {
        position: absolute;
        top: 10px;
        left: 10px;
        background: #e74c3c;
        color: #fff;
        padding: 4px 10px;
        border-radius: 5px;
        font-size: 14px;
        font-weight: bold;
        z-index: 2;
        box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    }
    .product-item img {
        display: block;
        width: 100%;
        height: auto;
    }


/* AddToCardInfo   */
    .addToCartInfo{
        position: fixed;
        top: 0;
        right: 0;
        width: 300px;
        height: 100%;
        background-color: #fff;
        box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        display: none; /* Initially hidden */
    }
    .cart-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px;
        background-color: #f8f8f8;
        border-bottom: 1px solid #ddd;
    }
    .cart-header h2 {
        margin: 0;
        font-size: 18px;
    }
    .close-cart {
        background: none;
        border: none;
        font-size: 20px;
        cursor: pointer;
    }
    .cart-items {
        padding: 10px;
        overflow-y: auto;
        height: calc(100% - 60px); /* Adjust height to fit header and footer */
    }
    .cart-item {
        display: flex;
        align-items: center;
        margin-bottom: 10px;
        border-bottom: 1px solid #ddd;
        padding-bottom: 10px;
    }   
    .cart-item img {
        width: 50px;
        height: 50px;
        margin-right: 10px;
    }
    .item-details {
        flex-grow: 1;
    }
    .item-details h3 {
        margin: 0;
        font-size: 16px;
    }
    .item-details p {
        margin: 5px 0;
    }
    .item-details .item-price {
        color: #e74c3c;
        font-weight: bold;
    }
    .remove-item {
        background-color: #e74c3c;
        color: #fff;
        border: none;
        padding: 5px 10px;
        cursor: pointer;
        font-size: 14px;
    }
    .cart-total {
        padding: 10px;
        border-top: 1px solid #ddd;
        text-align: right;
    }
    .cart-total p {
        margin: 0;
        font-size: 16px;
        font-weight: bold;
    }
    .checkout-btn {
        background-color: #28a745;
        color: #fff;
        border: none;
        padding: 12px 0;
        cursor: pointer;
        font-size: 17px;
        width: 100%;
        border-radius: 6px;
        font-weight: 600;
        box-shadow: 0 2px 8px rgba(40,167,69,0.08);
        transition: background 0.3s, color 0.3s, box-shadow 0.3s;
        margin-top: 12px;
        letter-spacing: 0.02em;
    }
    .checkout-btn:hover {
        background-color: #218838;
        color: #fff;
        box-shadow: 0 4px 16px rgba(40,167,69,0.13);
    }
    .view-cart-btn{
        width: 100%;
        background-color: #d62323;
        color: #fff;
        border: none;
        padding: 10px 20px;
        cursor: pointer;
        font-size: 16px;
        border-radius: 6px;
        font-weight: bold;
        box-shadow: 0 2px 8px rgba(255,0,0,0.08);
        transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
    }
    .view-cart-btn:hover {
        background-color: #fff;
        color: #ff0000;
        box-shadow: 0 4px 16px rgba(255,0,0,0.13);
    }
    .view-cart-btn:active {
        background-color: #ffeaea;
        color: #c40000;
    }
    .close-cart:hover {
        color: #e74c3c;
    }
   
/* AddToCardInfo   */
/* Footer styles */
.footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px 0;
    position: relative;
    bottom: 0;
    width: 100%;
    
}
.footer p {
    margin: 5px 0;
    font-size: 14px;
}
.footer a {
    color: #ff0000;
    text-decoration: none;
}


/* Responsive for Mobile */

.hamburger {
    display: none;
    font-size: 24px;
    cursor: pointer;
    margin-left: auto;
    color: white;
}

/* Mobile Responsive Style */
@media (max-width: 768px) {
    .headline{
        font-weight: bold; 
        font-size: 20px;
    }
    .mbNone{
        display: none;
    }
    .header {
        flex-wrap: wrap;
        justify-content: flex-start;
        padding: 10px;
    }

    .hamburger {
        display: block;
    }

    .menu.menu-left {
        width: 100%;
        display: none;
        flex-direction: column;
    }

    .menu.menu-left ul {
        flex-direction: column;
        width: 100%;
        background-color: #444;
        padding: 10px 0;
        margin: 0;
    }

    .menu.menu-left ul li {
        padding: 10px 20px;
        width: 100%;
        color: white;
        border-bottom: 1px solid #555;
    }

    .menu.menu-right {
        /* margin-left: auto; right :5px thakbe */
        display: flex;
        align-items: center;
        margin-left: auto;
        margin-right: 15px;


    }

    .logo img {
        width: 60px;
    }

    .Cart-Count {
        font-size: 10px;
        
    }
    .catagory{
        width: 100%;
        margin: 0px;
        padding: 0px;
        

    }
    .catagory-list ul{

        flex-direction: column;
        align-items: center;
        padding: 0px;
    }
    .catagory-list ul li{
        height: 200px;
        width: 100%;
         margin: 2px;
        padding: 0px;
    }
    .cat-img{
        width: 100%;
        height: 200px;
        object-fit: cover;
    }
    .product-item{
        width: 38%;
        margin: 10px 0;
        padding: 10px;
        box-shadow: none;
    }
    .products-list {
        padding: 0px;
        justify-content: center;
    }

    
    
}

