body{
    margin:0;
    font-family: Arial, sans-serif;

    background-image: url(" Background image.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

header {
    background: #111;
    color: white;
    padding: 15px;
    text-align: center;
}

.marquee {
    overflow: hidden;
    background: #e0e0e0;
    padding: 10px 0;
}

.marquee-track {
    display: flex;
    gap: 40px;
    animation: scroll 30s linear infinite;
}

.marquee img {
    height: 120px;
    border-radius: 10px;
}
@keyframes scroll {
    from { transform: translateX(100%); }
    to { transform: translateX(-100%); }
}
.promo-marquee {
    background: #ff6b6b;
    color: white;
    overflow: hidden;
    white-space: nowrap;
    padding: 12px 0;
    font-weight: bold;
}
@keyframes marqueeMove {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}
.marquee-content {
    display: inline-block;
    animation: marqueeMove 18s linear infinite;
}

.section-title {
    text-align: center;
    margin-top: 30px;
}

.products {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    padding: 20px;
}

.product {
    background: white;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    width: 220px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.product img {
    width: 100%;
    border-radius: 8px;
}

button {
    background: #111;
    color: white;
    border: none;
    padding: 10px;
    margin-top: 10px;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background: #444;
}

.cart {
    background: white;
    margin: 20px auto;
    padding: 20px;
    width: 80%;
    border-radius: 10px;
}

.footer{
    width: 100%;
    background: #222;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    clear: both;
}
.image-track{
display:flex;
gap:30px;
width:max-content;
animation:scrollImages 25s linear infinite;
}

.image-track img{
height:120px;
border-radius:10px;
}
@keyframes scrollImages{
0%{transform:translateX(0);}
100%{transform:translateX(-50%);}
}
.product-list{
    list-style: none;
    padding: 0;
}

.product-list li{
    display: flex;
    align-items: center;
    gap: 20px;
    background: white;
    padding: 15px;
    margin: 15px 0;
    border-radius: 10px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}

.product-list img{
    width: 80px;
    background: white;
    padding: 5px;
    border-radius: 10px;
}

.product-list span{
    flex: 1;
    font-weight: bold;
}

.product-list button{
    background:#2c7be5;
    color:white;
    border:none;
    padding:8px 12px;
    border-radius:6px;
    cursor:pointer;
}
.cart-box{
    position: sticky;
    top: 0;
    background: #ffffff;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    z-index: 100;
}

.cart-box button{
    background: green;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 6px;
    cursor: pointer;
}
.products h2{
    margin-top: 40px;
    font-size: 22px;
    color: #222;
}


.products{
    padding: 20px;
}

.section-nav{
    display: flex;
    gap: 10px;
    padding: 10px;
}

.section-nav a{
    background: #2c7be5;
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    text-decoration: none;
}
.product-section{
    background: white;
    padding: 20px;
    margin: 30px 0;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.product-section h2{
    margin-bottom: 10px;
    border-left: 6px solid #2c7be5;
    padding-left: 10px;
}
.product-section:nth-child(1){
    border-top: 5px solid #ff6b6b;
}

.product-section:nth-child(2){
    border-top: 5px solid #4ecdc4;
}

.product-section:nth-child(3){
    border-top: 5px solid #ffe66d;
}