/********** Custom CSS **********/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif serif;
}

:root {
    --primary: #c10976;
    --secondary: #e85178;
    --light: #ffdde4;
    --black: #1d1d1d;
    --white: #ffffff;
}

h1,
h2,
.font-weight-bold {
    font-weight: 600 !important;
}

h3,
h4,
.font-weight-semi-bold {
    font-weight: 500 !important;
}

h5,
h6,
.font-weight-medium {
    font-weight: 500 !important;
}


/* ******************** Spiner Start ************************ */

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner .spinner-grow {
    color: var(--primary);
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

/* ******************** Spiner End ************************ */

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

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 40px;
    z-index: 99;
    background: var(--light);
    color: var(--primary);
    border: 4px solid var(--primary);
    border-radius: 50%;
    font-size: 23px;
}

.back-to-top:hover {
    color: var(--primary);
}

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


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

.section-header {
    position: relative;
    padding-top: 25px;
}

.section-header h1 {
    color: var(--primary);
}

.section-header::before {
    position: absolute;
    content: "";
    width: 60px;
    height: 2px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
}

.section-header::after {
    position: absolute;
    content: "";
    width: 90px;
    height: 2px;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary);
}

.section-header.text-start::before,
.section-header.text-start::after {
    left: 0;
    transform: translateX(0);
}

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


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

.top-header {
    background: var(--light);
}

.top-header .top-shape::before {
    position: absolute;
    content: "";
    width: 35px;
    height: 100%;
    top: 0;
    left: -17px;
    background: var(--secondary);
    transform: skew(40deg);
}

.top-header .top-shape {
    background: var(--secondary);
}

.top-header .top-shape a {
    color: var(--white);
    text-decoration: none;
}

.top-header .top-shape a:hover {
    color: var(--light);
}

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

/* ******************** Navbar Start ************************ */

.navbar {
    background: var(--white);
    border-bottom: 1px solid var(--primary);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}

.navbar .navbar-brand img {
    width: 100%;
    height: 70px;
}

.navbar .navbar-nav .nav-link {
    font-family: 'Jost', sans-serif;
    padding: 26px 15px;
    font-size: 18px;
    color: var(--secondary);
    outline: none;
    transition: .5s;
}

.sticky-top.navbar .navbar-nav .nav-link {
    padding: 20px 15px;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar .book-btn {
    background: var(--secondary);
    color: var(--white);
}

.navbar .book-btn:hover {
    background: var(--secondary);
    color: var(--secondary);
}


.navbar-toggler {
    float: right;
    border: none;
    padding-right: 0;
}

.navbar .navbar-toggler:active,
.navbar .navbar-toggler:focus {
    outline: none;
    border: none;
}

.navbar .navbar-toggler {
    color: var(--white) !important;
    border-color: var(--white) !important;
}

.navbar .navbar-toggler-icon {
    width: 24px;
    height: 18px;
    background-image: none;
    position: relative;
    border-bottom: 3px solid var(--secondary);
    transition: all 300ms linear;
}

.navbar .navbar-toggler-icon:after,
.navbar .navbar-toggler-icon:before {
    width: 24px;
    position: absolute;
    height: 2px;
    background-color: var(--secondary);
    top: 0;
    left: 0;
    content: '';
    /* z-index: 2; */
    transition: all 300ms linear;
}

.navbar .navbar-toggler-icon:after {
    top: 8px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
    transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
    transform: translateY(8px) rotate(-45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    border-color: transparent;
}

@media (max-width: 991.98px) {

    .navbar .navbar-nav .nav-link,
    .sticky-top.navbar .navbar-nav .nav-link {
        padding: 10px 0;
    }

    .navbar-collapse {
        position: absolute;
        background: var(--light);
        height: 100vh;
        width: 234px;
        left: -282px;
        top: 67px;
        box-shadow: var(--box-shadow);
        padding-top: 10px;
        padding-left: 32px;
        transition: .3s linear;
        z-index: 99;
    }

    .navbar-collapse.show {
        top: 67px;
        left: 0px;
    }
}

@media screen and (min-width:577px) and (max-width: 840px) {
    .navbar-collapse {
        top: 86px;
    }

    .navbar-collapse.show {
        top: 86px;
    }
}

@media (max-width: 576px) {
    .navbar .navbar-brand img {
        width: 100%;
        height: 51px;
    }
}

/* ******************** Navbar End ************************ */

/* ******************** About Start ************************ */

#about .img-border {
    position: relative;
    height: 100%;
    min-height: 400px;
}

#about .img-border::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 3rem;
    bottom: 3rem;
    border: 5px solid var(--primary);
}

#about .img-border img {
    position: absolute;
    top: 3rem;
    left: 3rem;
    width: calc(100% - 3rem);
    height: calc(100% - 3rem);
}

#about h1 {
    color: var(--primary);
}
#about h5 {
    color: var(--secondary);
}
/* ******************** About End ************************ */


/* ******************** Shop By Category Start ************************ */

.shop-by-category-item {
    display: inline-block;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 16px;
    overflow: hidden;
    position: relative;
    text-align: left;
    width: 100%;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.shop-by-category-item,
.shop-by-category-item *:before,
.shop-by-category-item *:after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 0.45s ease;
    transition: all 0.45s ease;
}

.shop-by-category-item img {
    backface-visibility: hidden;
    max-width: 100%;
    vertical-align: top;
}

.shop-by-category-item:before,
.shop-by-category-item:after {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    content: '';
    background-color: var(--primary);
    opacity: 0.5;
    -webkit-transition: all 0.45s ease;
    transition: all 0.45s ease;
}

.shop-by-category-item:before {
    -webkit-transform: skew(30deg) translateX(-80%);
    transform: skew(30deg) translateX(-80%);
}

.shop-by-category-item:after {
    -webkit-transform: skew(-30deg) translateX(-70%);
    transform: skew(-30deg) translateX(-70%);
}

.shop-by-category-item .shop-by-category-content {
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    z-index: 1;
    bottom: 0;
    padding: 25px 40% 25px 20px;
    color: var(--white);
    display: flex;
    align-items: center;
}

.shop-by-category-item .shop-by-category-content:before,
.shop-by-category-item .shop-by-category-content:after {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
    content: '';
    opacity: 0.5;
    z-index: -1;
}

.shop-by-category-item .shop-by-category-content:before {
    -webkit-transform: skew(30deg) translateX(-100%);
    transform: skew(30deg) translateX(-100%);
}

.shop-by-category-item .shop-by-category-content:after {
    -webkit-transform: skew(-30deg) translateX(-90%);
    transform: skew(-30deg) translateX(-90%);
}

.shop-by-category-item h3 {
    margin: 0;
    opacity: 0;
    letter-spacing: 1px;
}

.shop-by-category-item h3 {
    font-family: 'Teko', sans-serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 1em;
    text-transform: uppercase;
}


.shop-by-category-item:hover h3,
.shop-by-category-item.hover h3 {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 0.9;
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
}

.shop-by-category-item:hover:before,
.shop-by-category-item.hover:before {
    -webkit-transform: skew(30deg) translateX(-20%);
    transform: skew(30deg) translateX(-20%);
    -webkit-transition-delay: 0.05s;
    transition-delay: 0.05s;
}

.shop-by-category-item:hover:after,
.shop-by-category-item.hover:after {
    -webkit-transform: skew(-30deg) translateX(-10%);
    transform: skew(-30deg) translateX(-10%);
}

.shop-by-category-item:hover .shop-by-category-content:before,
.shop-by-category-item.hover .shop-by-category-content:before {
    -webkit-transform: skew(30deg) translateX(-40%);
    transform: skew(30deg) translateX(-40%);
    -webkit-transition-delay: 0.15s;
    transition-delay: 0.15s;
}

.shop-by-category-item:hover .shop-by-category-content:after,
.shop-by-category-item.hover .shop-by-category-content:after {
    -webkit-transform: skew(-30deg) translateX(-30%);
    transform: skew(-30deg) translateX(-30%);
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
}

/* ******************** Shop By Category End ************************ */



/************************** Product Start **************************/


#product .product-item {
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    background: var(--secondary);
    border: 1px solid var(--secondary);
    border-radius: 16px;
    overflow: hidden;
}


#product .product-item .product-image {
    overflow: hidden;
    transition: 0.4s ease-in-out;
    border-radius: 16px;
}

#product .product-item .product-image .image-second {
    display: none;
}

#product .product-item .product-image:hover .image-second {
    display: block;
}

#product .product-item .product-image:hover .image-first {
    display: none;
}

#product .product-item .product-content {
    background: var(--light);
    border-top: 1px solid var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 10px;
    border-radius: 16px;
}

#product .product-item .product-name {
    color: var(--primary);
    font-family: Palatino, serif
}

#product .product-item .product-rating {
    list-style: none;
    color: gold;
    display: flex;
    align-items: center;
    padding-left: 0;
}

.product-price i {
    margin-right: 5px;
}

#product .product-item .new {
    background: var(--secondary);
    color: var(--light);
}

#product .product-item img {
    transition: .5s;
}

#product .product-item:hover img {
    transform: scale(1.1);
}

#product .product-item a {
    text-decoration: none;
    color: var(--primary);
}

#product .product-item .fa-star {
    color: gold;
}

#product .product-item a:hover {
    color: var(--dark) !important;
}

#product #select-box{
    border: 1px solid var(--secondary);
    color: var(--primary);
    font-weight: 500;
}

/************************** Product End **************************/


/************************** Feature Start **************************/

#Feature {
    background-color: var(--light);
}

#Feature .Feature-content {
    background-color: gold;
    padding: 10px;
    border-radius: 16px;
}

#Feature .Feature-content h5 {
    color: var(--primary);
    margin-top: 10px;
}

/************************** Feature End **************************/


/* faq start =================================== */

.accordion {
    width: 90%;
    max-width: 1000px;
    margin: 2rem auto;
}

.accordion-item {
    background-color: var(--primary);
    color: var(--light);
    margin: 1rem 0;
    border-radius: 0.5rem;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.25);
}

.accordion-item-header {
    padding: 0.5rem 3rem 0.5rem 1rem;
    min-height: 3.5rem;
    line-height: 1.25rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
}

.accordion-item-header::after {
    content: "\002B";
    font-size: 2rem;
    position: absolute;
    right: 1rem;
}

.accordion-item-header.active::after {
    content: "\2212";
}

.accordion-item-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

.accordion-item-body-content {
    padding: 1rem;
    line-height: 1.5rem;
    border-top: 1px solid;
    background: var(--light);
    color: var(--secondary);
    border-radius: 10px;
}

/* faq end ============================== */

/* ******************** Trending Product Start ************************ */

.trending-product-carousel .owl-nav {
    position: absolute;
    width: calc(100% + 45px);
    height: 45px;
    top: calc(50% - 22.5px);
    left: -22.5px;
    display: flex;
    justify-content: space-between;
    opacity: 0 !important;
    transition: .5s;
}

.trending-product-carousel:hover .owl-nav {
    opacity: 1 !important;
}

.trending-product-carousel .owl-nav .owl-prev,
.trending-product-carousel .owl-nav .owl-next {
    position: relative;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: var(--secondary);
    border-radius: 2px;
    font-size: 22px;
    transition: .5s;
}

.trending-product-carousel .owl-nav .owl-prev:hover,
.trending-product-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
}

.trending-product-card {
    border: 2px solid var(--light);
    border-radius: 16px;
    background: var(--light);
    overflow: hidden;
}

.trending-product-card:hover {
    border: 1px solid var(--secondary);
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.trending-product-card .trending-product-img {
    overflow: hidden;
    border-radius: 16px;
    margin: 5px;
}

.trending-product-card img {
    width: 100%;
    height: auto;
    transition: 0.3s linear;
}

.trending-product-card:hover img {
    transform: scale(1.15);
    transition: 0.3s linear;
}

.trending-product-card .trending-product-content {
    position: relative;
    top: 0px;
    padding: 8px 20px;
    background: var(--light);
}

.trending-product-card .trending-product-name {
    font-family: Palatino, serif;
    letter-spacing: 1px;
    color: var(--primary);
}

.trending-product-card .trending-product-rating {
    font-size: 20px;
    margin-top: 5px;
    margin-left: 20px;
    position: relative;
}

.trending-product-card .trending-product-rating span {
    display: inline-block;
    transition: transform 0.4s cubic-bezier(0.17, 0.89, 0.27, 1.36);
    transition-delay: 0.1s;
}

.trending-product-card .trending-product-rating span i {
   color: #fda40b;
   display: inline-block;
}

.trending-product-card .trending-product-rating:before {
    content: "";
    width: 40px;
    height: 2px;
    display: inline-block;
    background-color: #ff0088;
    position: absolute;
    top: 10px;
    left: -20px;
    transform: scale(0, 1);
    opacity: 0;
    transform-origin: left top;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.trending-product-card:hover .trending-product-rating span {
    transform: translateX(25px);
}

.trending-product-card:hover .trending-product-rating:before {
    transform: scale(1, 1);
    opacity: 1;
}

/* ******************** Trending Product End ************************ */


/* ******************** Collection Start ************************ */


#collection .collection-card {
    overflow: hidden;
    position: relative;
}

.collection-card .content {
    z-index: 2;
    width: 100%;
    position: absolute;
    bottom: -100px;
    transition: all 0.7s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px;
    box-sizing: border-box;
    min-height: 70px;
    background: var(--primary);
}

.collection-card .image {
    z-index: 1;
    height: 100%;
}

.collection-card img {
    height: 100%;
    width: 100%;
    transition: all 0.5s ease;
    transform: scale(1.2);
}

.collection-card:hover .content {
    bottom: 0px;
    color: var(--white);
}

.collection-card:hover .image img {
    transform: scale(1);
}

.collection-card .content span:first-child {
    text-transform: uppercase;
    margin-bottom: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-align: center;
    color: var(--white);
    font-size: 16px;
}

.collection-card .content span:last-child {
    font-size: 14px;
    color: var(--light);
    text-align: center;
    font-weight: 700;
}


/* ******************** Collection End ************************ */

/* Gift &Coin start ===================================== */

.grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 18px;
    overflow-x: hidden;
}

@media only screen and (min-width: 767px) {
    .grid {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 1.5rem;
    }
}

@media only screen and (min-width: 900px) {
    .grid {
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 1.5rem;
    }
}
.article {
    position: relative;
    cursor: pointer;
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 2px solid var(--secondary);
    border-radius: 16px;
}
.article figure{
    margin: 0px;
}
.article:hover:before {
    opacity: 1;
}

.article:hover .article__cover {
    transform: translateX(-2rem) scale(1.05);
}

.article:hover .article__title,
.article:hover .article__info {
    opacity: 1;
    transform: translateX(0);
}

.article:hover .article__title {
    transition-delay: 0s;
}

.article:hover .article__info {
    transition-delay: 0.1s;
}

.article:before {
    content: "";
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    transition: opacity 0.3s ease-in-out;
}

.article__figure {
    position: relative;
    overflow: hidden;
    margin: 0;
    height: 0;
    padding-bottom: 100%;
}

.article__cover {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: -2rem;
    width: calc(100% + 2rem);
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    transform: translateX(0);
    transition: transform 0.55s ease-in-out;
}

.article__caption {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 90%;
}

.article__title,
.article__info {
    opacity: 0;
    max-width: 25rem;
    padding: 0.85rem 1rem;
    transform: translateX(50%);
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.article__title {
    background-color: var(--primary);
    color: var(--white);
    font-weight: 300;
    transition-delay: 0.1s;
}
.article__title i{
    color: #fda40b;
}

/* Gift &Coin end-============================== */

/* ******************** Testimonial Start ************************ */

.testimonial {
    margin: 0 15px;
    overflow: hidden;
}

.testimonial .description {
    position: relative;
    color: var(--secondary);
    padding: 30px 20px;
    border: 1px solid var(--secondary);
    border-left: 3px solid var(--secondary);
    background: var(--light);
}

.testimonial .description:after {
    content: "";
    width: 20px;
    height: 20px;
    background: var(--light);
    border-bottom: 1px solid var(--secondary);
    border-left: 1px solid var(--secondary);
    position: absolute;
    bottom: -11px;
    left: 65px;
    transform: skewY(-45deg);
}

.testimonial .pic {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 20px 30px 10px;
    display: inline-block;
    border: 3px solid var(--secondary);
}

.testimonial .pic img {
    width: 100%;
    height: auto;
}

.testimonial .testimonial-prof {
    text-transform: capitalize;
    margin: 0 30px;
}

.testimonial .testimonial-prof h4 {
    color: var(--secondary);
    display: block;
    font-size: 17px;
    font-weight: bold;
    margin: 0 0 5px 0;
}

.testimonial .testimonial-prof small {
    display: block;
    font-size: 14px;
    color: black;
}


/* ******************** Testimonial End ************************ */

/* ******************** Contact Start ************************ */

.contact-info {
    display: inline-block;
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
    border-radius: 50%;
}

.contact-info-icon {
    margin-bottom: 15px;
}

.contact-info-item {
    background: var(--primary);
    padding: 30px 0px;
    border-radius: 16px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
}

.contact-page-sec .contact-page-form h2 {
    color: var(--primary);
    text-transform: capitalize;
    font-size: 22px;
    font-weight: 700;
}

.contact-page-form .col-md-6.col-sm-6.col-xs-12 {
    padding-left: 0;
}

.contact-page-form.contact-form input {
    margin-bottom: 5px;
}

.contact-page-form.contact-form textarea {
    height: 110px;
}

.contact-page-form.contact-form input[type="submit"] {
    background: var(--primary);
    width: 150px;
    border-color: var(--primary);
}

.contact-info-icon i {
    font-size: 48px;
    color: #fda40b;
}

.contact-info-text p {
    margin-bottom: 0px;
}

.contact-info-text h2 {
    color: var(--white);
    font-size: 22px;
    text-transform: capitalize;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-info-text span {
    color: var(--light);
    font-size: 16px;
    display: inline-block;
    width: 100%;
}

.contact-page-form input {
    background: var(--light) none repeat scroll 0 0;
    border: 1px solid var(--secondary);
    margin-bottom: 20px;
    padding: 12px 16px;
    width: 100%;
    border-radius: 4px;
}

.contact-page-form .message-input {
    display: inline-block;
    width: 100%;
    padding-left: 0;
}

.single-input-field textarea {
    background: var(--light) none repeat scroll 0 0;
    border: 1px solid var(--secondary);
    width: 100%;
    height: 120px;
    padding: 12px 16px;
    border-radius: 4px;
}

.single-input-fieldsbtn input[type="submit"] {
    background: #fda40b none repeat scroll 0 0;
    color: var(--white);
    display: inline-block;
    font-weight: 600;
    padding: 10px 0;
    text-transform: capitalize;
    width: 150px;
    margin-top: 20px;
    font-size: 16px;
}

.single-input-fieldsbtn input[type="submit"]:hover {
    background: var(--primary);
    transition: all 0.4s ease-in-out 0s;
    border-color: var(--primary)
}

.single-input-field h4 {
    color: #464646;
    text-transform: capitalize;
    font-size: 14px;
}

.contact-page-form {
    display: inline-block;
    width: 100%;
    border: 2px solid var(--primary);
    padding: 16px;
    border-radius: 20px;
}


.contact-page-form form {
    padding: 20px 15px 0;
}

/* ******************** Contact End ************************ */

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

#footer {
    background: var(--light);
}

#footer h3 {
    color: var(--secondary);
}

#footer a {
    color: var(--secondary);
    text-decoration: none;
}

#footer a:hover {
    color: var(--primary);
}

#footer .social a {
    color: var(--primary);
    border: 4px solid var(--secondary);
}

#footer p {
    color: var(--secondary);
    font-size: 17px;
}

.copyright a {
    color: var(--white);
    text-decoration: none;
}

.copyright a:hover {
    color: var(--secondary);
}

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