@import url('https://fonts.googleapis.com/css2?family=Poppins: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&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=El+Messiri:wght@400..700&family=Maitree:wght@200;300;400;500;600;700&display=swap');
:root{
    --primary: #da5d44;
    --bg: #eee;
    --bg2:#fff1ee;
    --white: #ffffff;
    --black: #000000;
    --black2: #242423;
    --heading: "El Messiri", sans-serif;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* font-family: "Inter Tight", sans-serif; */
    /* font-family: "Montserrat", sans-serif; */
    /* font-family: "Maitree", serif; */
    font-family: "Poppins", sans-serif;
    scroll-behavior: smooth;
}
body{
    background-image: url(./img/body.webp);
    background-repeat: repeat;
}

@keyframes up {
    0% { transform: translateY(0); }
    50% { transform: translateY(-40px); }
    100% { transform: translateY(0); }
}
@keyframes side {
    0% { transform: translateX(0); }
    50% { transform: translateX(-40px); }
    100% { transform: translateX(0); }
}
@keyframes rotate {
    0% { transform: rotate(0); }
    100% { transform: rotate(360deg); }
}
@keyframes scale {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/********* Back To Top Button Start *********/

#top{
    display: inline-block;
    background-color: var(--primary);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    position: fixed;
    bottom: 20px;
    right: 20px;
    transition: background-color .3s, 
      opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    text-decoration: none;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
  }
  #top::after {
    content: "\f077";
    font-family: FontAwesome;
    font-weight: normal;
    font-style: normal;
    font-size: 1.5em;
    line-height: 50px;
    color: #fff;
  }
  #top:hover {
    cursor: pointer;
    background-color: var(--black);
  }
  #top:active {
    background-color: var(--black);
  }
  #top.show {
    opacity: 1;
    visibility: visible;
  }

/********* Back To Top Button End *********/

/********* Top Header Section Start *********/

#top-header{
    background-color: var(--primary);
    padding: 12px;
    padding-bottom: 12px;
    color: var(--white);
    font-weight: 500;
    font-size: 18px;
}

/********* Top Header Section End *********/

/********* Pat Section End *********/

@keyframes back {
    0% { background-position: 0 0; }
    100% { background-position: 100% 0; }
}
#pat .nav-pattern {
    height: 11px !important;
    width: 100%;
    bottom: 0;
    background-repeat: repeat-x;
    z-index: 9999999999;
    transform: rotate(180deg);
    background-color: var(--primary);
    animation: back 150s linear infinite;
}

/********* Pat Section End *********/

/********* Header Section Start *********/

#nav{
    position: sticky;
    top: 0;
    background-color: var(--white);
    padding: 14px;
    z-index: 99999999;
    border-bottom: 1px solid #e0e0e0;
}
#nav ul li{
    display: inline;
}
#nav ul li a{
    text-decoration: none;
    color: var(--black);
    font-weight: 500;
    padding: 5px;
    margin-right: 15px;
    transition: .3s ease-in-out;
}
#nav ul li a:hover{
    color: var(--primary);
}
#nav .more a{
    margin-right: 12px;
    text-decoration: none;
    color: var(--black);
    transition: .3s ease-in-out;
}
#nav .more a i{
    font-size: 23px;
}
#nav .profile i{
    font-size: 27px !important;
}
.more-wrap{
    position: relative;
}
.more-info{
    position: absolute;
    top: -3px;
    right: 4px;
    background-color: red;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 600;
    color: var(--white);
}
#nav .more a:hover{
    color: var(--primary);
}

/********* Header Section End *********/

/********* Banner Section Start *********/

.ban-top{
    height: 650px;
    overflow: hidden;
}
.carousel{
    overflow: hidden;
}
#banner img{
    position: relative;
    object-fit: cover;
    height: 650px;
    width: 100%;
    object-fit: cover;
    overflow: hidden;
}
.carousel-caption{
    z-index: 2 !important;
    width: 600px;
    text-align: left;
    position: absolute;
    right: 100px;
    top: 45%;
    transform: translateY(-50%);
}
.spa{
    display: inline-block;
    color: var(--blue);
    position: relative;
}
.spa::after{
    content: "";
    position: absolute;
    left: -10%;
    top: -10%;
    width: 120%;
    height: 120%;
    background-color: var(--white);
    z-index: -1;
}

.carousel-caption span{
    color: var(--primary);
}
.carousel-caption h1{
    font-family: var(--heading);
    color: var(--black);
    font-weight: 900;
    font-size: 75px;
    line-height: 1;
}
.carousel-caption p{
    font-weight: 300;
    font-size: 18px;
    color: var(--black);
}
.carousel-caption h6{
    color: var(--primary);
    font-size: 24px;
    font-weight: 400;
}
#banner .b-btn a{
    background-color: var(--primary);
    padding: 14px 30px;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 500;
    color: var(--white);
    text-decoration: none;
    transition: .4s ease-in-out;
}
#banner .b-btn a:hover{
    background-color: var(--black);
    color: var(--white);
}
#banner .b-btn2 a{
    background-color: var(--primary);
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 50px;
    font-weight: 500;
    color: var(--white);
    text-decoration: none;
    transition: .4s ease-in-out;
}
#banner .b-btn2 a:hover{
    background-color: var(--black);
    color: var(--white);
}
#banner .carousel-indicators {
    left: auto !important;
    right: 30% !important;
    transform: translateX(-50%);
    bottom: 20px;
    display: flex;
    align-items: center;
}
#banner .carousel-indicators > li{
  border-radius: 0 !important;
}
#banner .carousel-indicators [data-bs-target]{
    border-radius: 0;
    width: 10px !important;
    height: 10px !important;
    border-radius: 50%;
    margin: -5px 3px;
}
#banner .carousel-indicators .active{
    width: 14px !important;
    height: 14px !important;
    border-radius: 50%;
    /* background-color: var(--yellow) !important; */
}

#type{
    position: relative;
}
.ban-over{
    position: absolute;
    left: 50px;
    top: 40px;
    animation: side 5s infinite linear both;
}
.flower-over{
    position: absolute;
    right: 40px;
    bottom: -300px;
    animation: scale 5s infinite linear both;
}
.carousel-control-next, .carousel-control-prev{
    width: 7%;
}

#banner .custom-icon i {
  color: var(--black) !important;
  font-size: 45px;
  transition: .3s ease-in-out;
}
#banner .custom-icon {
  opacity: 1 !important;
  transition: .3s ease-in-out;
}
.carousel-control-next:hover i {
    color: var(--primary) !important;
}
.carousel-control-prev:hover .custom-icon {
    opacity: 1 !important;
}
.gen{
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}
.gen-text{
    padding-left: 40px;
    width: 50%;
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
}
.gen-text span{
    font-family: var(--heading);
    font-size: 40px;
    font-weight: 500;
    color: var(--primary);
}
.gen-text h4{
    font-size: 20px;
    line-height: 1.4;
    font-weight: 300;
}
.gen img{
    width: 100%;
    height: 280px !important;
    transition: .7s ease-in-out;
}
.gen:hover img{
    transform: scale(1.1);
}

/********* Banner Section End *********/

/********* Shop by Type Section Start *********/

#type .cat-img{
    height: 150px;
    border: 1px dashed var(--primary);
    border-radius: 50%;
    width: 150px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
#type .cat-img img{
    border-radius: 50%;
    padding: 10px;
    width: 150px;
    height: 150px;
    object-fit: cover;
    transition: .3s ease-in-out;
}
#type .cat-text{
    font-family: "Maitree", serif;
    font-size: 18px;
    font-weight: 600;
    transition: .3s ease-in-out;
}
#type .cat-wrap{
    cursor: pointer;
}
#type .cat-wrap:hover .cat-text{
    color: var(--primary);
}
#type .cat-wrap:hover img{
    transform: scale(1.1);
}

/********* Shop by Type Section End *********/

/********* Info Section Start *********/

#info{
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    background-color: #d9f5f3;

}
#info .i-icon img{
    filter: brightness(0) saturate(100%) invert(23%) sepia(10%) saturate(10%) hue-rotate(328deg) brightness(92%) contrast(86%);
    width: 50px;
    margin-right: 15px;
}
#info .i-text h5{
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 7px;
}

/********* Info Section End *********/

/********* Scroll Section Start *********/

#supermarquee{
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    padding: 15px 0;
    font-size: 28px !important;
    font-size: 40px;
    background-color: #d9f5f3;
}

/********* Scroll Section End *********/

/********* Best Product Section Start *********/

.p-head-wrap h2{
    font-family: var(--heading);
    font-weight: 700;
}
.p-head-wrap .p-all a{
    text-decoration: none;
    color: var(--white);
    background-color: var(--black);
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 50px;
    text-transform: uppercase;
    transition: .3s ease-in-out;
}
.p-head-wrap .p-all a:hover{
    background-color: var(--primary);
}
.pro-item{
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
}
.pro-item h5{
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 12px;
    transition: .3s ease-in-out;
}
.pro-img{
    height: 100%;
    width: 100%;
    overflow: hidden;
}
.pro-item h4{
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 12px;
}
.pro-item:hover h5{
    color: var(--primary);
}
.pro-item img{
    transition: .3s ease-in-out;
}
.pro-item:hover img{
    transform: scale(1.1);
}
.pro-item .cart-btn a{
    text-decoration: none;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
    padding: 12px 40px;
    transition: .3s ease-in-out;
}
.pro-item .cart-btn a:hover{
    background-color: var(--black);
}

/********* Best Product Section End *********/

/********* Boys Section Start *********/

.custom-buttons {
      margin-top: 30px;
}
.custom-buttons button {
  width: 60px;
  height: 60px;
  background: var(--black);
  color: var(--white);
  border: none;
  margin-right: 7px;
  font-size: 20px;
  cursor: pointer;
  transition: .3s ease-in-out;
}
.custom-buttons button:hover {
  background: var(--primary);
}
#boys{
    position: relative;
}
.teddy-over{
    position: absolute;
    right: 50px;
    bottom: 100px;
    animation: up 5s infinite linear both;
}
#boys .pro-item{
    border-radius: 0;
    border: 1px dashed var(--primary);
}
#boys .p-head-wrap span{
    color: var(--primary);
    text-transform: uppercase;
    font-weight: 600;
}
#boys .p-head-wrap h1{
    font-family: var(--heading);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 60px;
    line-height: 1;
    margin-top: 10px;
}
#boys .boy-bg{
    background-image: url(./img/boy-bg.webp);
    min-height: 100%;
    height: 100% !important;
    background-size: cover;
}

/********* Boys Section End *********/

/********* promo Section Start *********/

#promo1 img{
    width: 100%;
}

/********* promo Section Start *********/

/********* Girls Section Start *********/

#girls{
    position: relative;
}
.butter-over{
    position: absolute;
    left: 20px;
    bottom: 300px;
    animation: up 5s infinite linear both;
}
#girls .pro-item{
    border-radius: 0;
    border: 1px dashed var(--primary);
}
#girls .p-head-wrap span{
    color: var(--primary);
    text-transform: uppercase;
    font-weight: 600;
}
#girls .p-head-wrap h1{
    font-family: var(--heading);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 60px;
    line-height: 1;
    margin-top: 10px;
}
#girls .girl-bg{
    background-image: url(./img/girl-bg.webp);
    min-height: 100%;
    height: 100% !important;
    background-size: cover;
}

/********* Girls Section End *********/

/********* Occasions Section Start *********/

#occasions{
    position: relative;
}
.car-over{
    position: absolute;
    right: 50px;
    top: 40px;
    animation: side 5s infinite linear both;
}
.ball-over{
    position: absolute;
    left: 50px;
    bottom: -200px;
    animation: rotate 20s infinite linear both;
}
#occasions .p-head-wrap h1{
    font-family: var(--heading);
    font-weight: 600;
    font-size: 45px;
    line-height: 1;
}
#occasions a{
    text-decoration: none;
    color: var(--black);
    font-weight: 500;
    font-size: 15px;
    transition: .4s ease-in-out;
}
#occasions a img{
    transition: .4s ease-in-out;
}
#occasions a:hover img{
    transform: scale(1.1);
}
#occasions a:hover {
    color: var(--primary);
}
#occasions .oc-text{
    margin-top: 12px;
}
#occasions .oc-img{
    border-radius: 20px;
    overflow: hidden;
}

/********* Occasions Section End *********/

/********* Social Section Start *********/

#social .p-head-wrap h1{
    font-family: var(--heading);
    font-weight: 600;
    font-size: 45px;
    line-height: 1;
}

/********* Social Section End *********/

/********* News Section Start *********/

#news{
    /* background-color: var(--primary); */
    background-image: url(./img/sub.webp);
    background-size: cover;
}
#news h1{
    font-family: var(--heading);
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 50px;
    letter-spacing: 2px;
    line-height: 1;
    color: var(--black);
    text-transform: uppercase;
}
#news p{
    font-weight: 400;
    margin-bottom: 30px;
    font-size: 19px;
    line-height: 1;
    color: #585858;
}
#news input{
    padding: 14px;
}
#news input:focus{
    box-shadow: none;
    border-color: var(--black);
}
#news button{
    background-color: var(--primary);
    border-color: var(--primary);
}
#news button:hover{
    background-color: var(--black);
    border-color: var(--black);
}

/********* News Section End *********/

/********* Footer Section Start *********/

#footer{
    /* background-color: #f8f8f8; */
    background-image: url(./img/foot.webp);
    background-size: cover;
    background-position: center bottom;
}
#footer a{
    text-decoration: none;
}
#footer a:hover{
    text-decoration: underline;
    color: var(--primary);
}
#footer a:hover p{
    color: var(--primary);
}
#footer h5{
    font-family: var(--heading);
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 25px;
}
#footer p{
    color: #666666;
    line-height: 1.6;
    font-size: 15px;
    font-weight: 400;
}
#footer ul li{
    list-style: none;
    padding-bottom: 7px;
}
#footer ul li a{
    text-decoration: none;
    color: #666666;
    font-weight: 400;
    font-size: 15px;
}
#footer ul li a:hover{
    text-decoration: underline;
    color: var(--primary);
}
#footer .fc-icon i{
    color: var(--primary);
    margin-right: 15px;
}
#footer .bd{
    border-top: 1px solid #c2c2c2;
}
#footer .f-icon ul{
    display: flex;
    justify-content: end;
    gap: 17px;
}
#footer .f-icon ul li a:hover{
    text-decoration: none;
}
#footer .f-icon ul li a i{
    width: 32px;
    height: 32px;
    display: flex;
    font-size: 17px;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    border: 1px dashed var(--primary);
    color: var(--primary);
    border-radius: 50%;
    transition: .3s ease-in-out;
}
#footer .f-icon ul li a:hover i{
    background-color: var(--primary);
    color: var(--white);
}

/********* Footer Section End *********/
