@import url('https://fonts.googleapis.com/css2?family=Dancing+Script&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rubik+Distressed&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rubik+Dirt&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Mountains+of+Christmas&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100&display=swap');


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1; 
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #888; 
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #555; 
}

body
{
    overflow-x: hidden;
    width: 100%;
}

a
{
    text-decoration: none;
}

/* navbar */

.navbar
{   
    position: sticky;
    top:0;
    left:0;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color:#212529;
    z-index: 9999;
}

.nav-menu ul
{
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    padding: 20px;
}

.nav-menu ul li a
{
    text-decoration: none;
    margin: 2rem;
    color: white;
    font-weight: 600;
    font-size: 15px;
    position: relative;
    font-family: Roboto, sans-serif;
}

.nav-menu ul li a::after
{   
    content: "";
    position: absolute;
    height: 2px;
    background-color: white;
    left:0;
    bottom: -2px;
    width: 0;
    transition: all 0.7s;

}

.nav-menu ul li a:hover::after
{
    width: 100%;
    transition: all 0.4s;
}

.section-padding
{
    min-height: 100vh;
}

.nav-logo .nav-title
{
    color: rgb(255, 255, 137);
    cursor: pointer;
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    font-weight: 600;
    width: 100%;
    max-width: 100%;
    margin-left: 1rem;
}

.hamburger
{
    display: none;
}

.cart
{   
    height:38px;
    width: 36px;
    cursor: pointer;
    position: relative;
    bottom: 2px;
    margin-right: 3rem;
}

.navbar .cart i
{   
    position: relative;
    top:3px;
    font-size: 2rem;
    color:white;
}

.navbar .cart .cart-amount
{      
    position: absolute;
    color:rgb(255, 255, 144);
    font-size: 1rem;
    left: 30px;
    bottom:24px;
    font-weight: 600;
    z-index: 99;
}

.nav-menu ul li a:hover
{
    cursor: pointer;
}

/* home */

.home.section-padding
{   
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    width: 100%;
    max-width: 100%;
    background-image: url('/images/img/new3.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.home-title
{   
    display: flex;
    flex-direction: column;
    justify-content: center;
    cursor: default;
    column-gap: 1rem;
    color: white;
    font-family: 'Times New Roman', Times, serif;
    font-size: 1rem;
    margin-left: 3rem;
    margin-top: 8rem;
    gap: 1rem;
}

.home-title h4
{
    font-size: 4rem;
    font-family: 'Rubik Distressed', cursive;
    font-weight: 300;
    color: yellow;
    letter-spacing: 10px;
}

.home-title p
{
    color: #222;
    font-size: 1rem;
    font-weight: 900;
}

.buy
{
    padding: 15px 25px;
    margin-right: auto;
    border-radius: 1rem;
    background-color: yellow;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}

.buy a 
{   
    font-size: 1rem;
    font-weight: 600;
    color: #000;
}

.buy:hover
{
    transform: scale(1.2);
    transition: all 0.2s;
}

/* feature */

.feature
{   
    max-height: 50vh;
    width: 100%;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10rem;
    gap: 2rem;
    margin-top: 4rem;
    padding: 40px;
}

.feature-box
{   
    display: flex;
    height: 250px;
    width: 250px;
    max-width: auto;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-shadow: 3px 3px 3px 3px gray;
    cursor: default;
    background-color:rgba(255, 255, 255, 0.897);
    text-align: center;
    border-radius: 1rem;
}

.feature-box img
{
    height: 150px;
    width: 150px;
    object-fit: contain;
    padding: 10px;
}

.feature-box h6
{
    font-size: 1.2rem;
    padding: 5px;
    font-weight: 600;
    font-family:Arial, Helvetica, sans-serif;
    color: #222;
    margin-top: 1rem;
    letter-spacing: 2px;
}

/*  */


/* product */

.product.section-padding
{   
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;  
    margin-top: 2rem;  
    padding: 10px;
}

.products
{   
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    border: 1px solid yellow;
    border-radius: 1rem;
    padding: 40px;
    gap: 1rem;
}

.product-item
{   
    height: 410px;
    border-radius: 1rem;
    padding: 10px;
    border: 2px solid yellow;
}

.product-title
{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 1rem;
    max-width: 100%;
    padding: 0 20px;
}

.product-title h2
{
    font-family: Arial, Helvetica, sans-serif;
}

.product-title hr
{
    background-color: #222;
    width: 800px;
    height: 5px;
    margin-left: 1rem;
}

.product-desc
{
    display: flex;
    flex-direction: column;
    gap:1rem;
    justify-content: center;
}
.product-img img
{
    width: 230px;
    object-fit: contain;
    border-radius: 1rem;
    transition: all 0.6s;
    padding: 10px;
    cursor: pointer;
}

.product-img img:hover
{
    transform: scale(1.10);
    transition: all 0.6s;
}

.desc-title
{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1rem;
    font-family:'Times New Roman', Times, serif;
    cursor: default;
}

.counter
{
    display: flex;
    align-items: center;
    justify-content: center;
}

.counter-title
{
    margin: 0 auto;
    color: rgb(255, 102, 102);
    font-weight: 600;
    cursor: default;
}

.counter .quantity
{
    font-size: 1.5rem;
}

.counter i 
{   
    padding: 10px;
    background-color: rgb(255, 252, 81);
    color:#222;
    cursor: pointer;
    border-radius: 1rem;
    font-weight: 600;
    transition: all 0.4s;
    margin: 1rem;
}

.counter i:active
{
    transform: scale(1.4);
    transition: all 0.5s;
}

.price
{
    font-size: 1.2rem;
}

/* banner */

.banner
{   
    margin-top: 8rem;
    height: 200px;
    object-fit: contain;
    background-image: url("/images/img/banner/b2.jpg");
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container
{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: yellow;
    gap: 2rem;
    cursor: default;
}

.container h4
{
    color: #fff;
    letter-spacing: 1px;
    animation: glow 1.2s ease-in-out infinite alternate;
}

@keyframes glow
{
    from {
    text-shadow: 5px 5px 5px 20px #fff, 5px 5px 20px #fff, 5px 5px 30px #fdff82, 5px 5px 40px #fdff82, 5px 5px 50px #fdff82, 0 0 60px #fdff82, 0 0 70px #fdff82;
    }
    to {
    text-shadow: 0 0 20px #fff, 0 0 30px #fdff82, 0 0 40px #fdff82, 0 0 50px #fdff82, 0 0 60px #fdff82, 0 0 70px #fdff82, 0 0 80px #fdff82;
    }
}

.container h2
{
    letter-spacing: 2px;
}

.title
{
    color: red;
}

.button1
{
    padding: 10px 20px;
    border: none;
    background-color: rgb(134, 182, 39);
    color:white;
    border-radius: 1rem;
    font-weight: 600;
    transition: all 0.5s;
}

.button1:hover
{   
    cursor: pointer;
    background-color: olivedrab;
    transition: all 0.5s;
}

/* ad section  */

.ad
{    
    margin-top: 6rem;
    max-width: 100%;
    padding: 20px;
    gap:2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
}

.ad-box1
{
    height: 380px;
    width: 350px;
    background-image: url("/images/img/banner/b22.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 12px 12px 12px 12px gray;
    padding: 20px;
}

.box1-title
{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap:2rem;
    cursor: default;
}

.ad-box1 h2
{
    color: yellow;
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 2px;
    font-family: 'Montserrat', sans-serif;
}

.ad-box1 h4
{
    color: #fff;
    font-family: 'Segoe UI', sans-serif;
    font-size: 2.2rem;
    box-shadow: 2px 2px 2px 5px white;
    padding: 5px;
}

.ad-box1 span
{
    color: #222;
    font-weight: 900;
    letter-spacing: 2px;
    word-spacing: 4px;
    font-size: 15px;
}

.ad-box2
{
    height: 410px;
    width: 320px;
    background-image: url("/images/img/banner/b23.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 12px 12px 12px 12px gray;
}

.box2-title
{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap:2rem;
    cursor: default;
}

.ad-box2 h2
{
    color: #fff;
    font-size: 2.2rem;
    font-weight: 900;
    letter-spacing: 5px;
    font-family: 'Mountains of Christmas', cursive;
}

.ad-box2 h4
{
    color: rgb(250, 253, 65);
    font-weight: 600;
    font-size: 2rem;
    font-family: 'Times New Roman', Times, serif;
}

.ad-box2 span
{
    color: #fff;
    font-weight: 900;
    font-size: 16px;
}

.ad-box3
{
    height: 380px;
    width: 400px;
    background-image: url("/images/img/banner/b21.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 12px 12px 12px 12px gray;
}

.box3-title
{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap:2rem;
    cursor: default;
}

.ad-box3 h2
{
    color: #222;
    box-shadow: 2px 2px 2px 2px #222;
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 2px;
    font-family: 'Times New Roman', Times, serif;
    margin-bottom: 8rem;
    padding: 10px;
    border-radius: 1rem;
}

.ad-box3 h4
{
    color: yellow;
    font-weight: 600;
    font-size: 1.5rem;
    font-family: Arial, Helvetica, sans-serif;
    margin-bottom: 1rem;
}

.ad-box3 span
{
    color: #fff;
    font-weight: 900;
    font-size: 14px;
    margin-bottom: 1rem;
}

.ad-box4
{
    height: 400px;
    width: 500px;
    background-image: url("/images/img/banner/b24.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 20px 12px 12px 12px gray;
}

.box4-title
{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap:2rem;
    cursor: default;
}

.ad-box4 h2
{
    color: #fff;
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: 2px;
    font-family: 'Times New Roman', Times, serif;
}

.ad-box4 h4
{
    color: #fff;
    font-weight: 600;
    font-size: 1.8rem;
    font-family: Arial, Helvetica, sans-serif;
    letter-spacing: 2px;
    margin-top: 4rem;
}

.ad-box5
{
    height: 320px;
    width: 550px;
    background-image: url("/images/img/banner/b10.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 20px 12px 12px 12px gray;
}

.box5-title
{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap:2rem;
    cursor: default;
}

.ad-box5 h2
{
    color: #fff;
    font-size: 2.2rem;
    font-weight: 900;
    letter-spacing: 2px;
    font-family: 'Montserrat', sans-serif;
}

.ad-box5 h4
{
    color: #fff;
    font-weight: 600;
    font-size: 1.5rem;
    font-family: Arial, Helvetica, sans-serif;
    letter-spacing: 2px;
}

.ad-box5 span
{
    color: #fff;
    font-weight: 900;
    font-size: 15px;
    letter-spacing: 3px;
}

.ad-box5 .lara
{
    color:yellow;
}

.ad-box6
{
    height: 330px;
    width: 550px;
    background-image: url("/images/img/banner/b17.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 20px 12px 12px 12px gray;
}

.box6-title
{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap:2rem;
    cursor: default;
}

.ad-box6 h2
{
    color: #fff;
    font-size: 2.2rem;
    font-weight: 900;
    letter-spacing: 2px;
    font-family: 'Montserrat', sans-serif;
}

.ad-box6 h4
{
    color: #fff;
    font-weight: 600;
    font-size: 1.5rem;
    font-family: Arial, Helvetica, sans-serif;
    letter-spacing: 2px;
}

.ad-box6 span
{
    color: #222;
    font-weight: 900;
    font-size: 15px;
    letter-spacing: 3px;
}

.button2
{
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 1rem;
    color: #fff;
    font-weight: 600;
    border: 1px solid white;
    background-color: transparent;    
    transition: all 0.5s;
}

.button2:hover
{
    background-color: rgb(134, 179, 46);
    transition: all 0.5s;
}

/* newsletter section */

.newsletter
{
    height: 180px;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 6rem;
}

.newsletter-img
{
    background-image: url("/images/img/banner/b25.jpg");
    height: 100%;
    width: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.newsletter-img h2
{
    color: #fff;
}

.newsletter-img h3
{
    color: #fff;
    word-spacing: 6px;
    font-weight: 300;
}

.sign-up
{   
    display: flex;
    padding: 10px;
}

.sign
{
    padding: 15px 20px;
    background-color: #000;
    color: #fff;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.4s;
}

.sign:hover
{
    transform: scale(1.1);
    transition: all 0.4s;
}


.sign-up input
{
    padding: 10px 40px;
    font-size: 1rem;
    font-weight: 600;
    outline: none;
}

.special
{
    color: yellow;
}

/* footer section */

.footer
{     
    height: 370px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    background-color: #212529;
}

.col1
{
    display: flex;
    flex-direction: column;
    gap:2rem;
    align-items: flex-start;
    justify-content: center;
    margin-left: 2rem;
    padding: 5px;
}

.col1 .contact
{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap:1.5rem;
    color: #fff;
    cursor: default;
}

.col1 .contact h2
{
    font-size: 1.2rem;
}

.col1 .contact p
{
    font-size: 15px;
}

.footer-logo
{
    font-family: 'Dancing Script', cursive;
    font-size: 2.8rem;
    color: yellow;
    cursor: default;
    padding: 10px;
    margin-left: -0.5rem;
}

.social
{
    display: flex;
    font-size: 1.7rem;
    gap:1rem;
    cursor: default;
}

.social i
{
    cursor: pointer;
}

.facebook
{
    color: #3b5998
}

.twitter
{
    color: #00acee;
}

.instagram
{
    color:#3f729b;
}

.linkedin
{
    color: #0072b1;
}

.social-title
{
    color: #fff;
    font-weight: 600;
    font-size: 1.3rem;
}

.contact2
{
    color: yellow;
    font-weight: 600;
}

.col2
{
    display: flex;
    flex-direction: column;
    gap:1rem;
    align-items: flex-start;
    justify-content: center;
    margin-left: 2rem;
    margin-top: 2rem;
    color: white;
}

.col2 h3
{
    font-size: 28px;
    cursor: default;
}

.col2 a
{   
    font-size: 20px;
    color:white;
}

.col3
{
    display: flex;
    flex-direction: column;
    gap:1rem;
    align-items: flex-start;
    justify-content: center;
    margin-right: 1rem;
    margin-top: 2rem;
    color: white;
}

.col3 h3
{
    font-size: 28px;
    cursor: default;
}

.col3 a
{   
    font-size: 20px;
    color: white;
}

.col4
{
    display: flex;
    flex-direction: column;
    gap:1rem;
    align-items: flex-start;
    justify-content: center;
    margin-right: 1rem;
    margin-top: 2rem;
    color: white;
}

.col4 h3 
{
    font-size: 28px;
    cursor: default;
}

.col4 p
{
    color: white;
    font-weight: 600;
    cursor: default;
    font-size: 20px;
}

.purchase-img
{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.google
{   
    height: 30px;
    width: 80px;
    background-image: url("/images/img/banner/b27.png");
    object-fit: contain;
    cursor: pointer;
}

.apple
{
    height: 30px;
    width: 80px;
    background-image: url("/images/img/banner/b28.png");
    object-fit: contain;
    cursor: pointer;
}

.payment
{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap:1rem;
}

.payment-box
{
    display: flex;
    align-items: center;
    justify-content: center;
    gap:1rem;
}

.payment-box a img
{
    height: 55px;
    width: 55px;
    cursor: pointer;
}

.copyright
{   
    height: 50px;
    background-color: #222;
    color: white;
    padding: 10px;
    font-weight:600;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: default;
}

.footer-logo
{
    font-weight: 600;
}


@media screen and (max-width: 1399px)
{

    .col1 .contact h2
    {
        margin-bottom: 2rem;
        font-size: 1.2rem;
    }

    .col1 .contact p
    {
        margin-top: -1rem;
        font-size: 16px;
    }

    .footer-logo
    {
        font-family: 'Dancing Script', cursive;
        font-size: 2.5rem;
        color: yellow;
        cursor: default;
    }

    .social
    {
        display: flex;
        font-size: 1.2rem;
        gap:1rem;
        cursor: default;
    }

    .social-title
    {
        color: #fff;
        font-weight: 600;
        font-size: 1.1rem;
    }

    .contact2
    {
        color: yellow;
        font-weight: 600;
    }

    .col2
    {
        display: flex;
        flex-direction: column;
        gap:2rem;
        align-items: flex-start;
        justify-content: center;
        margin-left: 2rem;
        margin-top: 2rem;
        color: white;
        padding-top: 10px;
    }

    .col2 h3
    {
        font-size: 20px;
        cursor: default;
    }

    .col2 a
    {   
        font-size: 15px;
        color:white;
    }

    .col3
    {
        display: flex;
        flex-direction: column;
        gap:2rem;
        align-items: flex-start;
        justify-content: center;
        margin-right: 1rem;
        margin-top: 2rem;
        color: white;
        padding-top: 10px;
    }

    .col3 h3
    {
        font-size: 20px;
        cursor: default;
    }

    .col3 a
    {   
        font-size: 15px;
        color: white;
    }

    .col4
    {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
        justify-content: center;
        color: white;
        padding-top: 10px;        
        margin-top: 2rem;
        margin-right: 5rem;
    }

    .col4 h3 
    {
        font-size: 20px;
        cursor: default;
    }

    .col4 p
    {
        color: white;
        font-weight: 600;
        cursor: default;
        font-size: 15px;
    }

    .payment-box a img
    {
        height: 45px;
        width: 45px;
        cursor: pointer;
    }

    .copyright
    {
        height: 25px;
        font-size: 1rem;
    }

    .purchase-img
    {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 1rem;
    }

    .google
    {   
        height: 30px;
        width: 80px;
        background-image: url("/images/img/banner/b27.png");
        background-size: contain;
        background-repeat: no-repeat;
        cursor: pointer;
    }

    .apple
    {
        height: 30px;
        width: 80px;
        background-image: url("/images/img/banner/b28.png");
        background-size: contain;
        background-repeat: no-repeat;
        cursor: pointer;
    }

}

@media screen and (max-width: 1440px)
{
    
    .col4
    {
        margin-right: 4rem;
    }

    .google
    {   
        height: 50px;
        width: 160px;
        background-image: url("/images/img/banner/b27.png");
        background-size: contain;
        background-repeat: no-repeat;
        cursor: pointer;
    }

    .apple
    {
        height: 50px;
        width: 160px;
        background-image: url("/images/img/banner/b28.png");
        background-size: contain;
        background-repeat: no-repeat;
        cursor: pointer;
    }

    .col4
    {
        gap:2rem;
    }

}

@media screen and (max-width: 1024px) 
{

    button.buy 
    {
        padding: 22px 33px;
    }

    .home-title h2
    {
        font-size: 2rem;
    }

    .home-title p
    {
        font-size: 1.5rem;
    }

    .nav-menu ul li a
    {
        font-size: 14px;
    }

    .ad
    {   
        display: grid;
        grid-template-columns: auto;
        gap:10px;
    }

    .ad-box1, .ad-box2, .ad-box3, .ad-box4, .ad-box5, .ad-box6
    {
        height: 400px;
        width: 600px;
        object-fit: contain;
    }

    .box1-title, .box2-title, .box3-title, .box4-title, .box5-title, .box6-title
    {
        text-align: center;
    }

    .footer
    {
        height: 460px;
    }

    .col1
    {
        display: flex;
        flex-direction: column;
        gap:2rem;
        align-items: flex-start;
        justify-content: center;
        margin-right: 5rem;
        margin-top: 2rem;
    }

    .col2
    {
        display: flex;
        flex-direction: column;
        gap:2rem;
        align-items: flex-start;
        justify-content: center;
        margin-right: 5rem;
        color: white;
    }

    .col3
    {
        display: flex;
        flex-direction: column;
        gap:2rem;
        align-items: flex-start;
        justify-content: center;
        margin-right: 4rem;
        color: white;
    }

    .col4
    {
        display: flex;
        flex-direction: column;
        gap:2rem;
        align-items: flex-start;
        justify-content: center;
        margin-right: 2rem;
        color: white;
    }

    .copyright
    {
        height: 30px;
    }

    .product-title hr
    {
        width: 700px;
    }

}

@media screen and (max-width: 768px) 
{   

.nav-menu ul
{
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    padding: 20px;
}

.nav-menu ul li a
{
    text-decoration: none;
    margin: 1.5rem;
    color: white;
    font-weight: 600;
    font-size: 15px;
    position: relative;
    font-family: Roboto, sans-serif;
}

    .home-title
    {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        margin-right: 14rem;

    }

    .home-title h4
    {
        font-size: 2rem;
        font-family: 'Rubik Distressed', cursive;
        font-weight: 300;
        color: yellow;
        letter-spacing: 10px;
    }

    .home-title p
    {
        color: #222;
        font-size: 1rem;
        font-weight: 900;
    }

    .nav-menu ul li a
    {
        font-size: 12px;
    }

    .home.section-padding
    {   
        background-size: cover;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        top:0;
    }

    .feature
    {
        height: 20vh;
    }

    .feature-box
    {
        height: 200px;
        width: 200px;
    }

    .feature-box img
    {
        height: 100px;
        width: 100px;
        object-fit: contain; 
    }

    .feature-box h6
    {
        font-size: 15px;
        margin-bottom: 4rem;
    }

    .product
    {
        margin-bottom: 2rem;
    }

    .product-title
    {
        margin-bottom: 2rem;
    }

    .product-title h2
    {
        font-size: 15px;
    }

    .product-title hr
    {
        width: 500px;
    }

    .products
    {   
        display: grid;
        grid-template-columns: auto auto;
    }

    .box
    {
        height: 400px;
        width: 500px;
    }

    .ad-box2
    {
        height: 600px;
    }

    .footer-logo
    {
        font-size: 25px;
    }

    .sign-up
    {
        height: 30px;
        width: 500px;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .sign-up input
    {
        height: 30px;
        width: 310px;
    }

    .sign-up input::placeholder
    {
        text-align: center;
        font-size: 12px;
    }

    .sign
    {
        height: 30px;
        width: 90px;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size:12px;
        overflow-wrap: normal;
    }

    .newsletter
    {
        height: 140px;
    }

    .newsletter-img
    {
        gap:1rem;
    }

    .newsletter-img h2
    {
        font-size: 18px;
    }

    .newsletter-img h3
    {
        font-size: 12px;
    }

    .footer
    {
        height: 360px;
    }

    .col1
    {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        margin:0;
        padding: 10px;
        margin-left: 10px;
    }

    .col2
    {
        display: flex;
        flex-direction: column;
        gap:2rem;
        align-items: flex-start;
        justify-content: center;
        margin-left: 2rem;
        color: white;
    }

    .col3
    {
        display: flex;
        flex-direction: column;
        gap:2rem;
        align-items: flex-start;
        justify-content: center;
        color: white;
    }

    .col4
    {
        display: flex;
        flex-direction: column;
        gap:2rem;
        align-items: flex-start;
        justify-content: center;
        color: white;
        margin:0;
        margin-top:2rem;
        padding: 10px;
    }

    .col1 .contact h2
    {
        font-size: 15px;
        margin:0;
    }

    .col1 .contact p
    {
        font-size: 13px;
    }

    .footer-logo
    {
        font-family: 'Dancing Script', cursive;
        font-size: 2.5rem;
        color: yellow;
        cursor: default;
    }

    .social
    {
        display: flex;
        font-size: 1rem;
        gap:1rem;
        cursor: default;
    }

    .social-title
    {
        color: #fff;
        font-weight: 600;
        font-size: 15px;
    }

    .contact2
    {
        color: yellow;
        font-weight: 600;
    }

    .col2 h3
    {
        font-size: 15px;
        cursor: default;
    }

    .col2 a
    {   
        font-size: 12px;
        color:white;
    }

    .col3 h3
    {
        font-size: 15px;
        cursor: default;
    }

    .col3 a
    {   
        font-size: 12px;
        color: white;
    }

    .col4 h3 
    {
        font-size: 15px;
        cursor: default;
    }

    .col4 p
    {
        color: white;
        font-weight: 600;
        cursor: default;
        font-size: 12px;
    }

    .google
    {
        height: 40px;
        width: 130px;
    }

    .apple
    {
        height: 40px;
        width: 130px;
    }

    .copyright
    {
        height: 30px;
    }
        
    button.buy 
    {
        padding: 12px 23px;
    }

    .payment-box img
    {
        height: 45px;
        width: 45px;
    }

}

@media screen and (max-width: 425px)
{

.navbar
{   
    position: sticky;
    top:0;
    right:0;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color:#212529;
    z-index: 999;
}

.nav-menu 
{   
    position: absolute;
    top: -800%;
    width: 100%;
    transition: all 0.5s ease-in;
    background-color: #222;
    padding: 20px;
}

.nav-menu ul
{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    width: 100%;
}

.nav-menu.active 
{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    list-style: none;
    background-color: #222;
    position: absolute;
    top: 60px;
    right:0%;
    width: 100%;
    min-height: 360px;
    min-width: 375px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    transition: top 0.5s ease;
    padding: 10px;
}

.nav-menu ul li
{
    border: 1px solid #fff;
    width: 100%;
    text-align: center;
    padding: 10px;
}

.nav-menu ul li a
{
    text-decoration: none;
    margin: 2rem;
    color: white;
    font-weight: 400;
    font-size: 18px;
    position: relative;
    cursor: pointer;
}

.cart
{
    position: relative;
    left: 50px;
    bottom: 2px;
    margin:0;
}

.hamburger
{   
    position: relative;
    right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 35px;
    width: 35px;
    border: 1px solid #fff;
    cursor: pointer;
    transition: all 0.5s ease-in-out;
}

.hamburger-icon
{   
    width: 15px;
    height: 2px;
    background : #fff;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(255, 101, 47, .2);
    transition: all 0.5s ease-in-out;
}

.hamburger-icon::before,
.hamburger-icon::after
{   
    content: "";
    position: absolute;
    width: 15px;
    height: 2px;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(255, 101, 47, .2);
    transition: all 0.5s ease-in-out;
}

.hamburger-icon::before
{
    transform: translateY(-10px);
}

.hamburger-icon::after
{
    transform: translateY(10px);
}

.hamburger.open .hamburger-icon
{   
    transform: translateX(-50px);
    background: transparent;
    box-shadow: none;
}

.hamburger.open .hamburger-icon::before
{
    transform: rotate(45deg) translate(35px, -35px);
}

.hamburger.open .hamburger-icon::after
{
    transform : rotate(-45deg) translate(35px, 35px);
}

.section-padding
{
    min-height: 100vh;
}

.nav-logo .nav-title
{
    color: rgb(255, 255, 137);
    cursor: pointer;
    font-family: 'Dancing Script', cursive;
    font-size: 1.8rem;
    font-weight: 600;
    width: 100%;
    max-width: 100%;
}

.nav-menu ul li a:hover
{
    cursor: pointer;
}

/* home */

.home.section-padding
{   
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    background-image: url('/images/img/new3.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
    z-index: 4;
}

.home-title
{   
    display: flex;
    flex-direction: column;
    justify-content: center;
    cursor: default;
    column-gap: 1rem;
    color: white;
    font-family: 'Times New Roman', Times, serif;
    margin-left: 3rem;
    margin-top: 4rem;
    gap: 1rem;
}

.home-title h4
{
    font-size: 1.6rem;
    font-family: 'Rubik Distressed', cursive;
    font-weight: 300;
    color: yellow;
    letter-spacing: 10px;
}

.home-title h2
{
    font-size: 1.2rem;
}

.home-title p
{
    color: #222;
    font-size: 15px;
    font-weight: 900;
}

/* feature */

.feature.section-padding
{   
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 16rem;
}

.feature-box
{   
    display: flex;
    height: 200px;
    width: 200px;
    max-width: auto;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    box-shadow: 3px 3px 3px 3px gray;
    border: 1px solid #222;
    cursor: default;
    background-color:rgba(255, 255, 255, 0.897);
    text-align: center;
}

.feature-box img
{
    height: 100px;
    width: 100px;
    object-fit: contain;
}

.feature-box h6
{
    font-size: 15px;
    font-weight: 600;
    font-family:Arial, Helvetica, sans-serif;
    color: #222;
    letter-spacing: 2px;
}


/* product */

.product.section-padding
{   
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;  
    margin-top: 16rem;  
    padding: 20px;
}

.products
{   
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    border: 1px solid yellow;
    border-radius: 1rem;
    padding: 25px;
    gap:1rem;
}

.product-item
{   
    height: 400px;
    border-radius: 1rem;
    padding: 15px;
    border: 2px solid yellow;
}

.product-title
{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 1rem;
    max-width: 100%;
    padding: 0 20px;
}

.product-title h2
{   
    font-size: 15px;
    font-family: Arial, Helvetica, sans-serif;
}

.product-title hr
{
    background-color: #222;
    width: 180px;
    height: 5px;
    margin-left: 1rem;
}

.product-desc
{
    display: flex;
    flex-direction: column;
    gap:1rem;
    justify-content: center;
}
.product-img img
{
    width: 220px;
    object-fit: contain;
    border-radius: 1rem;
    transition: all 0.6s;
    padding: 10px;
    cursor: pointer;
}

.product-img img:hover
{
    transform: scale(1.10);
    transition: all 0.6s;
}

.desc-title
{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1rem;
    font-family:'Times New Roman', Times, serif;
    cursor: default;
}

.counter
{
    display: flex;
    align-items: center;
    justify-content: center;
}

.counter-title
{
    margin: 0 auto;
    color: rgb(255, 102, 102);
    font-weight: 600;
    cursor: default;
}

.counter .quantity
{
    font-size: 1.5rem;
}

.counter i 
{   
    padding: 10px;
    background-color: rgb(255, 252, 81);
    color:#222;
    cursor: pointer;
    border-radius: 1rem;
    font-weight: 600;
    transition: all 0.4s;
    margin: 1rem;
}

.counter i:active
{
    transform: scale(1.4);
    transition: all 0.5s;
}

.price
{
    font-size: 1.2rem;
}

/* banner */

.banner
{   
    margin-top: 8rem;
    height: 200px;
    object-fit: contain;
    background-image: url("/images/img/banner/b2.jpg");
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container
{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: yellow;
    gap: 2rem;
    cursor: default;
}
.container h4
{
    color: #fff;
    letter-spacing: 1px;
    animation: glow 1.2s ease-in-out infinite alternate;
}

@keyframes glow
{
    from {
    text-shadow: 5px 5px 5px 20px #fff, 5px 5px 20px #fff, 5px 5px 30px #fdff82, 5px 5px 40px #fdff82, 5px 5px 50px #fdff82, 0 0 60px #fdff82, 0 0 70px #fdff82;
    }
    to {
    text-shadow: 0 0 20px #fff, 0 0 30px #fdff82, 0 0 40px #fdff82, 0 0 50px #fdff82, 0 0 60px #fdff82, 0 0 70px #fdff82, 0 0 80px #fdff82;
    }
}

.container h2
{
    letter-spacing: 2px;
    font-size: 1.2rem;
    text-align: center;
}

.title
{
    color: red;
}

.button1
{
    padding: 10px 20px;
    border: none;
    background-color: rgb(134, 182, 39);
    color:white;
    border-radius: 1rem;
    font-weight: 600;
    transition: all 0.5s;
}

.button1:hover
{   
    cursor: pointer;
    background-color: olivedrab;
    transition: all 0.5s;
}

/* ad section  */

.ad
{    
    margin-top: 6rem;
    max-width: 100%;
    padding: 20px;
    gap:2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.ad-box1
{
    height: 400px;
    width: 400px;
    background-image: url("/images/img/banner/b22.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 12px 12px 12px 12px gray;
    padding: 20px;
}

.box1-title
{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap:2rem;
    cursor: default;
}

.ad-box1 h2
{
    color: yellow;
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: 2px;
    font-family: 'Montserrat', sans-serif;
}

.ad-box1 h4
{
    color: #fff;
    font-family: 'Segoe UI', sans-serif;
    font-size: 2.5rem;
    box-shadow: 2px 2px 2px 5px white;
    padding: 5px;
}

.ad-box1 span
{
    color: #222;
    font-weight: 900;
    letter-spacing: 2px;
    word-spacing: 4px;
}

.ad-box2
{
    height: 400px;
    width: 400px;
    background-image: url("/images/img/banner/b23.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 12px 12px 12px 12px gray;
}

.box2-title
{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap:2rem;
    cursor: default;
}

.ad-box2 h2
{
    color: #fff;
    font-size: 2.2rem;
    font-weight: 900;
    letter-spacing: 5px;
    font-family: 'Mountains of Christmas', cursive;
}

.ad-box2 h4
{
    color: rgb(250, 253, 65);
    font-weight: 600;
    font-size: 1.5rem;
    font-family: 'Times New Roman', Times, serif;
}

.ad-box2 span
{
    color: #222;
    font-weight: 900;
    font-size: 16px;
}

.ad-box3
{
    height: 260px;
    background-image: url("/images/img/banner/b21.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 12px 12px 12px 12px gray;
}

.box3-title
{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: default;
}

.ad-box3 h2
{
    color: #222;
    box-shadow: 2px 2px 2px 2px #222;
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 2px;
    font-family: 'Times New Roman', Times, serif;
    border-radius: 1rem;
    margin-bottom: 4rem;
}

.ad-box3 h4
{
    color: yellow;
    font-weight: 600;
    font-size: 1.2rem;
    font-family: Arial, Helvetica, sans-serif;
}

.ad-box3 span
{
    color: #fff;
    font-weight: 900;
    font-size: 14px;
}

.ad-box4
{
    height: 320px;
    background-image: url("/images/img/banner/b24.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 20px 12px 12px 12px gray;
}

.box4-title
{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap:1rem;
    cursor: default;
}

.ad-box4 h2
{
    color: #fff;
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 2px;
    font-family: 'Times New Roman', Times, serif;
}

.ad-box4 h4
{
    color: #fff;
    font-weight: 600;
    font-size: 1.2rem;
    font-family: Arial, Helvetica, sans-serif;
    letter-spacing: 2px;
}

.ad-box4 span
{
    color: #fff;
    font-weight: 900;
    font-size: 14px;
}

.ad-box5
{
    height: 240px;
    background-image: url("/images/img/banner/b10.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 20px 12px 12px 12px gray;
}

.box5-title
{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap:2rem;
    cursor: default;
}

.ad-box5 h2
{
    color: #fff;
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 2px;
    font-family: 'Montserrat', sans-serif;
}

.ad-box5 h4
{
    color: #fff;
    font-weight: 300;
    font-size: 1.2rem;
    font-family: Arial, Helvetica, sans-serif;
    letter-spacing: 2px;
}

.ad-box5 span
{
    color: #fff;
    font-weight: 900;
    font-size: 15px;
    letter-spacing: 3px;
}

.ad-box5 .lara
{
    color:yellow;
}

.ad-box6
{
    height: 240px;
    background-image: url("/images/img/banner/b17.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 20px 12px 12px 12px gray;
}

.box6-title
{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap:2rem;
    cursor: default;
}

.ad-box6 h2
{
    color: #fff;
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 2px;
    font-family: 'Montserrat', sans-serif;
}

.ad-box6 h4
{
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    font-family: Arial, Helvetica, sans-serif;
    letter-spacing: 2px;
}

.ad-box6 span
{
    color: #222;
    font-weight: 900;
    font-size: 15px;
    letter-spacing: 3px;
}

.button2
{
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 1rem;
    color: #fff;
    font-weight: 600;
    border: 1px solid white;
    background-color: transparent;    
    transition: all 0.5s;
}

.button2:hover
{
    background-color: rgb(134, 179, 46);
    transition: all 0.5s;
}

/* newsletter section */

.newsletter
{
    height: 130px;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 6rem;
}

.newsletter-img
{
    background-image: url("/images/img/banner/b25.jpg");
    height: 100%;
    width: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.newsletter-img h2
{
    color: #fff;
    font-size: 1rem;
}

.newsletter-img h3
{
    color: #fff;
    word-spacing: 6px;
    font-weight: 300;
    font-size: 13px;
}

.sign-up
{   
    display: flex;
    padding: 10px 30px;
    width: 80px;
}

.sign
{
    padding: 5px 30px;
    background-color: #000;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: all 0.4s;
    font-size: 15px;
    white-space: nowrap;
}

.sign:hover
{
    transform: scale(1.1);
    transition: all 0.4s;
}


.sign-up input
{
    width: 180px;
    font-size: 12px;
    font-weight: 600;
    outline: none;
}

.sign-up input::placeholder
{
    font-size: 12px;
}

.special
{
    color: yellow;
}

/* footer section */

.footer
{     
    height: 330px;
    background-color: #212529;
}

.col1
{   
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    margin-top: -0.8rem;
    margin-left: 0.5rem;
}

.col1 .contact
{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap:1.5rem;
    color: #fff;
    cursor: default;
}

.col1 .contact h2
{
    font-size: 12px;
}

.col1 .contact p
{
    font-size: 10px;
}

.footer-logo
{
    font-family: 'Dancing Script', cursive;
    font-size: 1.2rem;
    color: yellow;
    cursor: default;
}

.social
{
    display: flex;
    font-size: 10px;
    gap:1rem;
    cursor: default;
}

.social-title
{
    color: #fff;
    font-weight: 600;
    font-size: 10px;
}

.contact2
{
    color: yellow;
    font-weight: 600;
}

.col2
{   
    display: flex;
    flex-direction: column;
    gap:1rem;
    align-items: flex-start;
    justify-content: center;
    margin:0;
    margin-top: 2rem;
    margin-left: 2rem;
    color: white;
}

.col2 h3
{
    font-size: 12px;
    cursor: default;
}

.col2 a
{   
    font-size: 10px;
    color:white;
}

.col3
{   
    display: flex;
    flex-direction: column;
    gap:2rem;
    align-items: flex-start;
    justify-content: center;
    margin:0;
    margin-top: 2rem;
    margin-left:2rem;
    color: white;
    width: 100%;
}

.col3 h3
{
    font-size: 12px;
    cursor: default;
}

.col3 a
{   
    font-size: 10px;
    color: white;
}

.col4
{   
    display: flex;
    gap:1rem;
    align-items: flex-start;
    justify-content: center;
    margin-top: 2rem;
    color: white;
    width: 100%;
}

.col4 h3 
{
    font-size: 12px;
    cursor: default;
}

.col4 p
{
    color: white;
    font-weight: 600;
    cursor: default;
    font-size: 12px;
}

.purchase-img
{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.google
{   
    height: 30px;
    width: 80px;
    background-image: url("/images/img/banner/b27.png");
    background-size: contain;
    background-repeat: no-repeat;
    cursor: pointer;
}

.apple
{
    height: 30px;
    width: 80px;
    background-image: url("/images/img/banner/b28.png");
    background-size: contain;
    background-repeat: no-repeat;
    cursor: pointer;
}

.payment
{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap:1rem;
}

.payment-box
{
    display: grid;
    grid-template-columns: auto auto;
    gap:0.8rem;
}

.payment-box a img
{   
    height: 28px;
    width: 28px;
    cursor: pointer;
}

.copyright
{   
    height: 30px;
    background-color: #222;
    color: white;
    padding: 10px;
    font-weight:600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo
{
    font-weight: 600;
    margin-top: 1rem;
}


    button.buy 
    {
        padding: 10px 18px;
    }

}

@media screen and (max-width: 375px)
{

    .nav-menu ul
    {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        width: 100%;
    }

    .nav-menu.active ul li
    {
        border: 1px solid #fff;
        width: 100%;
        text-align: center;
        padding: 10px;
    }

    .nav-menu.active ul li a
    {
        text-decoration: none;
        margin: 2rem;
        color: white;
        font-weight: 400;
        font-size: 18px;
        position: relative;
        cursor: pointer;
    }

    .nav-menu ul li a::after
    {   
        content: "";
        position: absolute;
        height: 2px;
        background-color: white;
        left:0;
        bottom: -2px;
        width: 0;
        transition: all 0.7s;

    }

    .nav-menu ul li a:hover::after
    {
        width: 100%;
        transition: all 0.4s;
    }
    
    .cart
    {
        position: relative;
        left: 45px;
        bottom: 2px;
    }

    .newsletter
    {
        height: 100px;
        max-width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 6rem;
    }

    .newsletter-img
    {
        background-image: url("/images/img/banner/b25.jpg");
        height: 100%;
        width: 100%;
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.8rem;
    }

    .newsletter-img h2
    {
        color: #fff;
        font-size: 14px;
    }

    .newsletter-img h3
    {
        color: #fff;
        word-spacing: 6px;
        font-weight: 300;
        font-size: 12px;
    }

    .sign-up
    {   
        display: flex;
        padding: 5px 15px;
    }

    .sign
    {
        padding:10px;
        background-color: #000;
        color: #fff;
        border: none;
        cursor: pointer;
        transition: all 0.4s;
        font-size: 15px;
        white-space: nowrap;
    }

    .sign:hover
    {
        transform: scale(1.1);
        transition: all 0.4s;
    }

    .sign-up input
    {   
        width: 180px;
        font-size: 1rem;
        font-weight: 600;
        outline: none;
    }

    .special
    {
        color: yellow;
    }

.footer
{     
    height: 350px;
    background-color: #212529;
}

.col1
{   
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    margin:0;
    margin-top: -1.5rem;
}

.col1 .contact
{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap:1.5rem;
    color: #fff;
    cursor: default;
}

.col1 .contact h2
{
    font-size: 12px;
}

.col1 .contact p
{
    font-size: 10px;
}

.footer-logo
{
    font-family: 'Dancing Script', cursive;
    font-size: 1.2rem;
    color: yellow;
    cursor: default;
}

.social
{
    display: flex;
    font-size: 10px;
    gap:1rem;
    cursor: default;
}

.social-title
{
    color: #fff;
    font-weight: 600;
    font-size: 10px;
}

.contact2
{
    color: yellow;
    font-weight: 600;
}

.col2
{   
    display: flex;
    flex-direction: column;
    gap:1rem;
    align-items: flex-start;
    justify-content: center;
    margin:0;
    margin-top: 4.1rem;
    margin-left: 1rem;
    color: white;
    width: 100%;
}

.col2 h3
{
    font-size: 12px;
    cursor: default;
}

.col2 a
{   
    font-size: 10px;
    color:white;
}

.col3
{   
    display: flex;
    flex-direction: column;
    gap:2rem;
    align-items: flex-start;
    justify-content: center;
    margin-top: 4.1rem;
    margin-left: 1rem;
    color: white;
    width: 100%;
}

.col3 h3
{
    font-size: 12px;
    cursor: default;
}

.col3 a
{   
    font-size: 10px;
    color: white;
}

.col4
{   
    display: flex;
    gap:1rem;
    align-items: flex-start;
    justify-content: center;
    margin-top: 4.1rem;
    margin-left:1rem;
    color: white;
    width: 100%;
}

.col4 h3 
{
    font-size: 13px;
    cursor: default;
}

.col4 p
{
    color: white;
    font-weight: 600;
    cursor: default;
    font-size: 10px;
}

    .purchase-img
    {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1rem;
    }

    .google
    {   
        height: 20px;
        width: 80px;
        background-image: url("/images/img/banner/b27.png");
        background-size: contain;
        background-repeat: no-repeat;
        cursor: pointer;
    }

    .apple
    {
        height: 20px;
        width: 80px;
        background-image: url("/images/img/banner/b28.png");
        background-size: contain;
        background-repeat: no-repeat;
        cursor: pointer;
    }

    .payment
    {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap:1rem;
    }

    .payment-box
    {
        display: grid;
        grid-template-rows: auto auto;
        align-items: center;
        justify-content: center;
        gap:1rem;
    }

    .payment-box a img
    {   
        height: 28px;
        width: 28px;
        cursor: pointer;
    }

    .copyright
    {   
        height: 30px;
        background-color: #222;
        color: white;
        padding: 10px;
        font-weight:600;
        font-size: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .footer-logo
    {
        font-weight: 600;
    }

    .product-title hr
    {
        width: 160px;
    }

}

@media screen and (max-width: 320px)
{
    .nav-menu ul
    {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        width: 100%;
    }

    .nav-menu.active 
    {
        min-width: 100%;
    }

    .cart
    {
        position: relative;
        left: 30px;
        bottom: 2px;
    }

    .hamburger
    {
        right: 15px;
    }

    .nav-menu.active ul li
    {
        border: 1px solid #fff;
        width: 100%;
        text-align: center;
        padding: 10px;
    }

    .nav-menu.active ul li a
    {
        text-decoration: none;
        margin: 2rem;
        color: white;
        font-weight: 400;
        font-size: 18px;
        position: relative;
        cursor: pointer;
    }

    .nav-menu ul li a::after
    {   
        content: "";
        position: absolute;
        height: 2px;
        background-color: white;
        left:0;
        bottom: -2px;
        width: 0;
        transition: all 0.7s;

    }

    .nav-menu ul li a:hover::after
    {
        width: 100%;
        transition: all 0.4s;
    }

    .ad
    {    
        margin-top: 6rem;
        max-width: 100%;
        padding: 20px;
        gap:2rem;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
        align-items: center;
    }

    .ad-box1
    {
        height: 320px;
        width: 300px;
        background-image: url("/images/img/banner/b22.jpg");
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        border-radius: 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 12px 12px 12px 12px gray;
        padding: 20px;
    }

    .box1-title
    {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap:2rem;
        cursor: default;
    }

    .ad-box1 h2
    {
        color: yellow;
        font-size: 1.7rem;
        font-weight: 900;
        letter-spacing: 2px;
        font-family: 'Montserrat', sans-serif;
    }

    .ad-box1 h4
    {
        color: #fff;
        font-family: 'Segoe UI', sans-serif;
        font-size: 1.5rem;
        box-shadow: 2px 2px 2px 5px white;
        padding: 5px;
    }

    .ad-box1 span
    {
        color: #222;
        font-weight: 900;
        letter-spacing: 2px;
        word-spacing: 4px;
    }

    .ad-box2
    {
        height: 400px;
        width: 300px;
        background-image: url("/images/img/banner/b23.jpg");
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        border-radius: 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 12px 12px 12px 12px gray;
    }

    .box2-title
    {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap:2rem;
        cursor: default;
    }

    .ad-box2 h2
    {
        color: #fff;
        font-size: 2.5rem;
        font-weight: 900;
        letter-spacing: 5px;
        font-family: 'Mountains of Christmas', cursive;
    }

    .ad-box2 h4
    {
        color: rgb(250, 253, 65);
        font-weight: 600;
        font-size: 2rem;
        font-family: 'Times New Roman', Times, serif;
    }

    .ad-box2 span
    {
        color: #fff;
        font-weight: 900;
        font-size: 14px;
    }

    .ad-box3
    {
        height: 350px;
        width: 300px;
        background-image: url("/images/img/banner/b21.jpg");
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        border-radius: 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 12px 12px 12px 12px gray;
    }

    .box3-title
    {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap:2rem;
        cursor: default;
    }

    .ad-box3 h2
    {
        color: #fff;
        box-shadow: 2px 2px 2px 2px #222;
        font-size: 1.5rem;
        font-weight: 900;
        letter-spacing: 2px;
        font-family: 'Times New Roman', Times, serif;
        margin-bottom: 10rem;
        padding: 10px;
        border-radius: 1rem;
    }

    .ad-box3 h4
    {
        color: yellow;
        font-weight: 600;
        font-size: 1.1rem;
        font-family: Arial, Helvetica, sans-serif;
        margin-bottom: 1rem;
    }

    .ad-box3 span
    {
        color: #fff;
        font-weight: 900;
        font-size: 14px;
        margin-bottom: 1rem;
    }

    .ad-box4
    {
        height: 340px;
        width: 280px;
        background-image: url("/images/img/banner/b24.jpg");
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        border-radius: 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 20px 12px 12px 12px gray;
    }

    .box4-title
    {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap:2rem;
        cursor: default;
    }

    .ad-box4 h2
    {
        color: #fff;
        font-size: 1.2rem;
        font-weight: 900;
        letter-spacing: 2px;
        font-family: 'Times New Roman', Times, serif;
    }

    .ad-box4 h4
    {
        color: #fff;
        font-weight: 600;
        font-size: 1.5rem;
        font-family: Arial, Helvetica, sans-serif;
        letter-spacing: 2px;
        margin-top: 4rem;
    }

    .ad-box4 span
    {
        color: #fff;
        font-weight: 900;
        font-size: 14px;
    }

    .ad-box5
    {
        height: 300px;
        width: 300px;
        background-image: url("/images/img/banner/b10.jpg");
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        border-radius: 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 20px 12px 12px 12px gray;
    }

    .box5-title
    {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap:2rem;
        cursor: default;
    }

    .ad-box5 h2
    {
        color: #fff;
        font-size: 1.5rem;
        font-weight: 900;
        letter-spacing: 2px;
        font-family: 'Montserrat', sans-serif;
    }

    .ad-box5 h4
    {
        color: #fff;
        font-weight: 600;
        font-size: 1.2rem;
        font-family: Arial, Helvetica, sans-serif;
        letter-spacing: 2px;
    }

    .ad-box5 span
    {
        color: #fff;
        font-weight: 900;
        font-size: 15px;
        letter-spacing: 3px;
    }

    .ad-box5 .lara
    {
        color:yellow;
    }

    .ad-box6
    {
        height: 230px;
        width: 300px;
        background-image: url("/images/img/banner/b17.jpg");
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        border-radius: 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 20px 12px 12px 12px gray;
    }

    .box6-title
    {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap:2rem;
        cursor: default;
    }

    .ad-box6 h2
    {
        color: #fff;
        font-size: 1.5rem;
        font-weight: 900;
        letter-spacing: 2px;
        font-family: 'Montserrat', sans-serif;
    }

    .ad-box6 h4
    {
        color: #fff;
        font-weight: 600;
        font-size: 1.2rem;
        font-family: Arial, Helvetica, sans-serif;
        letter-spacing: 2px;
    }

    .ad-box6 span
    {
        color: #222;
        font-weight: 900;
        font-size: 13px;
        letter-spacing: 3px;
    }

    .button2
    {
        padding: 10px 20px;
        cursor: pointer;
        border-radius: 1rem;
        color: #fff;
        font-weight: 600;
        border: 1px solid white;
        background-color: transparent;    
        transition: all 0.5s;
    }

    .button2:hover
    {
        background-color: rgb(134, 179, 46);
        transition: all 0.5s;
    }

        
    .newsletter
    {
        height: 120px;
        max-width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 6rem;
    }

    .newsletter-img
    {
        background-image: url("/images/img/banner/b25.jpg");
        height: 100%;
        width: 100%;
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 1rem;
    }

    .newsletter-img h2
    {
        color: #fff;
        font-size: 15px;
    }

    .newsletter-img h3
    {
        color: #fff;
        word-spacing: 6px;
        font-weight: 300;
        font-size: 12px;
    }

    .sign-up
    {   
        display: flex;
        padding: 5px 15px;
    }

    .sign
    {
        padding: 8px;
        background-color: #000;
        color: #fff;
        border: none;
        cursor: pointer;
        transition: all 0.4s;
        font-size: 15px;
        white-space: nowrap;
    }

    .sign:hover
    {
        transform: scale(1.1);
        transition: all 0.4s;
    }

    .sign-up input
    {
        width: 170px;
        font-size: 12px;
        font-weight: 600;
        outline: none;
    }

    .sign-up input::placeholder
    {
        font-size: 10px;
    }

    .special
    {
        color: yellow;
    }
        
    .footer
    {     
        height: 440px;
        display: grid;
        grid-template-columns: 100px 100px;
        background-color: #212529;
    }

    .col1
    {
        display: flex;
        flex-direction: column;
        gap:1.5rem;
        align-items: flex-start;
        justify-content: center;
        padding: 5px;
        margin-left: 0.5rem;
    }

    .col1 .contact
    {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap:2rem;
        color: #fff;
        cursor: default;
    }

    .col1 .contact h2
    {
        font-size: 15px;
    }

    .col1 .contact p
    {
        margin-top: -1rem;
        font-size: 11px;
    }

    .footer-logo
    {
        font-family: 'Dancing Script', cursive;
        font-size: 1.2rem;
        color: yellow;
        cursor: default;
    }

    .social
    {
        display: flex;
        font-size: 10px;
        gap:1rem;
        cursor: default;
    }

    .social-title
    {
        color: #fff;
        font-weight: 600;
        font-size: 10px;
    }

    .contact2
    {
        color: yellow;
        font-weight: 600;
    }

    .col2
    {
        display: flex;
        flex-direction: column;
        gap:1rem;
        align-items: flex-start;
        justify-content: center;
        margin-top: 1rem;
        margin-left: -3rem;
        color: white;
    }

    .col2 h3
    {
        font-size: 15px;
        cursor: default;
    }

    .col2 a
    {   
        font-size: 10px;
        color:white;
    }

    .col3
    {
        display: flex;
        flex-direction: column;
        gap:1rem;
        align-items: flex-start;
        justify-content: center;
        color: white;
        margin:0;
        margin-top: 10px;
        margin-left: 10px;
    }

    .col3 h3
    {
        font-size: 15px;
        cursor: default;
    }

    .col3 a
    {   
        font-size: 10px;
        color: white;
    }

    .col4
    {
        display: flex;
        flex-direction: column;
        gap:1rem;
        align-items: flex-start;
        justify-content: center;
        color: white;
        margin: 0;
        margin-top: -9rem;
        margin-left: -3.5rem;
    }

    .col4 h3 
    {
        font-size: 15px;
        cursor: default;
    }

    .col4 p
    {
        color: white;
        font-weight: 600;
        cursor: default;
        font-size: 11px;
        width: 100%;
    }

    .purchase-img
    {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 1rem;
    }

    .google
    {   
        height: 30px;
        width: 80px;
        background-image: url("/images/img/banner/b27.png");
        background-size: contain;
        background-repeat: no-repeat;
        cursor: pointer;
    }

    .apple
    {
        height: 30px;
        width: 80px;
        background-image: url("/images/img/banner/b28.png");
        background-size: contain;
        background-repeat: no-repeat;
        cursor: pointer;
    }

    .payment
    {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap:1rem;
    }

    .payment-box
    {
        display: flex;
        gap:0.5rem;
    }

    .payment-box a img
    {   
        height: 30px;
        width: 30px;
        cursor: pointer;
    }

    .copyright
    {   
        height: 30px;
        background-color: #222;
        color: white;
        padding: 10px;
        font-weight:600;
        font-size: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .footer-logo
    {
        font-weight: 600;
    }

    .product-title hr
    {
        width: 120px;
    }

    .product-title h2
    {   
        font-size: 12px;
    }

}

