 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
    font-family: Arial, sans-serif;
 }
 body {
    background: hsl(32, 100%, 89%);
    
 }

 header {
   
     background-color: #333;
     color: #fff;
     padding: 10px;
     text-align: center;
     
   
     
 }
nav {
    background-color: #f2f2f2;
    padding: 10px;
    text-align: center;
    font-weight: bold;
    font-size: 20px;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

nav li {
    display: inline-block;
    margin: 0 10px;
}

nav a {
    color: #333;
    text-decoration: none;
    padding: 5px 10px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

nav a:hover {
    background-color: #333;
    color: #fff;
}

@media (max-width: 768px) {
    nav {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    nav li {
        display: block;
        margin: 10px 0;
    }
}
section {
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.item {
    width: 300px;
    margin: 20px;
    box-shadow: 0 0 10px rgba(241, 53, 141, 0.562);
    border-radius: 5px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* Align text to the left */
    transition: transform 0.3s ease;
    margin-top: 50px;
    margin-bottom: 50px;
    background-color: antiquewhite;
}

@media (max-width: 768px) {
    .item {
        width: 90%;
        margin: 20px auto;
    }
}

.item:hover {
    transform: translateY(-10px);
}

.item img {
    width: 100%;
    max-height: 250px;
}

.item h3 {
    margin: 10px;
    padding-left: 15px;
    text-align: left;
    /* Align heading to the left */
}

.item span {
    margin: 10px;
    line-height: 0.5;
    padding-left: 15px;
    text-align: left;
    /* Align span to the left */
}

.item {
    position: relative;
}

.price {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 1.5em;
    display: none;
    padding: 10px 10px;
    background-color: #f2f2f2;
    border: #000000 1px solid;
    border-radius: 50px;
}

.item:hover .price {
    display: block;
}

.item:hover .price1 {
    display: block;
}

.item:hover .price2 {
    display: block;
}
.stocks {
    text-align: left;
    color: #ff0000;
}
a{
    text-decoration: none;
}

.orderNow{
    background-color: #000000;
    border: #ff0000 1px solid;
    border-radius: 5%;
    padding: 10px 5px;
    color: #ffffff;
}


.copy {
    margin-top: 20%;
    font-weight: bold;
    color: #000000;
}


.back-btn {
    position: fixed;
    top: 80%;
    right: 20px;
    z-index: 9999;
  
}

.back-btn a{
    border: #00ffea 1px solid;
    background-color: #000000;
    padding: 10px 10px;
    border-radius: 50%;
    text-decoration: none;
    margin-right: -90%;

}
.back-btn i{
    font-size: 15px;
    color: #ffffff;
    font-weight: bolder;
    margin-right: 5px;
}
.back-btn a:hover {
    
    background-color: #000000;
}
.back-btn i:hover {
    color: #ffffff;
}

.back-btn {
    position: fixed;
    top: 80%;
    right: 20px;
    z-index: 9999;
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0);
    }
}