/* Reset default margins and paddings */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Prevent horizontal scroll and ensure full width */
html, body {
    width: 100%;
    overflow-x: hidden;
}

/* Body styling */
body {
    font-family:'reddit sans' , sans-serif,'Segoe UI', Arial;
    background-color: #f0f0f0;
    color: #333;
}



/* Navigation bar */
nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2%;
    background-color: white;
    color: black;
    font-size: 20px;

}
.menu-bar-container {
    display: flex;
    cursor: pointer;
    align-items: center;
    gap: 10px;
    padding: 10px;
    display: none;
}
.img:hover {
    transform: scale(1.13);
    
}

nav .img img {
    height: 105px;
    width: 110px;
}

nav .brandname {
    font-weight: bold;
    font-size: 36px;
    animation: clearthetext 1.6s ease-in-out ;
}
    
/* }
@keyframes flowtingtext{
    0%{
        left: -200px;
    }
    100%{
        left: 700px;
        
    }
} */

@keyframes clearthetext{
    0%{
        filter: blur(10px);
        opacity: 0;
    }
    100%{
        filter: blur(0px);
        opacity: 1;
    }
}
nav .about a {
    text-decoration: none;
    color: black;
}

/* Banner image */
.functionimg{
    display: flex;
    width: 100%;
    scroll-snap-type: x mandatory;
    overflow-x: auto;
    scrollbar-width: none;
    scrollbar-color: transparent;
}
/* }
.functionimg{
    display: none;
} */
/* }
.childslide::-webkit-scrollbar{
    width: 0px;
    background:transparent;
    display: none;
} */
.childslide{
    flex: 0 0 100%;
    scroll-snap-align: start;
    
}

.functionimg img {
    width: 100%;
    height: auto;
    display: block;
}
.most-sell{
    width: 99%;
    height: 7vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: larger;
    font-weight:600;
    text-decoration:#ffb347;
 
    
}
@keyframes movetoright{
    0%{
        left: -200px;
    }
    100%{
        left:0px;
    }
}
.circle-container{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 96%;
    height: 16vh;
    margin-top: 10px;
    margin-bottom: 20px;

}
.text-1-circle{
    font-size: small;
    display: flex;
    align-items: center;
    
}
.circle-parent a{
    color: black;
    text-decoration: none;

}

.circle-parent{
    height: 15vh;
    width: 92%;
    
    display: grid;
    grid-template-columns: 100px 100px 100px ;
    margin: 20px 0px;
    gap: 40px;
    justify-content: center;
    
}

.circle-1{
    margin-left: 20px;
    
    
}
.circle-1 img{
    border-radius: 90px; 
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 4px solid transparent;
    
    
}
/* All sets text */
.allsettxt {
    
    text-align: center;
    font-size: 27px;
    font-weight: bold;
    margin: 30px 0;
    
}

/* View more button */
.prntveiws {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.viewmore {
    border: 2px solid grey;
    border-radius: 5px;
    background-color: black;
    color: white;
    padding: 10px 20px;
    text-align: center;
}

/* Product container */
.prntcontainer {
    display: flex;
    justify-content: center;
    margin: 60px 0;
}

.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    width: 90%;
}

/* Product boxes */
.boxes {
    flex: 1 1 200px;
    max-width: 200px;
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    font-family: PlayballRegular;
}

.boxes img {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
}

.txt1 {
    font-weight: bold;
    margin-bottom: 10px;
}

.rate1 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.buynow button {
    border: none;
    background-color: black;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    z-index: 1;
}
.buynow button a{
    color: white;
}
.green{
    color: green;
    font-size: large;
    margin-top: 10px;
}

/* WhatsApp Modal */

/* Footer styling */
footer {
    background: #222;
    color: #fff;
    padding: 30px 0 10px 0;
    font-family: Arial, sans-serif;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 0 20px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2em;
    font-weight: bold;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #ffb347;
}

.footer-copy {
    font-size: 0.95em;
    opacity: 0.8;
    flex-basis: 100%;
    text-align: center;
    margin-top: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    nav {
        flex-direction: row;
        align-items: center;
        gap: 15px;
        margin-bottom: 10px;
    }
    .most-sell{
           animation: movetoright 2s ease-in-out 1;
    position: relative;
    }
    .container {
        flex-direction: column;
        align-items: center;
        display: grid;
        grid-template-columns: 188px 188px;
    }
    .img img {
        height: 80px;
        width: 85px;
    }
    .about {
        font-size: 19px;
    }


    .boxes {
        max-width: 100%;
    }

    .footer-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-copy {
        text-align: left;
    }
    .functionimg{
        display: flex;
        width: 100%;
        height: auto;
    }
    .sec-container {
    width: 100%;
    gap: 15px;
    padding: 0;
    }
    .sec-container2 {
    width: 100%;
    gap: 10px;
    padding: 0;
    flex-direction: column;
    align-items: center;
    font-size: 13px;
    }
    nav .brandname {
        font-size: 20px;
        text-align: center;
    }
    .allsettxt{
        margin-top: 60px;
    }
    
}
@media screen and (min-width: 769px) {
    .circle-parent {
        grid-template-columns: 190px 190px 190px;
        gap: 60px;
        width: 80%;
        height: 18vh;
    }

    .circle-1 img {
        width: 120px;
        height: 120px;
        border-radius: 50%;
        border: 4px solid #ffb347;
        box-shadow: 0 4px 18px rgba(0,0,0,0.12);
        transition: transform 0.3s, box-shadow 0.3s;
    }

    .circle-1 img:hover {
        transform: scale(1.08) rotate(-3deg);
        box-shadow: 0 8px 28px rgba(255,179,71,0.25);
        border-color: #ff9800;
    }

    .text-1-circle {
        font-size: 1.1em;
        font-weight: 600;
        color: #444;
        margin-top: 10px;
        justify-content: center;
        text-align: center;
    }

    .circle-1 {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-left: 0;
        
        border-radius: 20px;
        padding: 18px 8px 10px 8px;
        box-shadow: 0 2px 12px rgba(255,179,71,0.08);
        transition: box-shadow 0.3s;
    }

    .circle-1:hover {
        box-shadow: 0 6px 24px rgba(255,179,71,0.18);
    }
    .allsettxt{
        margin-top: 90px;
    }
}
a{
    text-decoration: none;
    color: white;
}

.boxes:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}
.sec-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    margin: 20px;
}

.sec-container2 a{
    color : black;


    text-decoration: none;
    font-weight: 600;
}
.sec-container2 a:hover {
    color: #f0eeeb;
    background-color: #615f5f;
    transform: scale(1.05);
    transition: transform 0.3s ease, background-color 0.3s ease;
    border-radius: 10px;
    padding: 10px;

}
.tap-img-1 a{
    color:black;
}
.menu-name{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    margin-top: 30vh;
    margin-left: -5vw;
}

.video-container{
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 10px;

}
.main-video{
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-1{
    display: flex;
    flex-direction: row;
    justify-content: center;

    width: 100%;
    background-color: rgb(221, 229, 227);
}
.text-video{
    width: 30%;
    display: flex;
    flex-direction: column;
    justify-content: center;
        align-items: center;
}


@media (max-width:768px) {
      .video-1{
        flex-direction: column;
        
      }
      .text-video{
        padding: 40px;
        width: 100%;
        justify-content: center;
        align-items: center;
      }
      .address{
        display: none;
      }
    
}
.address a{
    color: black;
      padding: 14px;
      font-weight: 500;

}
.menu-bar{
    position: fixed;
    
    width: 24vw;
    height: 800px;
    right: -100vw;
    background-color: rgb(59, 59, 59);
    border: 6px solid ;
    border-image: linear-gradient(40deg,white,purple,black)1;
    z-index: 1;
    top: 36px;
    transition: all 0.4s ease-in-out;
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
}
.active{
    right: 0%;
}
.lists{
    display: flex;
    flex-direction: column;
    gap:15px;
    margin-left: 55px;
    margin-top: 50px;
}
.menu-name p{
    display: flex;
    color:white;
    flex-direction: column;
}
.menu-name {
    display: flex;
    flex-direction: column;
}
.lists ul {
 gap: 40px;
 display: flex;
 flex-direction: column;
 list-style: none;
 color: black;

}

.close{
    cursor: pointer;
    position: absolute;
    z-index: 2;
    top: 3px;
    left: 12px;
    font-size: 33px;
    width: 50px;
    display: flex;
    color: white;
}
@media (max-width:768px) {
    .menu-bar-container{
        display: flex;
    }
    .menu-bar{
        width: 66vw;
        height: 90vh;
        
    }
}