/*======================================
    RESET
======================================*/

/* local font import removed for website package */


@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;500;600;700&display=swap');
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: 'Lato';
    /* font-family: 'Noto-Serif'; */
    /* font-family:'Lato',sans-serif; */
}
/* local @font-face removed; website uses web/system fonts */

  /* local @font-face removed; website uses web/system fonts */
  .tblOrderHistory span,h1,p,td{
    font-family: 'Lato'!important;
  }
  .shop table.cart span,h1 {
	font-family: 'Lato'!important;
}
.tblOrderHistory{
    background: linear-gradient(180deg,#7CADAA,#0B3333);
    border-radius: 0.625rem;
    padding: 1.25rem 0.9375rem;
}

html{
    scroll-behavior:smooth;
}

body{
    background: hsla(255,255%,255%,.69);
    color:#0B3333;
    overflow-x:hidden;
}

.app{
    width:100%;
    max-width:480px;
    margin:auto;
    background:#fff;
    min-height:100vh;
    position:relative;
    overflow:hidden;
}


/* footer nav{
     
        position: fixed;
        left: 50%;
        bottom: 0;
        transform: translateX(-50%);
        width: 100%;
        max-width: 480px;
        height: 75px;
        background: #fff;
        display: flex;
        justify-content: space-around;
        align-items: center;
        border-top-left-radius: 22px;
        border-top-right-radius: 22px;
        box-shadow: 0 -4px 18px rgb(0 0 0 / 10%);
        z-index: 9999;
    
} */

/* BOTTOM NAV */
 
footer nav{

    position:fixed;

    left:50%;

    bottom:0;

    transform:translateX(-50%);

    width:100%;

    max-width:480px;

    height:75px;

    background:#A7C5BD;

    display:flex;

    justify-content:space-around;

    align-items:center;

    border-top-left-radius:22px;

    border-top-right-radius:22px;

    box-shadow:0 -4px 18px rgba(0,0,0,10%);

    z-index:9999;

}

footer nav a{
    text-decoration:none;
    color:#fff;
    display:flex;
    flex-direction:column;
    align-items:center;
    font-size:13px;
}

footer nav i{
    font-size:22px;
    margin-bottom:5px;
}

footer nav .active{
    color:#0B3333;
}


/*======================================
    HEADER
======================================*/

/* header{

    position:fixed;
    top:0;
    left:50%;
    transform:translateX(-50%);

    width:100%;
    max-width:480px;

    height:74px;

    background:rgba(255,255,255,.96);

    backdrop-filter:blur(15px);

    display:flex;

    align-items:center;

    justify-content:space-between;

    padding:12px;

    z-index:999;

    box-shadow:0 3px 15px rgba(0,0,0,.06);

} */

.logo{

    width:200px;
    height:50px;

    /* border-radius:00%; */

    overflow:hidden;

    flex-shrink:0;

}

.logo img{

    width:100%;
    height:100%;
    object-fit:cover;

}

.searchBox{

    flex:1;

    margin:0 12px;

    height:44px;

    background:#f3f3f3;

    border-radius:30px;

    display:flex;

    align-items:center;

    padding:0 16px;

}

.searchBox i{

    color:#888;

    margin-right:10px;

}

.searchBox input{

    border:none;

    background:none;

    outline:none;

    width:100%;

    font-size:14px;

}

/* .headerIcons{

    display:flex;

    gap:10px;

} */

.icon{

    width:50px;

    height:50px;

    /* background: hsla(36,68%,93%,.69); */

    border-radius:5px;

    display:flex;

    align-items:center;

    justify-content:center;
    /* border: 1.16px solid #0B3333; */

    /* box-shadow:0 4px 12px rgba(0,0,0,.08); */

    cursor:pointer;

    transition:.25s;

}

.icon:hover{

    transform:translateY(-3px);

}

.icon i{

    font-size:18px;

}

/* ===========================
   SHOP COLLECTION SECTION
=========================== */

.collectionSection {
    padding: 40px 20px;
    background: #fff;
}

.sectionHeader {
    text-align: center;
    margin-bottom: 0px;
}

.sectionHeader h2 {
    font-size: 32px;
    font-weight: 700;
    color: #0B3333;
    margin: 0;
    position: relative;
    display: inline-block;
}

/* .sectionHeader h2::after {
    content: "";
    width: 60px;
    height: 3px;
    background: #c89b3c;
    display: block;
    margin: 10px auto 0;
    border-radius: 5px;
} */

/* Collection Grid */

.collectionGrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Collection Card */

.collectionCard {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    text-align: center;
    transition: all .3s ease;
    box-shadow: 0 3px 10px rgba(0,0,0,.08);
}

.collectionCard:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0,0,0,.15);
}

.collectionCard img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

.collectionCard div {
    padding: 15px;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.imghei3{
    width: 100%;
    display: block;
    background: #fff;
    border-radius: 10px;
}
/* .timeless-design-list{
    width: 50vw;
    flex-shrink: 0;
    scroll-snap-align: center; 
    display: block;
} */

.timeless-design-list{
    color: #fff;
    font-family: 'Inter Medium';
    font-size: 16px;
    background: #c9a961;
    border-radius: 80px;
    position: absolute;
    /* left: 50%; */
    transform: translateX(15%);
    margin-top: -15px;
    /* bottom: -17px; */
    height: 36px;
    line-height: 36px;
    display: block;
    width: 134px;
    text-align: center;
    transition: all .3s ease-in-out;
}



/* Tablet */

@media (max-width:991px) {

    .collectionGrid {
        grid-template-columns: repeat(2,1fr);
    }

    .collectionCard img {
        height: 220px;
    }
    .CatCollection{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 15px;
    }
    

}

/* Mobile */

@media (max-width:576px) {

    .collectionSection {
        padding: 25px 15px;
    }

    /* .sectionHeader h2 {
        font-size: 26px;
    } */

    .collectionGrid {
        grid-template-columns: repeat(2,1fr);
        gap: 15px;
    }

    .collectionCard img {
        height: 170px;
    }

    .collectionCard div {
        font-size: 16px;
        padding: 12px;
    }


}


/*======================================
    HERO
======================================*/

.hero{

    width:100%;

    overflow:hidden;

    /* border-radius:25px; */

    margin:0px 0;

}


.heroSlider{

    display:flex;

    width:100%;

    transition:0.6s ease-in-out;

}


.slide{

    min-width:100%;

    flex-shrink:0;

}


.slide img{

    width:100%;

    height:440px;

    object-fit:cover;

    display:block;
    /* margin-left: 2%; */
    /* border-radius: 0px; */

}


/*======================================
    SECTION
======================================*/

/* .sectionHeader{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:20px 16px 14px;

}

.sectionHeader h2{

    font-size:22px;

    font-weight:600;

}

.sectionHeader span{

    color:#ff3d83;

    font-size:14px;

    cursor:pointer;

} */


/* ==========================================
   SECTION TITLE
========================================== */

.sectionHeader{

    /* display:flex;

    justify-content:space-between;

    align-items:center; */

    padding:18px 16px 12px;

}

.sectionHeader h2{

    font-size:21px;

    font-weight:700;

}

.sectionHeader span{

    color:#d4af37;

    font-size:14px;

    cursor:pointer;

}



/*======================================
    CATEGORY
======================================*/

.categorySlider{

    display:flex;

    overflow-x:auto;

    gap:20px;

    padding:5px 7px 5px;

    scrollbar-width:none;
    

}

.categorySlider::-webkit-scrollbar{

    display:none;

}

.categoryCard{

    min-width:90px;

    text-align:center;

    cursor:pointer;

    transition:.25s;
    

}

.categoryCard:hover{

    transform:translateY(-4px);

}

.categoryImage{

    width:95px;

    height:auto;

    border-radius:25px;

    overflow:hidden;

    margin:auto;

    background: #0B3333;
    /* border: 1.16px solid #0B3333; */

    /* box-shadow:0 8px 18px rgba(0,0,0,.08); */

}

.categoryImage img{

    width:100%;

    height:100%;

    object-fit:cover;

}

.categoryCard h4{

    font-size:13px;

    margin-top:13px;

    font-weight:600;

    text-align: center;

    

}

.fa-cart-shopping:before, .fa-shopping-cart:before {
    content: "\f07a";
    color: #fff;
}


.categorySection h1 {
    font-family: 'Noto-Serif'!important;
    font-size: clamp(14px,2vw,1.125rem);
    font-weight: 600;
    color: #0B3333;
    line-height: 1.625rem!important;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    -ms-flex-pack: center;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
    margin-top: 3rem;
    font-size: 2.125rem;
}


.sectionHeader h1 {
    font-family: 'Noto-Serif'!important;
    font-size: clamp(14px,2vw,1.125rem);
    font-weight: 600;
    color: #0B3333;
    line-height: 1.625rem!important;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    -ms-flex-pack: center;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
    margin-top: 2rem;
    font-size: 2.125rem;
}
/*======================================
    OFFER
======================================*/

.offerBanner{

    padding:0px 0px 18px 0px;

}

.offerBanner img{

    width:100%;

    border-radius:0px;

    display:block;
    /* margin-top: 0px; */

}

.offerBanner2{

    padding:0px 0px 0px 0px;

}

.offerBanner2 img{

    width:100%;

    border-radius:0px;

    display:block;
    /* max-height: 400px; */
    /* margin-top: 0px; */

}




/*======================================
    LOADING
======================================*/

.skeleton{

    animation:pulse 1.2s infinite;

    background:#ececec;

}

@keyframes pulse{

0%{

opacity:.5;

}

50%{

opacity:1;

}

100%{

opacity:.5;

}

}