/*fonts*/

@font-face {
    font-family: "SD";
    src: url(Sunbird\ DEMO.otf);
}

@font-face {
    font-family: "Yae";
    src: url(Yaelah.ttf);
}

/*fonts-end*/

*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "SD";
    background: #fff;
}

/*nav-bar*/

.nav-bar {
     display: flex;
     justify-content: space-between;
     align-items: center;
     list-style: none;
     position: relative;
     background-color: #fff;
     padding: 5px;
     margin: 10px 5px;
}

.logo1 {
    text-decoration: none;
    color: #181818;
    font-size: 55px;
    font-family: "Yae";
}

.bolder {
    font-weight: bolder;
}


.menu {
    display: flex;
}

.menu li {
    padding-left: 30px;
}

.menu li a {
    font-size: 20px;
    display: inline-block;
    text-decoration: none;
    color: #181818;
    text-align: center;
    transition: 0.15s ease-in-out;
    position: relative;
    text-transform: uppercase;
}

.menu li a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background-color: #000;
    transition: 0.15s ease-in-out;
}

.menu li a:hover:after {
    width: 100%;
}

.open-menu , .close-menu {
    position: absolute;
    color: #181818;
    cursor: pointer;
    font-size: 1.5rem;
    display: none;
}

.open-menu {
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    color: #181818;
}

.close-menu {
    top: 20px;
    right: 20px;
}

#check {
    display: none;
}

/*end-nav-bar*/


/*Main section-b-sellers*/

.container-title {
    background-color: #efc3e6;
    padding: 40px;
}

.title {
    /*padding: 20px;*/
    text-align: center;
    margin-bottom: 40px;
    font-size: 50px;
}

/*cards-best-sellers*/

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
    gap: 40px;
    justify-content: center;
    margin: 10px auto 56px;
}

.card-b-sellers {
    margin: auto;
    padding: 20px;
    text-align: center;
    position: relative;
    border-radius: 10px;
}

.img-b-sellers {
    width: 220px;
    height: 170px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-radius: 5px;
}

.etiqueta {
    padding: 3px;   
    background: #000;
    width: 70px;
    position: absolute;
    top: 20px;
    right: 10px;
    transform: rotate(-90deg);
    color: #fff;
}

.title--product {
    font-size: 25px;
    padding: 10px;
    color: #000;
}

.title--price {
    font-size: 15px;
}

/*button*/

.button1 {
    background: none;
    border: none;
    margin: auto;
    display: block;
    padding-bottom: 25px;
}

.button1 a {
    text-decoration: none;
    font-size: 20px;
    /*background-color: #000;*/
    border-bottom: 3px solid;
    padding: 15px ;
    /*border-radius: 10px;*/
    color: #000;
    transition: 0.2s;
    font-family: "SD";
    font-weight: bold;
}

.button1 a:hover {
    /*background-color: #fff;*/
    color: #a8719d;
    border-bottom: 3px solid #a8719d;
}

/*end-main-section-b-sellers*/


/*Main-section-product-txt*/

.section-product-txt {
    padding: 70px 0 70px;
}


.title-product {
    text-align: center;
    font-size: 40px;
}

.txt-product {
    text-align: center;
    font-size: 20px;
    margin: 20px 90px 30px;
}

.button-blog {
    background: none;
    border: none;
    margin: auto;
    display: block;
}

.button-blog a {
    text-decoration: none;
    font-size: 18px;
    background-color: #000;
    padding: 15px 15px;
    border-radius: 10px;
    color: #fff;
    transition: 0.3s;
    font-family: "SD";
}

.button-blog a:hover {
    background-color: #fff;
    color: #000;
}

/*end-main-section-product-txt*/


/*Main-section-personalizado*/

.section-personalizado {
    background: #E2BFD9; 
    padding: 70px 0 70px;
}

.title-personalizado {
    text-align: center;
    font-size: 40px;
}

.txt-personalizado {
    text-align: center;
    font-size: 20px;
    margin: 20px 90px 30px;
}

.button-personalizado {
    border: none;
    margin: auto;
    display: block;
    background: none;
}

.button-personalizado a {
    text-decoration: none;
    font-size: 18px;
/*    background-color: #000;*/
    padding: 15px;
  /*  border-radius: 10px; */
    color: #000;
    transition: 0.3s;
    font-family: "SD";
    border-bottom: 3px solid;
    font-weight: bolder;
}

.button-personalizado a:hover {
    color: #a8719d;
}

/*end-main-section-personalizado*/


/*Main-section-delivery-txt*/

.section-delivery-txt {
    padding: 70px 0 70px;
}

.button-contact {    
    border: none;
    margin: auto;
    display: block;
}

.button-contact a {
    text-decoration: none;
    font-size: 18px;
    background-color: #000;
    padding: 15px 15px;
    border-radius: 10px;
    color: #fff;
    transition: 0.3s;
    font-family: "SD";
}

.button-contact a:hover {
    background-color: #fff;
    color: #000;
}

/*end-main-section-delivery-txt*/


/*Footer*/

        .footer {
            padding: 40px 0;
            background-color: #C8A1E0;
            padding-bottom: 15px;
        }

        .media {
            text-align: center;
            padding-bottom: 25px;
            color: #181818;
        }

        .media a {
            font-size: 24px;
            color: #000;
            border: 1px solid #000;
            width: 40px;
            line-height: 38px;
            display: inline-block;
            text-align: center;
            border-radius: 50%;
            margin: 0 8px;
            opacity: 0.75;
            transition: 0.2s;
        }

        .media a:hover {
            opacity: 0.9;
            border: 1px solid #836a93;
        }

        .footer ul {
            margin-top: 0;
            padding: 0;
            list-style: none;
            font-size: 18px;
            line-height: 1.6;
            margin-bottom: 0;
            text-align: center;
        }

        .footer ul li a {
            color: inherit;
            text-decoration: none;
            opacity: 0.8;
            transition: 0.2s;
        }

        .footer ul li {
            display: inline-block;
            padding: 0 15px;
        }

        .footer ul li a:hover {
            color: #836a93;
        }

        .copyright {
            font-size: 13px;
            text-align: center;
            margin-top: 15px;
            opacity: 1;
            font-family: monospace;
        }

/*end-footer*/


/*RESPONSIVE-SECTION*/


/*RESPONSIVE-nav-bar-menu-burger*/
        
@media screen and (max-width: 990px) {
    .menu {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 50%;
        height: 100vh;
        position: fixed;
        top: 0;
        right: -100%;
        z-index: 100;
        background-color: #ffffff;
        transition: all 0.2s ease-in-out;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    }
    .menu li {margin-top: 40px;}
    .menu li a {padding: 10px;}
    .open-menu , .close-menu {display: block;}
    #check:checked ~ .menu {right: 0;}
}

/*end-responsive-nav-bar-menu-burger*/

/*RESPONSIVE-768PX-VIEW-MAIN*/

@media screen and (max-width: 768px){
 
    .title-product {
        font-size: 35px;
    }

    .title-personalizado {
    
        font-size: 35px;
    }

}




/*RESPONSIVE-530px-VIEW-footer*/

@media screen and (max-width: 530px) {
   
    .footer ul{
        font-size: 13px;
    }

    .copyright{
        font-size: 10px;
    }

}

/*RESPONSIVE-320PX-VIEW-TITLE*/

@media screen and (max-width: 435px){

    .title{
        font-size: 33px;
    }

}




