* {
    text-decoration: none;
    margin: 0;
    padding: 0;
    box-sizing: border-box; /* Ensures padding and border are included in the element's total width and height */
    user-select: none;

}

body {
    color: white;
    overflow-x: hidden; /* Hide horizontal scrollbar */
    height: 100%;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Customize the width of the scrollbar */
::-webkit-scrollbar {
    width: 15px; /* Change this value to adjust the width */
}

/* Customize the track (background) of the scrollbar */
::-webkit-scrollbar-track {
    background-color: #9f9f9f; /* Change this to your desired background color */
}

/* Customize the scrollbar thumb (the draggable part) */
::-webkit-scrollbar-thumb {
    background-color: #2d2d2d; /* Change this to your desired thumb color */
}


.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 80%;
    padding: 15px;
    margin: 10px auto;
    border-radius: 30px;
    position: fixed;
    top: 0px; /* Adjust this value to control the distance from the top */
    left: 50%;
    width: 80%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.679); /* Slightly transparent black */
    z-index: 1000;
    box-shadow: black 2px 2px 20px;
}


.logo {
    display: inline-block;
}

.topnav {
    display: flex;
    max-width: 100%;
}

.topnav-text {
    display: flex;
}

.topnav-text a {
    color: white; /* Ensures text color is visible */
    padding: 0 15px; /* Adds spacing between the navigation items */
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    transition: color 0.3s ease; /* Smooth color transition on hover */
}

.topnav-text a.active {
    color: rgb(0, 251, 255); /* Ensures text color is visible */
}

.topnav-text a:hover {
    color: rgb(0, 251, 255); /* Change this to your desired hover color */
}

.welcome {
    position: relative;
    padding-top: 40vh; /* Adjusts padding to ensure content is visible below the fixed header */
    background-image: url(images/iVc2Q8woR6-kRa9TIqZ77w.webp);
    min-height: 80vh;
    height: 100vh;
    text-shadow: black 3px 3px 7px;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    max-width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;

}

.welcome::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.229); /* Adjust the opacity as needed */
    z-index: 1; /* Ensure the overlay is below the content */
}

.welcome * {
    position: relative;
    z-index: 2; /* Ensure the content is above the overlay */
}


.frostandflareclassics1{
    background-color: rgb(0, 0, 0);
    padding-bottom: 50px;
    background-image: url(images/iVc2Q8woR6-kRa9TIqZ77w1.webp);
    background-size: cover;
    background-position: center;    
    background-repeat: no-repeat;
    max-width: 100%;
}

.heading1{
    color: red;
    padding-top: 20px;
    padding-bottom: 10px;
    border-radius: 50px;
    text-shadow: rgb(0, 0, 0) 5px 5px 7px;
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

.design1{
    border-radius: 30px;
    width: 350px;
    margin-bottom: 30px;
    height: 500px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: inline-block;
    background-color: rgba(0, 0, 0, 0.353);
    border: 5px solid #000000; /* Add your desired border style */
    overflow: hidden;
}

@keyframes pendulum-wave {
    0% {
        transform: rotate(5deg);
    }
    25% {
        transform: rotate(-5deg);
    }
    50% {
        transform: rotate(5deg);
    }
    75% {
        transform: rotate(-5deg);
    }
    100% {
        transform: rotate(5deg);
    }
}

.design1:hover{
    box-shadow: #00fffb 2px 2px 10px 5px;
}


.design2{
    border-radius: 30px;
    width: 350px;
    margin-bottom: 30px;
    height: 500px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: inline-block;
    background-color: rgba(0, 0, 0, 0.353);
    border: 5px solid #000000; /* Add your desired border style */
    overflow: hidden;
}

.design2:hover{
    box-shadow: #00fffb 2px 2px 10px 5px;
}

.product-info {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    text-shadow: 3px 3px 5px black;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.384);
    padding: 10px;
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    border-radius: 10px;
}

.product-info:hover{
    background-color: #0789898a;
}

.price, .description {
    color: white;
    margin-bottom: 5px;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.buy-now {
    background-color: #ff0000;
    color: black;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    box-shadow: black 2px 2px 10px;
}

.buy-now:hover {
    background-color: #00fffba0;
    box-shadow: black 0px 0px 0px;
}
.footer {
    background-color: #000;
    color: white;
    padding: 50px 20px;
    text-align: center;
    margin-top: auto;
    font-family: Arial, sans-serif;
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 100%;
}

.footer-section {
    width: 100%;
    max-width: 400px;
    margin-bottom: 20px;
}

.footer-section h2 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #00ffff;
}

.footer-section p {
    font-size: 14px;
    margin: 5px 0;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

.social-media {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.social-media a {
    color: white;
    margin: 0 10px;
    font-size: 18px;
    transition: color 0.3s ease;
    
}

.social-media a:hover {
    color: #00ffff;
}
.login-button {
    margin-top: 10px; /* Adds space between the social media icons and the button */
    padding: 10px 15px;
    font-size: 16px;
    background-color: #ffffff; /* Change to desired color */
    color: #000000;
    border: none;
    border-radius: 5px; /* Rounded corners */
    cursor: pointer;
    font-family: Arial, sans-serif; /* Matches your site's font */
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2); /* Adds a shadow for some depth */
}

.login-button:hover {
    background-color: #00f7ff; /* Slightly lighter color on hover */
}


.footer-bottom {
    text-align: center;
    padding: 10px 0;
    border-top: 1px solid #333;
    margin-top: 20px;
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

.footer-bottom p {
    font-size: 14px;
}

@media screen and (min-width: 768px) {
    .footer-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }

    .footer-section {
        width: 30%;
        margin-bottom: 0;
    }
}


/* Add this if you are using Font Awesome for icons */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css');

.more-products {
    background-color: #00fffb;
    color: black;
    border: none;
    box-shadow: #000000 2px 2px 7px;
    padding: 15px 30px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 20px; /* Adds space above the button */
    font-size: 16px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.more-products:hover {
    background-color: #ff0000;
    box-shadow: #000000 0px 0px 0px;
}

.shop1{
    padding-top: 100px;
    flex: 1;
    background-image: url(images/iVc2Q8woR6-kRa9TIqZ77w1.webp);
    background-size: cover;
    background-position: center;    
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.design3,.design4,.design5,.design6,.design7,.design8,.design9,.design10,.design11,.design12,.design13,.design14,.design18,.design19{
    border-radius: 30px;
    width: 300px;
    height: 300px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: inline-block;
    background-color: rgba(0, 0, 0, 0.353);
    border: 5px solid #000000; /* Add your desired border style */
    overflow: hidden; /* Ensure any overflow is hidden */
}
.product-imagehome {
    width: 100%; /* Make the image responsive */
    height: 100%; /* Maintain the aspect ratio */
    display: block; /* Prevent any bottom margin */
    object-fit: cover; /* Cover the area of the div */
    transform-origin: top center; /* Pivot point for the pendulum effect */
    /*animation: pendulum-wave 10s ease-in-out infinite;*/
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

.product-image {
    width: 100%; /* Make the image responsive */
    height: 100%; /* Maintain the aspect ratio */
    display: block; /* Prevent any bottom margin */
    object-fit: cover; /* Cover the area of the div */
    transform-origin: top center; /* Pivot point for the pendulum effect */
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

.product-image.fade {
    opacity: 0; /* This will be used to fade the image out */
    transform: scale(0.9); /* Shrink a bit for extra effect */
}

.product-imagehome.fade {
    opacity: 0; /* This will be used to fade the image out */
    transform: scale(0.9); /* Shrink a bit for extra effect */
}

.corner-images {
    position: absolute; /* Position relative to the parent */
    top: 10px; /* Adjust as needed */
    left: 10px; /* Adjust as needed */
    display: flex;
    flex-direction: column; /* Align small images in a column */
    z-index: 1; /* Higher z-index to place above the main image */
}

.small-image1 {
    width: 50px; /* Adjust the size as needed */
    height: auto; /* Maintain the aspect ratio */
    margin-bottom: 5px; /* Space between images */
    cursor: pointer; /* Change cursor to pointer on hover */
}

.small-image2 {
    width: 50px; /* Adjust the size as needed */
    height: auto; /* Maintain the aspect ratio */
    margin-bottom: 5px; /* Space between images */
    cursor: pointer; /* Change cursor to pointer on hover */
}
.small-image3 {
    width: 50px; /* Adjust the size as needed */
    height: auto; /* Maintain the aspect ratio */
    margin-bottom: 5px; /* Space between images */
    cursor: pointer; /* Change cursor to pointer on hover */
}



.design17{
    border-radius: 30px;
    display: inline-block;
    width: 300px;
    height: 300px;
    background-image: url(images/cuustomtshirt.png);
    background-size: cover;
    position: relative;
    background-position: center;
    background-color: rgba(0, 0, 0, 0.353);
    border: 5px solid #000000; /* Add your desired border style */
    transition: background-image 0.5s ease-in-out;
}


.design17:hover{
    background-image: url(images/customtshirtback.png);
    background-size: cover;
    background-position: center;
}


.shopdesigns{
    padding-top: 30px;
    padding-bottom: 100px;
}

.shop1{
    background-color:rgba(0, 0, 0, 0.459);
}

/* Existing CSS ... */

/* Responsive Menu Toggle Button */
.menu-toggle {
    display: none; /* Hide the button by default */
    color: white;
    padding: 5px 5px;
    border: none;
    background: none;
    cursor: pointer;
    font-size: 25px;
}

/* Base styles for the popup */
.popup {
    display: none; /* Hide by default */
    color: rgb(255, 255, 255);
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Center the popup */
    background-color: #000000;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 3px 3px 15px rgb(0, 0, 0);
    z-index: 9999; /* Ensure it is on top */
    width: 80%;
    max-width: 400px;
    text-align: center;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  }
  
  /* Close button style */
  .close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    color: white;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
  }
  
  /* Media query for smaller screens */
  @media (max-width: 1175px) {
    .popup {
      display: block; /* Show popup on smaller screens */
    }
  }


/* Responsive Navigation */
/* Responsive Navigation */
@media screen and (max-width: 768px) {
    @keyframes slideInFromRight {
        0% {
            transform: translateX(100%); /* Start from off-screen to the right */
            opacity: 0;
            visibility: hidden;
        }
        100% {
            transform: translateX(0); /* End at the original position */
            opacity: 1;
            visibility: visible;
        }
    }
    .topnav {
        position: fixed; /* Ensure it stays in place */
        top: 79.3px; /* Adjust based on your header height */
        right: 0;
        width: 50%; /* Full width of the screen */
        background-color: rgba(0, 0, 0, 0.582); /* Background color */
        z-index: 999;
        /* Initial hidden styles */
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        border-radius: 30px;
    }
    
    .topnav.show {
        opacity: 1;
        visibility: visible;
        animation: slideInFromRight 0.5s ease forwards;
    }

    .topnav-text {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .topnav-text a {
        padding: 10px;
        text-align: center;
        
    }

    .menu-toggle {
        display: block; /* Show the button on smaller screens */
    }
    

}

.designcontainer2 {
    display: flex;
    flex-direction: row;
    justify-content: center; /* Center horizontally */
    gap: 20px; /* Space between items */
    padding: 20px;
    flex-wrap: wrap; /* Allows items to move to the next line if they don't fit */
}

.designcontainer {
    display: flex;
    flex-direction:row;
    justify-content: center; /* Center horizontally */
    gap: 20px; /* Space between items */
}

@media (max-width: 600px) {
    .designcontainer {
        flex-direction: column; /* Stack items vertically on small screens */
        align-items: center;
    }
    .designcontainer2 {
        flex-direction: column; /* Stack items vertically on small screens */
        align-items: center;
    }
}



.ordercontainer{
    padding-top: 120px;
    height: 100%;
    display: flex;  
    align-items: center;
    justify-content: space-evenly;
    margin-bottom: 100px;
}

.order-left{
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 20px;
}


.order-left-title h2{
    font-weight: 600;
    color: #00fff7;
    text-shadow: 2px 2px 5px black;
    font-size: 40px;
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    margin-bottom: 5px;

}

.order-left-title hr{
    border: none;
    box-shadow: 2px 2px 5px black;
    width: 120px;
    height: 5px;
    background-color: #ff0000;
    border-radius: 10px;
    margin-bottom: 20px;
}

.order-inputs{
    width: 400px;
    height: 50px;
    border: none;
    outline: none;
    padding-left: 25px;
    padding-right: 25px;
    font-weight: 500;
    color: rgb(2, 176, 162);
    border-radius: 50px;    

}

.order-left textarea{
    height: 140px;
    padding-top: 15px;
    border-radius: 20px;
    font-family:Arial, Helvetica, sans-serif;
}

.order-inputs:focus{
    border: 2px solid black;
}

.order-inputs::placeholder{
    color: red;
}

.order-left button{
    display: flex;
    align-items: center;
    padding: 15px 30px;
    font-size: 16px;
    color: rgb(0, 255, 255);
    gap: 10px;
    border: 2px solid rgb(148, 148, 148);
    border-radius: 50px;
    box-shadow: rgb(0, 0, 0) 2px 2px 5px;
    background-color: #000000;
    cursor: pointer;
    transition: box-shadow 1s ease ;
}

.order-total {
    background-color: #333; /* Slightly different background to distinguish from form */
    color: white; /* White text color for visibility */
    padding: 15px; /* Padding around the total amount */
    border-radius: 10px; /* Rounded corners */
    text-align: center; /* Center the text */
}

.order-total p {
    font-size: 18px; /* Font size for the total amount */
    margin: 0; /* Remove default margins */
}

.order-total span {
    font-weight: bold; /* Make the total amount bold */
    color: #00fffb; /* Optional color for emphasis */
}

.delivery{
    color: rgb(255, 255, 255); /* White text color for visibility */
    padding: 5px; /* Padding around the total amount */
    border-radius: 10px; /* Rounded corners */
    margin-top: 10px; /* Space above the total amount */
    text-align: left; /* Center the text */ 
    
}

@media (max-width:800px){
    
    .order-inputs{
        width: 80vw;
    }
    

    .ordercontainer {
        flex-direction: column; /* Stack elements vertically */
    }

    .order-right {
        display: flex;
        flex-direction: column; /* Stack vertically */
        align-items: center; /* Center content horizontally */
        width: 80%; /* Adjust width for smaller screens */
        max-width: 200px; /* Limit maximum width */
        height: auto; /* Maintain aspect ratio */
        margin-top: 40px;
        order: -1;

    }

}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
    animation: fadeIn 0.5s;
}

.modal-content {
    background-color: #000000;
    margin: 15% auto;
    padding: 40px;
    border: 1px solid #00d9ff;
    width: 80%;
    max-width: 500px;
    border-radius: 10px;
    text-align: center;
    animation: slideIn 0.5s;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: rgb(0, 255, 238);
    text-decoration: none;
    cursor: pointer;
}

@keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
}

@keyframes slideIn {
    from {transform: translateY(-50px); opacity: 0;}
    to {transform: translateY(0); opacity: 1;}
}


/* Add this to your CSS file or within a <style> tag */
.notification {
    display: none;
    background-color: #000000; /* Red background color */
    color: #00fbff; /* White text color */
    padding: 15px;
    border-radius: 5px;
    position: fixed;
    top: 100px; /* Adjust based on your navbar height */
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    font-size: 16px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
}
.notification.show {
    display: block;
}

@media (max-width:800px){
    .notification{
        font-size: 13px;
        top: 250px;
    }
    
}

.welcome-button{
    display: flex;
    justify-content: center;
    padding: 20px;
    z-index: 1;

}


.shopnow{
    display: inline-flex;
    align-items: center;
    border: none;
    cursor: pointer;
    font-size: 16px;
    margin: 10px;
    background-color: aqua;
    color: black;
    box-shadow: #000000 2px 2px 7px;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 20px; /* Adds space above the button */
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}


.shopnow:hover{
    background-color:rgba(0, 255, 255, 0.538);
    box-shadow: #000000 0px 0px 0px;
}
.flarebucks:hover{
    background-color: rgba(255, 0, 0, 0.555);
    box-shadow: #000000 0px 0px 0px;
}


.flarebucks {
    display: inline-flex;
    align-items: center;
    border: none;
    cursor: pointer;
    font-size: 16px;
    margin: 10px;
    background-color: #ff0000;
    color: black;
    box-shadow: #000000 2px 2px 7px;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 20px; /* Adds space above the button */
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

.button-image {
    margin-right: 10px; /* Adjust the spacing between the image and text */
    height: 20px;
}


.falling-images-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1000; /* Ensure it's above other content */
    pointer-events: none; /* Allow clicks to pass through */
}

.falling-image {
    position: absolute;
    width: 50px; /* Adjust width as needed */
    height: auto;
    opacity: 0;
    animation: fall 2s ease-in infinite; /* Adjust duration as needed */
}

/* Extend the fall distance */
@keyframes fall {
    0% {
        transform: translateY(-100%); /* Start above the viewport */
        opacity: 1;
    }
    100% {
        transform: translateY(550%); /* Move a bit further down beyond the viewport */
        opacity: 0;
    }
}


.corner-info {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    align-items: center;
}

.corner-text {
    font-size: 20px; /* Adjust the text size as needed */
    color: rgb(255, 255, 255);
    text-shadow: #000 2px 2px 3px;
    margin-right: 10px; /* Space between text and image */
    font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-weight: bold;
}



.rotating-image {
    width: 35px; /* Adjust the size as needed */
    height: 35px;
    animation: rotateY3D 2s linear infinite; /* Adjust the duration (2s) as needed */
    transform-style: preserve-3d; /* Ensure the 3D effect is preserved during the rotation */
    box-shadow: black 2px 2px 10px;
    border-radius: 20px;
}

@keyframes rotateY3D {
    from {
        transform: rotateY(0deg);
    }
    to {
        transform: rotateY(360deg);
    }
}

.designaimage{
    width: 100%;
    height: 100%;
    background-image: url('images/white\ back\ design.png');
    background-size: cover;
    background-position: center;
    transform-origin: top center; /* Pivot point for the pendulum effect */
    transition: background-image 0.5s ease-in-out;
    position:absolute;
}

.designaimage:hover{
    background-image: url('images/t\ shirt\ front\ 1.png');
    background-size: cover;
    background-position: center;
}



.designbimage{
    width: 100%;
    height: 100%;
    background-image: url('images/black\ back\ design.png');
    background-size: cover;
    background-position: center;
    transform-origin: top center; /* Pivot point for the pendulum effect */
    transition: background-image 0.5s ease-in-out;
    position:absolute;
}

.designbimage:hover{
    background-image: url('images/t\ shirt\ front\ 2.png');
    background-size: cover;
    background-position: center;
}

.designcimage{
    width: 100%;
    height: 100%;
    background-image: url('images/Dubai1\ back.png');
    background-size: cover;
    background-position: center;
    transform-origin: top center; /* Pivot point for the pendulum effect */
    transition: background-image 0.5s ease-in-out;
    position:absolute;
}

.designcimage:hover{
    background-image: url('images/Dubai1.png');
    background-size: cover;
    background-position: center;
}

.designdimage{
    width: 100%;
    height: 100%;
    background-image: url('images/befastorbelastback.png');
    background-size: cover;
    background-position: center;
    transform-origin: top center; /* Pivot point for the pendulum effect */
    transition: background-image 0.5s ease-in-out;
    position:absolute;
}

.designdimage:hover{
    background-image: url('images/befastorbelastfront.png');
    background-size: cover;
    background-position: center;
}

.designeimage{
    width: 100%;
    height: 100%;
    background-image: url('images/oneloveback.png');
    background-size: cover;
    background-position: center;
    transform-origin: top center; /* Pivot point for the pendulum effect */
    transition: background-image 0.5s ease-in-out;
    position:absolute;
}

.designeimage:hover{
    background-image: url('images/onelovefront.png');
    background-size: cover;
    background-position: center;
}

/* For the sliding top notice */
.top-notice {
    position: fixed;
    top: 100px; /* Adjusts the notice lower on the screen */
    right: 10px; /* Positions the notice on the right side */
    width: 300px; /* Sets a smaller width */
    background-color: #000000;
    color: aqua;
    font-size: 16px;
    padding: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    border: solid rgb(84, 84, 84);
    border-width: 2px;
    border-radius: 5px;
    display: none; /* Hidden initially */
    z-index: 900;
    animation: slideInRight 0.7s forwards; /* Sliding animation */
}

/* Sliding animation */
@keyframes slideInRight {
    0% {
      right: -300px; /* Starts off-screen */
    }
    100% {
      right: 20px; /* Slides into the right position */
    }
  }

  /* Close button */
.notice-close {
    position: absolute;
    top: 5px;
    right: 10px;
    background-color: transparent;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: white;
}

  /* Styling for the Shop Now button */
.notice-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 15px;
    background-color: red;
    color: black;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    transition: background-color 0.3s ease;
}



  