@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@300;400;500;600;700&amp;display=swap');

/* font-family: "Kanit", sans-serif; */
@import url('https://fonts.googleapis.com/css2?family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&amp;display=swap');

/* ::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 4px;
}
::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 4px;
} */
*{
    font-family: "Rajdhani", sans-serif;
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    text-decoration: none;
    list-style-type: none;
    transition: 0.2s ease;
    /* scrollbar-width: thin;
    scrollbar-color: #67d3dd #00000029; */
}
html{
    font-size: 62.5%;
}
a{
    color: white;
}

/* --------------------HEADER-------------------- */
header {
    width: 100%;
    padding-top: 4rem;
    position: fixed;
    transition: all 0.6s ease;
    z-index: 1;
    background-color: transparent;
}

header.scrolled {
    background-color: rgb(255, 255, 255);
    margin-top: -4rem;
    z-index: 1000;
    box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 30px 0px;
}
header.scrolled  #header-container #header-right #h-ul-container .li a{
    color: black;
}
header #header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 90%;
    margin: 0 auto;
}

header #header-container #logo-container a img {
    width: 30rem;
    height: 3rem;
    margin: 2.5rem 0;
}

header #header-container #header-right #h-ul-container {
    display: flex;
    font-size: 2.2rem;
}
header #header-container #header-right #h-ul-container .li {
    margin-left: 3rem;
    position: relative;
    margin-left: 3rem;
}
header #header-container #header-right #h-ul-container .li a{
    color: white;
}
header #header-container #header-right #h-ul-container .li .border-bottom {
    position: relative;
    display: inline-block;
    padding-bottom: 3px;
    z-index: 500;
}
header #header-container #header-right #h-ul-container .li .border-bottom::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: #00eaff;
    transition: width 0.2s ease;
}

header #header-container #header-right #h-ul-container .li .border-bottom:hover::after {
    width: 100%;
}

header #header-container #header-right #h-ul-container .border-bottom {
    color: black;
    position: relative;
}

header #header-right #ikon-menu {
    display: none;
}
/*Dropdown*/
.dropdown{
    transition: 0.5s;
}
.dropdown-menu{
    padding-top: 2.6rem;
    display: none;
    position: absolute;
}
.litle-dropdown {
    background-color: #67d3ddc5;
    box-shadow: 0 10px 2rem #42979f5e;
    backdrop-filter: blur(4px);
    border-radius: 0 0 5px 5px;
    z-index: 1;
    padding: 1rem 0;
    font-size: 1.7rem;
    top: 100%;
    min-width: 28rem;
    transition: 0.6s;
}
.dropdown:hover .dropdown-menu{
    display: block;
}

.litle-dropdown li{
    padding: 12px 0;
    color: rgb(113, 113, 113);
    font-weight: bold;
}
.litle-dropdown li:hover{
    border-left: 2px solid rgb(0, 89, 255);
    background-color: #67D3DD;
    color: white;
}

.dropdown-categories li{
    text-align: start;
    padding-left: 4rem;
}
.dropdown-categories li:hover{
    padding-left: 4.5rem;
}

.dropdown-about li{
    text-align: center;
}
.dropdown-about li:hover{
    padding-left: 0.6rem;
}

.dropdown-menu.hide {
    display: none;
}

/*Dropdown*/
        @media (max-width: 992px) {
            html{
                font-size: 55% !important;
            }
        }
        @media (max-width: 768px) {
            @keyframes slideDown {
                0% {
                    opacity: 0;
                    transform: translateY(-20%);
                }
                100% {
                    opacity: 1;
                    transform: translateY(0);
                }
            }
            html{
                font-size: 50%;
            }
            .dropdown{
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                width: 100%;
            }
            .dropdown-menu{
                padding-top: 1rem;
                display: none;
                position: static;
                text-align: center;
                width: 100%;
            }
            .dropdown:hover .dropdown-menu{
                display: block;
                /* animation: slideDown 0.3s ease-in-out forwards; */
            }
            .litle-dropdown li{
                padding-bottom: 10px;
                text-align: center;
                color: rgb(113, 113, 113);
            }
            .dropdown-menu.hide {
                display: none;
            }
            header #header-container #header-right #h-ul-container .li{
                margin-left: 0;
            }
            #h-ul-container.show {
                display: flex !important;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                z-index: 5;
                animation: slideDown 0.5s ease-in-out forwards;
            }
            .litle-dropdown {
                background-color: #aef8ffc5;
                backdrop-filter: blur(6px);
                border-radius: 5px;
                z-index: 50;
                font-size: 1.7rem;
                top: 110%;
                width: 100%;
            }
            .litle-dropdown li:hover{
                background-color: #00eaff;
            }
            .litle-dropdown li{
                padding-left: 0;
                align-items: center;
            }
            header #header-container #header-right #h-ul-container .li a{
                color: black !important;
            }
            #h-ul-container{
                display: none !important;
                position: absolute;
                width: 100%;
                left: 0;
                top: 100%;
                background-color: white;
                z-index: -5;
                padding: 2rem 0;
                box-shadow: rgba(0, 0, 0, 0.5) 0px 15px 30px 0px;
            }
            #h-ul-container .li{
                margin-bottom: 1rem;
                color: black !important;
            }
            header #header-right #ikon-menu {
                display: block;
                color: white;
                background-color: rgba(0, 0, 0, 0);
                border: none;
                font-size: 3rem;
            }
            header.scrolled #header-right #ikon-menu{
                color: black;
            }
        }
        @media (max-width: 500px) {
            html{
                font-size: 40% !important;
            }
        }








/* --------------------Footer-------------------- */
footer{
    width: 100%;
    color: white;
    background-color: black;
}
footer #footer-container{
    width: 85%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6rem 0 10rem 0;
}
/* logo */
footer #footer-container #logo{
    width: auto;
}
footer #footer-container #logo img{
    width: 35rem;
}
/* social */
footer #footer-container #footer-social{
    font-size: 1.8rem;
}
footer #footer-container #footer-social #footer-mail_numb .footer-numb{
    margin-top: 0.3rem;
}
/* footer #footer-container #footer-social #footer-s-media{
    font-size: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: start;
    margin-top: 3rem;
}
footer #footer-container #footer-social #footer-s-media .fa-instagram:hover{
    color: #FE116B;
}
footer #footer-container #footer-social #footer-s-media .fa-facebook:hover{
    color: #086DFF;
}
footer #footer-container #footer-social #footer-s-media .fa-whatsapp:hover{
    color: #2CD46B;
}

footer #footer-container #footer-social #footer-s-media i{
    margin-right: 2rem;
} */
/* navigate */
footer #footer-container #footer-navigate{
    font-size: 2rem;
}
footer #footer-container #footer-navigate li{
    margin-bottom: 0.3rem;
}
footer #footer-container #footer-navigate li h3{
    font-size: 2.2rem;
    margin-bottom: 1rem;
}
#copyright .reserved{
    font-size: 1.3rem;
}
#copyright a {
    color: #49a1ff;
    text-decoration: none;
}
#copyright a:hover {
    text-decoration: underline;
}

        @media (max-width: 1200px){
            footer #footer-container{
                width: 58%;
                flex-direction: column;
                align-items: start;
                transform: translateX(30%);
                margin: 0 auto;
                padding-bottom: 8rem;
            }
            footer #footer-container #logo{
                margin-bottom: 5rem;
                transform: translateX(-20%);
            }
            footer #footer-container #footer-social #footer-s-media{
                font-size: 3rem;
                justify-content: start;
                margin-top: 1.5rem;
            }
            footer #footer-container #footer-navigate{
                display: flex;
                flex-direction: column;
                margin-top: 4rem;
            }
            #navigate-container{
                display: flex;
            }
            footer #footer-container #footer-navigate li h3{
                margin-bottom: 0.3rem;
            }
            footer #footer-container #footer-navigate #navigate-container li{
                margin-right: 1rem; 
                margin-bottom: 4rem;
            }
        }






        @media (max-width: 768px){
            footer #footer-container i{
                font-size: 3.5rem;
            }
            footer #footer-container ul li{
                font-size: 2rem;
            }
            footer #footer-container #footer-navigate li h3{
                font-size: 2rem;
            }
            footer #footer-container #logo{
                transform: translateX(-15%);
            }
            footer #footer-container #logo img{
                width: 30rem;
                margin-left: -10px;
            }
            footer #footer-container{
                transform: translateX(35%);
            }
        }






        @media (max-width: 576px){
            footer #footer-container{
                transform: translateX(23%);
            }
        }






        @media (max-width: 480px){
            footer #footer-container{
                transform: translateX(21%);
            }
            footer #footer-container{
                width: 70%;
            }
        }

        @media (max-width: 400px){
            footer #footer-container{
                transform: translateX(17%);
            }
        }












/* --------------------Product-------------------- */
#products{
    width: 100%;
}
/* title */
.products-title{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
    margin-top: 12rem;
}
.products-title h2{
    font-size: 1.8rem;
    color: #67D3DD;
    text-align: center;
    margin-bottom: 0rem;
    font-family: "Kanit", sans-serif;
    width: 100%;
}
.products-title h2 .border-bottom{
    border-bottom: 2px solid #67D3DD;
    font-family: "Kanit", sans-serif;
}
.products-title h1{ 
    width: 100%;
    font-size: 5rem;
    text-align: center;
    margin-bottom: 3rem;
    font-family: "Kanit", sans-serif;
}
/* item */
#products .products-container .little-products-c .item-link{
    color: black;
    background-color: white;
}
#products .products-container .little-products-c .item-link:hover{
    -webkit-box-shadow: 0px 0px 20px -13px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 20px -13px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 20px -13px rgba(0,0,0,0.75);
}
#products .products-container .little-products-c .item-link .product{
    width: 22rem;
    height: 32rem;
    border: 0.5px solid rgba(0, 0, 0, 0.129);
    border-radius: 10px;
}
#products .products-container .little-products-c .item-link .product .p-img{
    height: 16rem;
    width: 100%;
    overflow: hidden;
    margin-bottom: 2rem;
}
#products .products-container .little-products-c .item-link .product .p-img img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    align-items: center;
}
#products .products-container .little-products-c .item-link .product .product-title{
    margin-bottom: 0.8rem;
    padding: 0 0.7rem;
}
#products .products-container .little-products-c .item-link .product .product-title h3{
    font-size: 1.4rem;
}
#products .products-container .little-products-c .item-link .product .product-title h4{
    font-size: 1.3rem;
    color: rgba(0, 0, 0, 0.496);
}
#products .products-container .little-products-c .item-link .product .product-price p{
    font-size: 1.6rem;
    font-weight: bold;
    padding: 0.7rem;
}
#products .products-container .little-products-c .item-link .product .product-price p .little-price{
    font-size: 1.35rem;
}
/* categories title */
#products .title-categories{
    font-size: 2.8rem;
    width: 86%;
    margin: 0 auto 1rem auto;
    color: rgba(0, 0, 0, 0.805);
}
/* product scroll */
.products-container {
    display: flex;
    align-items: center;
    position: relative;
    width: 86%;
    margin: 0 auto 7rem auto;
}
.little-products-c{
    display: flex;
    overflow-x: auto; 
    scroll-behavior: smooth;
    gap: 1%;
}
.scroll-btn{
    background-color: #ffffff00;
    border: none;
    font-size: 1.6rem;
    cursor: pointer;
    z-index: 1;
    border: 1px solid rgba(0, 0, 0, 0.088);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;   
    border-radius: 4rem;
    -webkit-box-shadow: 0px 0px 20px -8px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 20px -8px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 20px -8px rgba(0,0,0,0.75);
    backdrop-filter: blur(3px);
}
.scroll-btn#prevBtn{
    position: absolute;
    left: -2rem;
}
.scroll-btn#nextBtn{
    position: absolute;
    right: -2rem;
}
.scroll-btn#prevBtn-acs{
    position: absolute;
    left: -2rem;
}
.scroll-btn#nextBtn-acs{
    position: absolute;
    right: -2rem;
}

#nextBtn:hover ~ #little-products-c{
    transform: translateX(-0.3cm);
    transition: transform 0.3s ease;
}
#prevBtn:hover ~ #little-products-c{
    transform: translateX(0.3cm);
    transition: transform 0.3s ease;
}
#nextBtn-acs:hover ~ #little-products-c-acs{
    transform: translateX(-0.3cm);
    transition: transform 0.3s ease;
}
#prevBtn-acs:hover ~ #little-products-c-acs{
    transform: translateX(0.3cm);
    transition: transform 0.3s ease;
}

.products-container::-webkit-scrollbar{
    display: none; 
}
.little-products-c::-webkit-scrollbar{
    display: none;
}


/* --------------------MODAL-------------------- */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(1px);
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fefefe;
    padding: 2rem 2rem;
    box-shadow: 0 10px 2rem #0000005e;
    width: 50%;
    gap: 20px;
    border-radius: 5px;
    margin-top: 5rem;
}

.close {
    color: rgba(0, 0, 0, 0.514);
    font-size: 4.5rem;
    font-weight: bold;
    position: absolute;
    top: -5px;
    right: 10px;
    z-index: 5;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* --Modal içeriği-- */
.modal-product-details{
    display: flex;
    align-items: start;
    justify-content: space-between;

}
.modal-img-container{
    height: 25vw;
    width: 50%;
    overflow: hidden;
}
.modal-product-details img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    align-items: center;
}
/* modal right */
.modal-product-details .details {
    width: 40%;
    margin-top: 5rem;
}
.modal-product-details .details h3{
    font-size: 1.8rem;
    font-weight: 700;
}
.modal-product-details .details p{
    font-size: 1.7rem;
    margin-bottom: 1rem;
}
.modal-product-details .details .price{
    font-size: 2.5rem;
    font-weight: bold;
}
.modal-product-details .details button{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background-color: #67D3DD;
    color: white;
    height: 4.2rem;
    font-size: 1.5rem;
    font-weight: bold;
    font-family: "Kanit", sans-serif;
    margin-top: 3.5rem;
    transition: 0.5s;
    position: relative;
    overflow: hidden;
    box-shadow: 0 7px 2rem #42979f65;
    z-index: 0; 
    border: none;
}

.modal-product-details .details button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #00eaff;
    color: white;
    transition: left 0.6s;
    z-index: -1;
}
.modal-product-details .details button:hover::before {
    left: 0;
}
.modal-product-details .details button:hover{
    box-shadow: 0 7px 2rem #42979fbb;
}



/*------------- Satın Al ------------- */
#modal-card-container{
    padding: 1.4rem 1.5rem;
}
#modal-card-container form{
    display: flex;
    justify-content: space-between;
}

/* - address - */
#modal-card-container form #address{
    width: 48%;
    display: flex; 
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
#modal-card-container form .card-title{
    font-size: 3rem;
    margin-bottom: 1.3rem;
}
#modal-card-container form #address input,
#modal-card-container form #address label{
    width: 100%;
}
#modal-card-container form #address input,
#modal-card-container form #address textarea{
    background-color: #E5E5E5;
    outline: none;
    box-shadow: none;
    border: none;
    border-radius: 5px;
    font-size: 1.6rem;
}
#modal-card-container form #address label{
    font-size: 1.8rem;
    font-weight: bold;
}
#modal-card-container form #address input[type="text"]{
    height: 4rem;
    padding-left: 0.5rem;
    margin-bottom: 1rem;
}
#modal-card-container form #address input[type="text"]:focus{
    outline: none;
    box-shadow: none;
    -webkit-box-shadow: 2px 2px 5px -3px rgba(0,0,0,0.75);
    -moz-box-shadow: 2px 2px 5px -3px rgba(0,0,0,0.75);
    box-shadow: 2px 2px 5px -3px rgba(0,0,0,0.75);
}
#modal-card-container form #address textarea{
    min-width: 100%;
    max-width: 100%;
    border-radius: 0 5px 0 5px;
}
#modal-card-container form #address textarea:focus{
    -webkit-box-shadow: 2px 2px 5px -3px rgba(0,0,0,0.75);
    -moz-box-shadow: 2px 2px 5px -3px rgba(0,0,0,0.75);
    box-shadow: 2px 2px 5px -3px rgba(0,0,0,0.75);
}

/* - Card - */
#modal-card-container form #card{
    width: 48%;
    display: flex; 
    flex-direction: column;
    align-items: center;
    justify-content: start;
}
#modal-card-container form #card #input-flex{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: space-between;
}
#modal-card-container form #card #input-flex input{
    width: 49%;
}
#modal-card-container form #card h3{
    margin-bottom: 3.5rem;
}
#modal-card-container form #card input{
    width: 100%;
}
#modal-card-container form #card input{
    background-color: #E5E5E5;
    outline: none;
    box-shadow: none;
    border: none;
    border-radius: 5px;
    font-size: 1.6rem;
}
#modal-card-container form #card input[type="text"]{
    height: 4rem;
    padding-left: 0.5rem;
    margin-bottom: 1rem;
}
#modal-card-container form #card input[type="text"]:focus{
    outline: none;
    box-shadow: none;
    -webkit-box-shadow: 2px 2px 5px -3px rgba(0,0,0,0.75);
    -moz-box-shadow: 2px 2px 5px -3px rgba(0,0,0,0.75);
    box-shadow: 2px 2px 5px -3px rgba(0,0,0,0.75);
}

#modal-card-container form #card input[type="submit"]{
    width: 100%;
    height: 3rem;
    box-sizing: content-box;
    padding: 0.6rem 0;
    display: flex;
    border: none;
    background-color: #67d3dda0;
    color: white;
    font-size: 1.5rem;
    font-size: 1.5rem;
    font-weight: bold;
    font-family: "Kanit", sans-serif;
    transition: 0.5s;
    align-self: flex-end;
    margin-top: auto;
    border-radius: 1px;
}
#modal-card-container form #card input[type="submit"]:hover{
    background-color: #67D3DD;
    box-shadow: 0 7px 2rem #0000003b;
}

/* Modal açıkken body scrolu devre dışı bırak */
body.modal-open {
    overflow: hidden;
}

        @media (max-width: 1200px) {
            /* ----------PRODUCTS---------- */
            #products .products-container{
                width: 95%;
            }
            #products .products-container *{
                font-size: 1.2rem !important;
            }
            #products .title-categories{
                width: 95%;
            }
            #products .products-container .little-products-c .item-link .product{
                width: 20rem ;
                height: 30rem ;  
            }

            .scroll-btn#prevBtn{
                left: -1rem;
            }
            .scroll-btn#nextBtn{
                right: -1rem;
            }
            .scroll-btn#prevBtn-acs{
                left: -1rem;
            }
            .scroll-btn#nextBtn-acs{
                right: -1rem;
            }
            /* ----------MODAL---------- */
            .modal-content {
                width: 70%;
            }
            .modal-product-details .details {
                margin-top: 1rem;
            }
            .close {
                font-size: 6rem;
            }
            .modal-img-container{
                height: 33vw;
            }
        }


        @media (max-width: 992px) {
            /* ----------PRODUCTS---------- */
            .products-title{
                margin-top: 9rem;
            }
            #products .products-container{
                width: 80%;
            }
            #products .products-container *{
                font-size: 1.4rem !important;
            }
            #products .products-container .little-products-c .item-link .product{
                width: 23rem ;
                height: 33rem ;  
            }
            #products .products-container .little-products-c{
                gap: 1rem;
            }
            #products .products-container{
                width: 95%;
            }

            #link-categories{
                font-size: 1.8rem; 
            }
            #link-categories #title-categories .fa-chevron-right{
                font-size: 1.6rem;
            }

            .scroll-btn#prevBtn{
                left: 0rem;
            }
            .scroll-btn#nextBtn{
                right: 0rem;
            }
            .scroll-btn#prevBtn-acs{
                left: 0rem;
            }
            .scroll-btn#nextBtn-acs{
                right: 0rem;
            }
            .scroll-btn{
                border: none;
                -webkit-box-shadow: 0px 0px 20px -8px rgba(0,0,0,0.75);
                -moz-box-shadow: 0px 0px 20px -8px rgba(0,0,0,0.75);
                box-shadow: 0px 0px 20px -8px rgba(0,0,0,0.75);
                backdrop-filter: blur(0.5px);
            }
            /* ---------MODAL---------- */
            .modal-content {
                width: 75%;
            }
            .modal-product-details .details {
                margin-top: 1rem;
            }
            .modal-img-container{
                height: 33vw;
            }
        }


        @media (max-width: 768px) {
            /* ----------MODAL---------- */
            .modal-content {
                width: 80%;
            }
            .modal-product-details .details {
                margin-top: 2.5rem;
            }
            .modal-img-container{
                height: 45vw;
                margin-top: -2rem;
            }    
        }


        @media (max-width: 576px) {
            /* ----------MODAL---------- */
            .modal-content {
                width: 90%;
            }
            .modal-product-details .details {
                margin-top: 2.5rem;
            }
            .modal-img-container{
                height: 50vw;
                margin-top: -2rem;
            }    
        }
        @media (max-width: 500px) {
            /* ----------PRODUCTS---------- */
            #products .products-container{
                width: 95%;
            }
            #products .products-container *{
                font-size: 1.9rem !important;
            }
            #products .products-container .little-products-c .item-link .product{
                width: 28rem;
                height: 43rem;
            }
            #products .products-container .little-products-c{
                gap: 1rem;
            }
            #products .products-container{
                width: 95%;
            }
            #products .title-categories{
                font-size: 3rem;
                color: rgba(0, 0, 0, 0.779);
            }

            #link-categories{
                font-size: 1.9rem; 
            }
            #link-categories #title-categories .fa-chevron-right{
                font-size: 1.7rem;
            }

            .scroll-btn{
                border: none;
                font-size: 2.5rem;
                width: 3rem;
                height: 3rem;   
                border-radius: 3rem;
                box-shadow: none;
                font-weight: bold;
                backdrop-filter: blur(0px);
            }
            /* ----------MODAL---------- */
            .modal-content {
                width: 95%;
            }
            .modal-product-details .details {
                margin-top: 2.5rem;
            }
            .modal-img-container{
                height: 60vw;
                margin-top: -2rem;
            } 
            /* satın al */
            #modal-card-container{
                padding: 0;
            }
            .form-modal-content {
                padding: 2rem 1.5rem;
            }
            #modal-card-container form #address input,
            #modal-card-container form #address textarea{
                border-radius: 2px;
            }
            #modal-card-container form #card input{
                border-radius: 2px;
            }
        }








/* ------------------TRANSİTİON---------------- */
/* header */
header{
    transform: translateX(-40px);
    transition: all 0.6s ease;
    opacity: 0;
}
header.active{
    opacity: 1;
    transform: translateX(0);
}
/* title */
.products-title{
    transform: translateX(-40px);
    transition: transform 0.4s ease;
    opacity: 0;
}
.products-title h2{
    transform: translateX(-40px);
    transition: transform 0.3s ease;
    opacity: 0;
}
.products-title h1{
    transform: translateX(-40px);
    transition: transform 0.2s ease;
    opacity: 0;
}

.products-title.active{
    transform: translateX(0px);
    opacity: 1;
}
.products-title h2.active{
    transform: translateX(0px);
    opacity: 1;
}
.products-title h1.active{
    transform: translateX(0px);
    opacity: 1;
}
/* product */
.little-products-c{
    transform: translateX(-20px);
    transition: transform 0.3s ease;
    opacity: 0;
}

.little-products-c.active{
    transform: translateX(0px);
    opacity: 1;
}
/* product title*/
#products .title-categories{
    transform: translateX(-30px);
    transition: transform 0.2s ease;
    opacity: 0;
}
#products .title-categories.active{
    transform: translateX(0px);
    opacity: 1;
}
/* modal */
#productModal .modal-content{
    transform: translate(-55%, -50%);
    transition: all 0.2s ease;
    opacity: 0;
}
#checkoutModal .modal-content #modal-card-container{
    transform: translateX(-40px);
    transition: all 0.3s ease;
    opacity: 0;
}

#productModal .modal-content.active{
    transform: translateX(0px);
    opacity: 1;
    transform: translate(-50%, -50%);
}
#checkoutModal .modal-content #modal-card-container.active{
    transform: translateX(0px);
    opacity: 1;
}


