*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    font-family: "Teko", sans-serif;
}
.navbar{
    display: flex;
    align-items: center;
    padding: 20px;
}
nav{
    flex: 1;
    text-align: right;
}
nav ul{
    display: inline-block;
    font-size: 25px;
    list-style-type: none;
}
nav ul li{
    display: inline-block;
    margin-right: 20px;
}
a{
    text-decoration: none;
    color: #ffffff;
}
p{
    color: #ffffff;
    font-size: 25px;
}
.container{
    max-width: 1600px;
    margin: auto;
    padding-left: 25px;
    padding-right: 25px;
}
.row{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-around;
}
.col-2{
    flex-basis: 50%;
    min-width: 300px;
}
.col-2 img{
    max-width: 100%;
    padding: 50px 0;
}
.col-2 h1{
    font-size: 70px;
    line-height: 60px;
    margin: 25px 0;
    color: #ffffff;
}
.btn{
    display: inline-block;
    background: #ffffff;
    color: black;
    padding: 8px 30px;
    margin: 30px 0;
    border-radius: 30px;
    transition-duration: 0.5s;
}
.form .btn{
     color: white; 
     background: #6a1781;
}
.form .btn:hover{
    background: #410d42;
}
.btn:hover{
    background: #949494;
}
.header{
    background: radial-gradient(#6a1781,#59115a);
}
.header .row{
    margin-top: 10px;
}
.categories{
    margin: 70px 0;
}
.top-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    text-shadow: 2px 2px 0 black, 
   -2px 2px 0 black, 
    2px -2px 0 black, 
   -2px -2px 0 black;
    font-size: 50px;
    font-weight: bold;
    transition: transform 1s ease;
}
.under-text {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #4a3144;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 36px;
    transition: transform 1s ease;
    padding: 10px;
}
.col-4:hover .top-layer {
    transform: translateY(-100%);
}

.col-4:hover .under-text {
    transform: translateY(-100%);
}
.col-3{
    flex-basis: 30%;
    min-width: 250px;
    margin-bottom: 15px;
    
}
.col-3 img{
    width: 100%;
    border: 10px solid #6a1781;
    border-radius: 10px;
    
}
.small-container{
    max-width: 1080px;
    margin: auto;
    padding-left: 25px;
    padding-right: 25px;
}
.home-col{
    width: 100%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-around;
}
.home-col .col-3{
    flex-basis: 30%;
    position: relative;
    min-width: 300px;
    min-height: 500px;
    overflow: hidden;
    border: 10px solid #6a1781;
    margin-right: 5px;
    margin-left: 5px;
    border-radius: 10px;
}
.home-col .col-3:hover .top-layer {
    transform: translateY(-100%);
}

.home-col .col-3:hover .under-text {
    transform: translateY(-100%);
    
}
.col-4{
    flex-basis: 25%;
    position: relative;
    min-width: 300px;
    min-height: 500px;
    overflow: hidden;
    border: 5px solid #f4f4f400;
}
.col-4 img{
    width: 100%;
}
.title{
    text-align: center;
    margin: 0 auto 80px;
    position: relative;
    line-height: 60px;
}
.title::after{
    content: '';
    background: #fafafa;
    height: 5px;
    width: 300px;
    border-radius: 5px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) translateY(-20%);
}

.services .title::after{
    content: '';
    background: #6a1781;
    height: 5px;
    width: 300px;
    border-radius: 5px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) translateY(-20%);
}

.form input, .form textarea{
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 2px solid #6a1781;
    font-size: 18px;
    border-radius: 4px;
}
.form input[type="checkbox"] {
    width: 36px;
    height: 36px;
    margin-right: 8px;
}
.form label{
    font-size: 36px;
    color: #59115a;
}
.form button{
    width: 40%;
    display: inline-block;
    background: #6a1781;
    color: white;
    padding: 8px 30px;
    margin: 30px 0;
    border-radius: 30px;
    transition-duration: 0.5s;
}
.form button:hover{
    background: #59115a;
}

.fileupload {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.fileupload input[type="file"] {
  flex: 1;
}

.remove-upload {
  cursor: pointer;
  color: red;
  font-weight: bold;
  font-size: 36px;
  user-select: none;
}

.galary .row .col-4 .top-layer{
    align-items:baseline;
}
.galary .row .col-4 .under-text{
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: baseline;
    justify-content: center;
    text-align: center;
    color: white;
    text-shadow: 2px 2px 0 black, 
   -2px 2px 0 black, 
    2px -2px 0 black, 
   -2px -2px 0 black;
    font-size: 50px;
    font-weight: bold;
    transition: transform 1s ease;
}


/*footer*/
.footer{
    background: #000;
    color: #8a8a8a;
    font-size: 14px;
    padding: 60px 0 20px;
}
.footer p{
    color: #8a8a8a;
}
.footer h3{
    color: #fff;
    margin-bottom: 20px;
}
.footer-col-1, .footer-col-2, .footer-col-3{
    min-width: 250px;
    margin-bottom: 20px;
}
.footer-col-1{
    flex-basis: 33%;
    text-align: center;
    font-size: 40px;
}
.footer-col-1 ul{
    font-size: 25px;
}
.footer-col-2{
    flex: 1;
    text-align: center;
}
.footer-col-2 img{
    width: 180px;
    margin-bottom: 20px;
}
.footer-col-3{
    flex-basis: 33%;
    font-size: 40px;
}
ul{
    list-style-type: none;
}
.footer hr{
    border: none;
    background: #b5b5b5;
    height: 1px;
    margin: 20px 0;
}
.copyright{
    text-align: center;
}


.menu-icon{
    width: 28px;
    margin-left: 20px;
    display: none;
}


.material-symbols-outlined {
    color: gold;
    font-variation-settings:
    'FILL' 1,
    'wght' 400,
    'GRAD' 0,
    'opsz' 24
}

@media only screen and (max-width: 850px){
    .logo img[id="textlogo"]{
        display: none;
    }
    nav ul{
        position: absolute;
        z-index: 10;
        top: 70px;
        left: 0;
        background: #59115a;
        width: 100%;
        overflow: hidden;
        transition: 0.5s;
    }
    nav ul li{
        display: block;
        margin-right: 50px;
        margin-top: 10px;
        margin-bottom: 10px;
    }
    nav ul li a{
        color: white;
    }
    .menu-icon{
        display: block;
        cursor: pointer;
    }
}
@media only screen and (max-width: 1300px){
    .col-4{
        flex-basis: 50%;
    }
}
@media only screen and (max-width: 650px){
    .col-4{
        flex-basis: 100%;
    }
}


.row-2{
    justify-content: space-between;
    margin: 100px auto 50px;
}
select{
    border: 1px solid #3e5974;
    padding: 5px;
}
.page-btn{
    margin: 0 auto 80px;
}
.page-btn span{
    display: inline-block;
    border: 1px solid #3e5974;
    margin-left: 10px;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    cursor: pointer;
    transition: .25s;
}
.page-btn span:hover{
    background: #3e5974;
    color: #fff;
}


.small-img-row{
    display: flex;
    justify-content: space-between;
}
.small-img-col{
    flex-basis: 25%;
    cursor: pointer;
}



.cart-page{
    margin: 80px auto;
}
table{
    width: 100%;
    border-collapse: collapse;
}
.cart-info{
    display: flex;
    flex-wrap: wrap;
}
th{
    text-align: left;
    padding: 5px;
    color: #fff;
    background: #3e5974;
}
td{
    padding: 10px 5px;
}
td input{
    width: 40px;
    height: 30px;
    padding: 5px;
}
td a{
    color: black;
    font-size: 12px;
}
td img{
    width: 80px;
    height: 80px;
    margin-right: 10px;
}
td:last-child{
    text-align: right;
}
th:last-child{
    text-align: right;
}





@media only screen and (max-width: 600px){
    .row{
        text-align: center;
    }
    .col-2, .col-3, .col-4{
        flex-basis: 100%;
    }
    .single-product .row{
        text-align: left;
    }
    .single-product .col-2{
        padding: 20px 0;
    }
    .single-product h1{
        font-size: 26px;
        line-height: 32px;
    }
    .cart-info p{
        display: none;
    }
}