.top {
    width: 100%;
}
.top .website-main-img{
    background-image: url("<?=IMPORT_URL?>imgs/cover-photo.png");
    /* background-color: rgba(0, 0, 0, 0.2); */
    /* background-blend-mode: darken; */
    /* background-attachment: fixed; */
    background-position: 50% 75%;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 650px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
    font-size: 80px;
    text-align: center;
    user-select: none;
    padding: 50px;
}
.top .website-main-img .top-bubble-thing{
    display: flex;
    flex-direction: column;
}
.top .website-main-img .top-bubble-thing .title{
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 300;
    font-size: 46px;
}

.top .website-main-img .top-bubble-thing .bigwords{
    font-family: 'Dancing Script', cursive;
    font-weight: 600;
    font-size: 130px;
    padding-bottom: 180px;
}
.top .website-main-img .top-bubble-thing .word{
    font-family: 'Dancing Script', cursive;
    transition: .5s ease;
    transform-style: preserve-3d;
    position: absolute;
    perspective: 500px;
}
.top .website-main-img .top-bubble-thing .bigwords .word.active{
    transform: rotateX(0);
}
.top .website-main-img .top-bubble-thing .bigwords .word:not(.active){
    transform: rotateX(90deg);
}

.top .website-main-img .top-bubble-thing .btn-wrap{
    display: flex;
}
.ctm-btn{
    width: 235px;
    /* background-color: rgb(241, 238, 234); */
    background-color: black;
    color: white;
    font-weight: 400;
    border-radius: 0;
    text-align: center;
    border: 2px solid black;
    font-family: 'Source Sans Pro', sans-serif !important;
    letter-spacing: 2px;
    transition: 0.5s ease;
}
.ctm-btn:hover{
    filter: brightness(120%);
    color: black;
    background-color: white;
}


.section .cat-wrap{
    height: 250px;
}
.section .cat-card{
    position: relative;
    width: 250px;
    height: 250px;
    background-size: cover;
    background-position: center;
    margin-bottom: 20px;
    transition: 0.5s ease;
    background-repeat: no-repeat;
    /* border-radius: 50%; */
    aspect-ratio: 1 / 1;
}
/* .section .cat-card:hover{
    filter: opacity(0.75);
} */
.section .cat-card:hover .name{
    bottom: -50px;
}
.section .cat-card .name{
    position: absolute;
    bottom: -40px;
    left: 20px;
    right: 20px;
    color: black;
    font-weight: 500;
    font-size: 20px;
    transition: 0.5s ease;
    padding: 20px;
    margin-bottom: 0;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #e7ded0;
}

/* .section .intro{
    padding: 50px;
    font-size: 20px;
    height: 100%;
    background-color: #f2f2f2;
    border-radius: 20px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.section .intro p{
    font-family: 'Alata', sans-serif;
}

.contact-area span{
    font-size: 30px;
    font-family: 'Alata', sans-serif;
} */

.section{
    padding: 50px;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.section .captiontext{
    font-family: 'Dancing Script', cursive;
    font-size: 60px;
}
.section .captiontext::before{
    content: "~  ";
}

.section .captiontext::after{
    content: "  ~";
}

.section .subtext{
    text-transform: uppercase;
    letter-spacing: 10px;
    font-family: 'Dosis', sans-serif;
    color: grey;
    font-size: 20px;
}

.section .text{
    max-width: 800px;
    font-size: 16px;
}

.section.business-qualities{
    min-height: unset;
    max-width: unset;
    margin-left: -50px;
    margin-right: -50px;
    background-color: #e7ded0;
    user-select: none;
}
.section.business-qualities .quality:hover .icon{
    transform: translateY(10px);
}
.section.business-qualities .wrap{
    max-width: 1200px;
    width: 100%;
}
.section.business-qualities .icon{
    font-size: 70px;
    margin-bottom: 10px;
    color: rgb(0, 0, 0);
    transition: 0.5s ease;
}
.section.business-qualities .wording{
    font-family: 'Alata', sans-serif;
    text-align: center;
    font-size: 18px;
}


.about-me{
    position: relative;
    background-image: url('<?=IMPORT_URL?>imgs/front-disp-about.jpg');
    padding: 20px;
    border-radius: 20px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 450px;
    pointer-events: none;
    user-select: none;
}
.about-me .text-area{
    left: 0;
    bottom: 0;
    top: 0;
    right: 50%;
    position: absolute;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 20px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.about-me .text-area p{
    font-size: 17px;
}

.card{
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    width: 75%;
    user-select: none;
}

@media only screen and (max-width: 1000px) {
    .section1 .intro{
        padding: 20px;
    }
    .section1 .info-cards{
        margin: 0;
    }
    .section1 .prod-card .black .name{
        font-size: 15px;
    }
    .top .website-main-img {
        background-color: rgba(0, 0, 0, 0.4);
        background-attachment: unset;
        background-position: center;
        background-size: cover;
    }
    .top .website-main-img .top-bubble-thing .title{
        font-size: 40px;
    }
    .section{
        padding: 50px 20px;
    }
    .about-me{
        height: 600px;
    }
    .about-me .text-area{
        right: 0;
    }
    .section .captiontext::before{
        content: "";
    }
    
    .section .captiontext::after{
        content: "";
    }

    .section.business-qualities{
        margin-left: -20px;
        margin-right: -20px;
    }
}

.prod-area-thing{
    padding: 25px;
    display: flex;
    justify-content: center;
    position: relative;
}

.prod-link{
    color: unset;
    text-decoration: none;
}

.prod-link:hover{
    color: unset;
    text-decoration: none;
}

.prod-area-thing .prod-area{
    position: relative;
    padding: 15px;
    /*margin: 0px;*/
    width: 100%;
    height: 100%;
    cursor: pointer;
    transition: 0.5s ease;
}
.prod-area-thing .prod-area:hover{
    transform: translateY(-10px);
}
/* .prod-area-thing .prod-area:hover .img .secondary-image{
    opacity: 1;
} */
.prod-area-thing .prod-area .img{
    height: 150px;
    width: 100%;
    padding-bottom: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    transition: 0.5s ease;
}
.prod-area-thing .prod-area .img .secondary-image{
    width: 100%;
    height: 150px;
    padding-bottom: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    opacity: 0;
    transition: 0.5s ease;
}
.prod-area-thing .prod-area{
    padding-top: 10px;
}
.prod-area-thing .prod-area .title{
    font-weight: bold;
    font-family: 'Dosis', sans-serif;
}
.prod-area-thing .prod-area .price{
    font-size: 13px;
    float: left;
    padding-right: 5px;
}
.prod-area-thing .prod-area .oldprice .pp{
    font-size: 13px;
    text-decoration: line-through;
    float: left;
    padding-right: 10px;
}
.prod-area-thing .prod-area .oldprice .percentage{
    font-size: 13px;
    float: left;
    padding-right: 5px;
}
.prod-area-thing .prod-area .delivery{
    font-size: 12px;
    color: green;
    background-color: #dff0d8;
    border-color: #d6e9c6;
    padding: 2px 10px;
    border-radius: 20px;
    position: relative;
    top: -1.5px;
    /*position: absolute;
    right: -10px;
    top: -2px;*/
    /*transform: rotate(10deg);*/
    font-weight: bold;
    float: left;
}
.prod-area-thing .prod-area .salebadge{
    font-size: 13px;
    color: white;
    background-color: red;
    border-color: #d6e9c6;
    padding: 5px 10px;
    border-radius: 20px;
    position: absolute;
    left: 0;
    top: 7px;
    transform: rotate(-9deg);
    font-weight: bold;
}

.prod-area-thing .prod-area .newbadge{
    font-size: 13px;
    color: black;
    background-color: gold;
    border-color: #d6e9c6;
    padding: 5px 10px;
    border-radius: 20px;
    position: absolute;
    right: 0;
    top: 7px;
    transform: rotate(9deg);
    font-weight: bold;
}

.prod-area-thing .prod-area .img{
    display: flex;
    justify-content: center;
}

/*.prod-area-thing .prod-area .img .salebadge{
    font-size: 13px;
    color: white;
    background-color: red;
    height: 20px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80%;
    border-radius: 20px;
    margin-top: 10px;
}*/

.pagination-area{
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.pagination-area ul li a{
    background-color: #EEEEEE;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 5px;
    color: black;
    transition: 0.5s ease;
}
.pagination-area ul li.active a{
    pointer-events: none;
    filter: brightness(75%);
    color: grey;
}
.pagination-area ul{
    margin-bottom: 10px;
}
.pagination-area ul li:not(.active):hover a{
    background-color: white;
    text-decoration: none;
    filter: brightness(75%);
}
.center{
    text-align: center !important;
    display: flex;
    justify-content: center !important;
    align-items: center !important;

}

@media only screen and (max-width: 1000px) {
    .box{
        padding: 10px;
    }
    .prod-area-thing{
        padding: 5px;
    }
    .prod-area-thing .prod-card .title{
        max-width: 100% !important;
    }
    .mobile-center{
        text-align: center !important;
        display: flex;
        justify-content: center !important;
        align-items: center !important;

    }
    .fat{
        max-width: 95% !important;
    }

    .top .website-main-img .top-bubble-thing .bigwords{
        font-size: 90px;
    }
}