* {
    margin: 0;
    padding: 0;
}

:root {
    --purple: #7f385e;
}

.fancy_text {
    font-family: "Tangerine", cursive !important;
}

body {
    font-family: "Roboto", serif !important;
    font-size: 18px;
}

a,
a:hover,
a:focus {
    text-decoration: none;
}

a:hover {
    color: var(--purple);
}

header img.logo {
    max-height: 80px;
    object-fit: contain;
    display: block;
    margin: 12px auto;
}

header:before {
    position: absolute;
    bottom: -9px;
    left: 0;
    width: 100%;
    background: url(assets/images/banner-bg-top.png) repeat-x;
    height: 9px;
    content: "";
    z-index: 11;
}

.text-purple {
    color: var(--purple);
}

.bg-purple {
    background: var(--purple);
}

.text-black {
    color: #000;
}

header i {
    font-size: 36px;
}

.cnt_box {
    margin-left: 12px;
}

.cnt_box p a {
    font-size: 21px;
    font-weight: 800;
    color: var(--purple);
}

.cart span {
    --size: 20px;
    top: -8px;
    right: -5px;
    width: var(--size);
    height: var(--size);
    background: red;
    border-radius: 50%;
    text-align: center;
    color: #fff;
    font-size: 13px;
    line-height: 20px;
    font-weight: 600;
}

.navbar-light .navbar-nav .nav-link {
    /*    color: rgb(0 0 0);*/
    text-transform: uppercase;
    font-weight: 500;
    color: #fff;
    padding: 8px 15px;
    border-radius: 4px;
}

.navbar-light .navbar-nav .nav-link:hover {
    color: var(--purple);
    background: #fff;
}

.navbar-nav {
    justify-content: space-between;
}


.sec_padding {
    padding: 80px 0 0;
}

.pb-80 {
    padding-bottom: 80px;
}

.mb-60 {
    margin-bottom: 60px;
}

.sec_title h2 {
    font-size: 25px;
}

.sec_title .fancy_text {
    font-size: 92px;
    margin-bottom: 60px;
}

.sec_main_title {
    font-size: 45px;
    font-weight: 600;
    text-align: center;
}

.review .carousel-inner {
    background: #fff;
    padding: 50px 40px 80px;
    border-radius: 30px;
    box-shadow: 0px 10px 35px -5px #00000012;
}

.review .reviewer {
    margin-bottom: 30px;
}

.review .reviewer h3 {
    font-size: 23px;
    font-weight: 600;
    margin-bottom: 5px;
}

.review .reviewer p {
    color: #ff7ca9;
}

.review p.r_text {
    font-size: 20px;
    font-style: italic;
    font-weight: 300;
    width: 90%;
    margin: 12px auto 20px;
}

.review .r_text_box {
    padding-left: 14%;
    text-align: left;
}

.review .r_text_box img {
    left: 0;
    top: -85%;
    opacity: 0.5;
    width: 14%;
}

.review .carousel-indicators {
    margin-bottom: 40px;
}

.review .carousel-indicators [data-bs-target] {
    background-color: #d3d3d3;
}

.review .carousel-indicators .active {
    background-color: var(--purple);
    opacity: 1;
}

/*Intro*/
.sec_desc {
    width: 85%;
    margin-left: auto;
    margin-right: auto;
}

.s-category button {
    display: block;
    margin: auto;
    border-radius: 30px;
    padding: 5px 22px;
    border: 1px solid black;
}

.card-wrapper {
    width: 100%;
    height: 400px;
    margin: auto;
    background: gray;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.card-wrapper.m-set {
    margin-top: 30px;
}

.card-wrapper.d-set {
    height: 330px;
}

.card-wrapper .image-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.card-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.card-wrapper .c-content {
    position: absolute;
    width: 100%;
    z-index: 1;
    bottom: 0;
    text-align: center;
    padding: 30px;
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, #0000 100%);
}

.card-wrapper .c-content * {
    transition: all 0.3s linear;
}

.card-wrapper .c-content h4 {
    color: white;
    font-size: 32px;
    font-weight: 500;
    margin-bottom: -1em;
}

.card-wrapper .c-content a {
    margin-bottom: -1em;
    margin-top: 15px;
    opacity: 0;
}

.card-wrapper:hover .c-content {
    background-image: linear-gradient(to top, rgba(127, 56, 94, 0.8) 0%, #0000 100%);
}

.card-wrapper:hover .c-content h4,
.card-wrapper:hover .c-content a {
    margin-bottom: 0;
    opacity: 1;
}



/* =========================================
         css for the categorie
============================================ */

.categories {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.category-wrapper {
    position: relative;
}

.single-category {
    width: 90%;
    margin: auto;
    cursor: pointer;
}

.single-category:hover img {
    transform: scale(1.08);
}

.single-category:hover .image-wrapper {
    border: 5px solid var(--purple);
}

.single-category .image-wrapper {
    height: 230px;
    width: 100%;
    position: relative;
    border-radius: 90px;
    background: white;
    overflow: hidden;
    border: 3px solid #fff;
    transition: all 0.3s linear;
}

.single-category img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.3s linear;
    transform: scale(1);
}

.single-category p {
    text-align: center;
    margin-top: 10px;
    font-weight: 5000;
    font-size: 20px;
}

.single-category:hover p {
    color: var(--purple);
}


/*Products*/
.products {
    background: #fff3fd8f;
}

.all_product_slider {
    padding: 0 20px;
    overflow: hidden;
}

.prd_box .prd_img {
    height: 300px;
    border-radius: 12px;
    box-shadow: 0px 8px 12px -5px #0000003d;
    overflow: hidden;
    margin-bottom: 15px;
}

.prd_box .prd_img img {
    object-fit: cover;
    transition: all 0.3s linear;
}

.prd_box:hover .prd_img img {
    scale: 1.08;
}

.prd_box .ratings {
    color: #ffce00;
    margin-bottom: 10px;
    display: block;
}

.prd_box .prd_name {
    color: #000;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 5px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.prd_box .add_cart .price {
    color: #000;
    font-size: 18px;
    font-weight: 600;
}

.prd_box .add_cart .price s {
    color: #a5a5a5;
    font-size: 14px;
}

.prd_box .add_cart_btn,
.theme_btn {
    background: var(--purple);
    color: #fff;
    transition: all 0.3s linear;
}

.prd_box .add_cart_btn:hover,
.theme_btn:hover {
    background: #000;
    color: #fff;
}

.owl-theme .owl-nav [class*=owl-] {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: #a9a9a9 !important;
    border: 1px solid #e8e6e6 !important;
    background: #fff !important;
}

.owl-theme .owl-nav [class*=owl-] i {
    font-size: 38px;
    color: var(--purple);
}

.owl-theme .owl-nav [class*=owl-]:hover i {
    color: #fff;
}

.owl-theme .owl-nav [class*=owl-]:hover {
    color: #fff !important;
    border: 1px solid #e8e6e6 !important;
    background: var(--purple) !important;
}

.owl-carousel .owl-nav button.owl-prev {
    left: -30px;
    font-size: 22px;
    line-height: 78px;
}

.owl-carousel .owl-nav button.owl-next {
    right: -30px;
    font-size: 22px;
    line-height: 78px;
}


.banner-left-icon {
    position: relative;
    background: #fafcff;
    padding: 30px 20px;
    border-radius: 10px;
}

.banner-left-icon .banner-icon {
    max-width: 55px;
    margin-right: 20px;
    transition-duration: 0.3s;
}

.banner-left-icon .banner-icon img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.banner-left-icon .banner-text h3 {
    color: #7f385e;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
}

.banner-left-icon .banner-text p {
    margin-bottom: 0;
    color: #adadad;
    font-size: 16px;
}


/* ===================================
css for the why-choose-us section 
========================================= */
.why-us {
    padding-bottom: 100px;
}

.why-us .container {
    position: relative;
}

.why-us .row {
    position: relative;
    z-index: 99;
}

.why-us .reason {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.why-us .reason p {
    text-align: center;
}

.why-us .reason p.t-bold {
    font-weight: bold;
}

.why-us .m-image {
    position: absolute;
    width: 50%;
    bottom: -120px;
    left: 50%;
    transform: translate(-50%, 0%);
}

/* 


/* ------------------------
    Footer
------------------------*/
footer {
    background: #7f385e;
    padding: 80px 0px 10px;
    color: #ffffffdb;
    position: relative;
}

footer:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: url(assets/images/banner-bg-top-white.png) repeat-x;
    height: 9px;
    content: "";
    z-index: 11;
}

footer * {
    transition: all 0.3s linear;
}

footer h4 {
    color: #fff;
    font-weight: 600;
}

footer p,
footer li a,
footer a {
    color: #ffffffdb;
}

footer b {
    color: #fff;
    font-weight: 600;
}

.copyright {
    color: #ffffffdb;
    padding: 30px 0px 15px;
    border-top: 1px solid #ffffff8f;
    margin-top: 30px;
}

.copyright-link ul {
    display: flex;
    list-style: none;
    justify-content: flex-end;

}

.copyright-link ul li {
    padding: 0px 10px;
}

.footer-logo {
    background: #fff;
    display: inline-block;
    border-radius: 6px;
    padding: 8px 20px;
}

.list-inline li {
    display: inline-block;
}

.media-icon li {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
}


.media-icon li a:hover {
    color: #fff;
    text-decoration: underline !important;
}

.footer-list i {
    margin-right: 8px;
}

.footer-list li {
    margin-bottom: 15px;
    text-transform: capitalize;
}

.footer-list li:last-child {
    margin-bottom: 0;
}

.footer-list li a {
    color: #ffffffdb;
    position: relative;
}

.footer-list li a:hover {
    color: #fff;
    padding-left: 8px;
}

.copyright-link ul li a:hover {
    color: #fff;
}

.social-icons.footer-social li a {
    background: none;
    border: 1px solid #fff;
    border-radius: 5px;
    color: #fff;
    height: 40px;
    width: 40px;
    line-height: 40px;
    font-size: 22px;
    display: inline-block;
    text-align: center;
    margin-right: 12px;
}

.social-icons.footer-social li a:hover {
    background: #000;
    color: #fff;
    border: 1px solid #000;
}

.main_card {
    background-color: #e2cfe389;
    padding: 30px;
    text-align: center;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
}

.main_card h2 {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 20px;
}

.main_card p {
    margin-top: 20px;
}

.main_card .main_card_image {
    height: 300px;
}

.main_card .main_card_image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center center;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.main_card .add_cart_btn {
    padding: 8px 30px;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
}

.btn:focus {
    box-shadow: none;
}

.tabs_wrapper .nav.nav-pills {
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
    overflow-y: auto;
    overscroll-behavior-x: contain;
    -ms-scroll-snap-type: x mandatory;
    scroll-snap-type: x mandatory;
}

.tabs_wrapper .nav.nav-pills::-webkit-scrollbar {
    width: 2px;
    height: 3px;
}

.tabs_wrapper .nav.nav-pills:hover ul::-webkit-scrollbar {
    width: 2px;
    height: 3px;
}

.tabs_wrapper .nav.nav-pills::-webkit-scrollbar-track {
    background: inherit;
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

.tabs_wrapper .nav.nav-pills::-webkit-scrollbar-thumb {
    background-color: #a9a9a9;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.tabs_wrapper .nav.nav-pills::-webkit-scrollbar-corner {
    background: inherit;
}

.tabs_wrapper .nav-link {
    color: #000;
    border: 1px solid #7f385e;
    font-size: 15px;
    margin: 0 5px 5px 5px;
    padding: 5px 20px;
    white-space: nowrap;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
}

.tabs_wrapper .nav-pills .nav-link.active,
.tabs_wrapper .nav-pills .show>.nav-link {
    color: #fff;
    background-color: #7f385e !important;
    /*border-bottom: 3px solid #7f385e;
    */
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
}

.icon-boxes.classic h3.name {
    /*color: #7f385e;
    font-weight: 600;
    font-size: 16px;
    border-bottom: 2px solid #7f385e;
    display: table;
    margin: auto;
    text-align: center;
    line-height: 30px;
    */
    color: #ffffff;
    font-size: 14px;
    position: absolute;
    display: table;
    margin: auto;
    text-align: center;
    bottom: -12px;
    background: #7f385e;
    line-height: 30px;
    padding: 0px 15px;
    left: 0;
    right: 0;
    border: 2px solid #fff;
    margin: auto;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
}

/* .icon-boxes.classic .img-holder {
    padding-top: 12px;
} */

.icon-boxes.classic .img-holder img {
    padding: 0 12px;
    height: 120px;
    width: 100%;
    object-fit: contain;
    margin-bottom: 15px;
}

.icons_boxes label {
    padding: 10px 14px;
    width: 100%;
    border-radius: 15px;
    min-height: 130px;
    background-color: #e2cfe389;
    /* box-shadow: 0 0 10px rgba(0, 0, 0, .2); */
    position: relative;
}

.icons_boxes.icon_card{
    margin-bottom: 10px;
}

.icons_boxes.icon_card label {
    padding: 0;
    width: 100%;
    border-radius: 15px;
    min-height: 130px;
    background-color: transparent;
    position: relative;
}

.icons_boxes.icon_card .img-holder img {
    padding: 0 0px;
    height: 200px;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 0px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.icons_boxes.icon_card h3.name {
    color: #ffffff;
    font-size: 14px;
    position: absolute;
    display: table;
    margin: auto;
    text-align: center;
    /* bottom: 0px; */
}
.icons_boxes.icon_card label{
    height: 200px;
}

#pills-Add-Ons .icons_boxes label {
    min-height: 250px !important;
}

.icons_boxes input[type=radio],
.icons_boxes input[type=checkbox] {
    position: absolute;
    top: 20px;
    opacity: 0;
}

.icons_boxes input[type=radio]:checked+label,
.icons_boxes input[type=checkbox]:checked+label {
    border: 1px solid #7f385e;
}

.icons_boxes input[type=radio]:checked+label::before,
.icons_boxes input[type=checkbox]:checked+label::before {
    content: "";
    height: 30px;
    width: 30px;
    background: #7f385e;
    border: 2px solid #fff;
    border-radius: 20px;
    font-family: "Font Awesome 5 pro";
    font-weight: 600;
    position: absolute;
    top: -10px;
    right: -15px;
}

.icons_boxes input[type=radio]:checked+label::after,
.icons_boxes input[type=checkbox]:checked+label::after {
    content: "\f00c";
    font-family: "Font Awesome 5 pro";
    font-weight: 500;
    position: absolute;
    top: -6px;
    font-size: 16px;
    color: #fff;
    right: -8px;
}



/* .icons_boxes input[type=radio]:checked+label h3 {
    color: #fff !important;
    font-weight: 600;
    font-size: 16px !important;
    border-bottom: 2px solid #fff;
} */

.cake_Title {
    background: #e2cfe389;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px;
    margin-bottom: 30px;
    margin-top: 20px;
    font-weight: 600;
    font-size: 20px;
    text-transform: capitalize;
    text-align: left;
}

.cake_Title img {
    width: 30px;
    margin-right: 10px;
}

.file_wrapper {
    border: 1px solid #e1e1e1;
    padding: 5px;
}



.detail-addtocart {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
}

.detail-addtocart .input-group .button-minus,
.detail-addtocart .input-group .button-plus {
    font-weight: bold;
    height: 35px;
    padding: 0;
    font-size: 16px;
    width: 35px;
    border-radius: 30px;
    position: relative;
    border: 1px solid #c6c6c6;
    background-color: transparent;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
}

.detail-addtocart .input-group .quantity-field {
    position: relative;
    height: 35px;
    text-align: center;
    width: 44px;
    display: inline-block;
    font-size: 18px;
    margin: 0 0 5px;
    resize: vertical;
    border: 1px solid #c6c6c6;
}

.detail-addtocart .number label+.input-group {
    width: auto;
    display: inline-flex !important;
    margin-left: 5px;
}


.add_to_cart {
    background: #7f385e;
    color: #fff;
    border-radius: 5px;
    padding: 5px 22px;
    transition: all 0.2s linear;
    font-size: 16px;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.add_to_cart i {
    font-size: 18px;
    transform: translateY(2px);
}

.add_to_cart:hover {
    background: #000;
    color: #fff;
}

.add_notes {
    background: #7f385e;
    color: #fff;
    width: 150px;
    cursor: pointer;
    text-align: center;
    border-radius: 5px;
    padding: 7px 22px;
    transition: all 0.2s linear;
    font-size: 16px;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.discription_sec h3 {
    font-size: 22px;
    margin-top: 20px;
}

.discription_sec ol {
    padding-left: 30px;
}

.discription_sec ol li {
    font-size: 16px;
    color: #303030;
    margin: 8px 0;
}

textarea {
    width: 100%;
    border: 1px solid #e1e1e1;
    outline: none;
    padding: 20px;
}

.discription_sec label {
    color: #303030;
    font-size: 15px;
    margin-top: 15px;
}

.Summary_sec .icons_boxes label {
    min-height: 190px;
}


.order-summary {
    background-color: #f2f2f2;
    padding: 20px 20px;
    border-radius: 10px;
    position: sticky;
    top: 80px;
}

.order-summary h5 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 30px;
}

.order-summary p {
    font-size: 15px;
    line-height: 1.3;
}

.order-summary h5 span {
    color: #FFAC0D;
}

.gst {
    padding-top: 15px;
    border-bottom: 1px dashed #e1e1e1;
}

.total {
    padding-top: 15px;
    border-bottom: 1px dashed #e1e1e1;
    background-color: #000;
}

.total p {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}

.order-summary p {
    margin-bottom: 10px;
}

.book-btn {
    background: #7f385e;
    padding: 12px 30px;
    text-align: center;
    border-radius: 50px;
    margin-top: 30px;
    color: #fff;
    font-weight: 500;
    font-size: 18px;
    display: block;
    width: 100%;
    text-decoration: none;
}

.book-btn:hover {
    color: #fff;
}

.table {
    background-color: #fff;
    padding: 5px;

}

.table td,
.table th {
    font-size: 14px;
}

.table>thead>tr>th {
    padding: 12px 8px;
}

@media screen and (min-width: 1920px) {

    section,
    .container-fluid,
    section.banner.width-100 {
        width: 1900px;
        margin-left: auto;
        margin-right: auto;
    }

    .fw-100 {
        width: 100% !important;
    }

    .all_product_slider {
        overflow: visible;
    }

    .single-category .image-wrapper {
        height: 250px;
        border-radius: 110px;
    }
}


@media screen and (max-width: 768px) {
    header img.logo.header {
        display: none;
    }

    .sec_title .fancy_text {
        font-size: 45px;
        font-weight: 600;
    }

    .sec_desc {
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        font-size: 16px;
    }

    .pb-80 {
        padding-bottom: 30px;
    }

    .sec_padding {
        padding: 30px 0;
    }

    .review .carousel-inner {
        background: #fff;
        padding: 50px 0px 40px 0px;
        border-radius: 30px;
        box-shadow: 0px 10px 35px -5px #00000012;
    }

    .review p.r_text {
        font-size: 16px;
        font-style: italic;
        font-weight: 300;
        width: 100%;
        margin: 0px 0 0px -24px;
    }

    .why-us .reason p {
        font-size: 16px;
    }
}