@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lobster&family=Lobster+Two:ital,wght@0,400;0,700;1,400;1,700&family=Outfit:wght@100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    list-style: none;
    /* background-color: #FBFFFA; */
}

:root {
    --primary-color: #1292D0;
    --secondary-color: #505050;
    --white-color: #fff;
    --black-color: #000;
    font-family: "Lobster Two";
}


h2 {
    font-family: "Lobster Two", sans-serif;
    font-size: 3rem;
    font-weight: bold;
}

.custom-container {
    padding-inline: 3rem;
}

.nav-link {
    font-family: "Outfit", sans-serif;
    font-weight: 500;
}

.main-hed h2 span {
    font-family: "Lobster Two", sans-serif;
    color: var(--primary-color);
    font-weight: bold;
}

.sub-hed {
    font-size: 1.125rem;
}

/* header section start=========================================== */

.main-menu::-webkit-scrollbar {
    width: 5px;
}

.main-menu::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.nav-menu-list li {
    margin: 0 15px;
}

.main-menu::-webkit-scrollbar-thumb {
    background: #83dee6;
}

.main-menu::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.nav-logo img {
    height: 65px;
}

.dropdown-menu.mega-menu {
    width: 100%;
    left: 0;
    right: 0;
    padding: 1rem;
    background-color: #f8f9fa;
    border: none;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.main-menu,
.submenu {
    display: none;
}

.menu-active {
    display: block;
}

.back-btn {
    display: block;
    margin-bottom: 1rem;
    color: var(--primary-color);
    text-decoration: none;
}

.page-links li a {
    color: var(--black-color);
}

.submenu ul li:hover {
    background-color: #dddddd82;
    cursor: pointer;
}

.submenu ul li:hover a {
    color: var(--primary-color);
}

.tab-link {
    cursor: pointer;
    margin-bottom: 5px;
}

.tab-link.menu-action a,
.tab-link.menu-action {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.submenu .tab-link.menu-action {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.main-menu .left-side-tabs li:not(.menu-action):hover {
    background: #dddddd82;
    transition: all 0.3s ease;
    cursor: pointer;
}

.main-menu {
    max-height: 375px;
    overflow: auto;
    min-height: 275px;
}

/* header section end=========================================== */




/* banner section start=============================================== */
.inner-banner-sec .carousel-img img {
    height: 90vh;
    object-fit: cover;
}

.inner-banner-sec .carousel-img {
    position: relative;
    overflow: hidden;
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}


.carousel-btn-prev .prev-btn,
.carousel-btn-next .next-btn {
    background-color: var(--white-color);
    border-radius: 50%;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary-color);
}


.carousel-control-next-icon {
    height: 20px;
    width: 20px;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231292D0'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.carousel-control-prev-icon {
    height: 20px;
    width: 20px;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231292D0'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
}


.banner-content {
    position: absolute;
    top: 50%;
    left: 10%;
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

/* .shop-btn {
    background-color: var(--white-color);
    border-radius: 50px;
    padding: 11px 30px;
    border: 0;
    color: #222222;
    font-family: "Outfit", sans-serif;
    font-weight: 600;
    font-size: 0.938rem;
}

.shop-btn:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
    transition: 0.5s;
} */

.shop-btn {
    background-color: var(--white-color);
    border-radius: 50px;
    padding: 11px 30px;
    border: 0;
    color: #222222;
    font-family: "Outfit", sans-serif;
    font-weight: 600;
    font-size: 0.938rem;
    text-align: center;
    /* Center text within the button */
    display: inline-block;
    /* Ensure it behaves like a button */
    text-decoration: none;
    /* Remove underline from anchor */
    transition: background-color 0.5s, color 0.5s;
    /* Smooth transition for both properties */
}

.shop-btn:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
    cursor: pointer;
    /* Change cursor to pointer on hover */
}

.banner-content h1 {
    font-family: 'Libre Baskerville';
    font-size: 5rem;
}

.banner-content p {
    font-family: "Outfit", sans-serif;
    font-size: 1.125rem;
    line-height: 30px;
    color: #e9d8d8;
    letter-spacing: 2px;
}


/* banner section end=============================================== */



/* quality section start====================================== */

.main-quality-sec {
    background-color: #e7fffc;
    position: relative;
}

.main-quality-sec::after {
    content: '';
    background: url(/images/wave2.png) repeat-x center center;
    height: 10px;
    position: absolute;
    bottom: -10px;
    left: 0;
    right: 0;
}




.quality-content h6 {
    font-family: "Outfit", sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

/* quality section end====================================== */


/* kind of cake section start=============================================  */
.main-cake-desc {
    margin: 70px 0;
}



.inner-policy-sec h2 span,
.main-cake-flavor-sec h2 span,
.inner-contact-sec h2 span,
.main-faq-sec h2 span,
.testimonail-sec h2 span,
.main-delicious-sec h2 span,
.main-category-sec h2 span,
.cake-desc h2 span {
    font-family: "Lobster Two", sans-serif;
    color: var(--primary-color);
    font-weight: bold;
}

.dark-shop-btn {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.dark-shop-btn:hover {
    background-color: #11a7f1;
}

/* kind of cake section end=============================================  */

/* Shop By Categories section start====================================================  */
.main-category-sec {
    margin: 70px 0;
}



.category-cards {
    border-radius: 8px;
    padding: 100px 30px 30px 30px;
    position: relative;
    margin-top: 70px;
}

.category-cards h3 {
    font-family: "Lobster Two", sans-serif;
    color: var(--white-color);
    font-weight: 700;
}

.category-cards p {
    color: var(--white-color);
}

.category-card-icon {
    position: absolute;
    left: 50%;
    top: 0%;
    transform: translate(-50%, -50%);
    border: 2px solid var(--white-color);
    border-radius: 50%;
    height: 135px;
    width: 135px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon1,
.category-card1 {
    background-color: #73C8BD;
}



.card-icon2,
.category-card2 {
    background-color: #A8A3D8;
}

.card-icon3,
.category-card3 {
    background-color: #EAC76F;
}

.card-icon4,
.category-card4 {
    background-color: #D9A3D0;
}

/* Shop By Categories section end====================================================  */


/* Delicious Products section start================================================= */
.main-delicious-sec {
    background: rgba(18, 146, 208, 0.20);
    position: relative;
    margin: 70px 0;
}


.product-tab li {
    background-color: var(--white-color);
    border-radius: 50px;
}

.product-tab li button {
    padding: 10px 20px;
    color: var(--black-color);
}

.product-tab li button.active {
    background-color: var(--primary-color) !important;
}

.product-tab li button:hover {
    color: unset;
}

.main-product-card {
    border-radius: 8px;
    background-color: var(--white-color);
    box-shadow: 0px 0px 40px 0px rgba(0, 135, 205, 0.25);
    min-height: 540px;
}

.main-product-card .cake-category-sec {
    height: 327px;
    width: 100%;
    background-color: #FFF5EB;
    border-bottom-left-radius: 28px;
    border-bottom-right-radius: 28px;
    border-top-right-radius: 8px;
    border-top-left-radius: 8px;
    box-shadow: 0px 1px 86.9px 0px #D0E9F6;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-product-card .cake-category-sec img {
    height: 200px;
    object-fit: contain;
}

.main-product-card .about-cake {
    padding: 20px;
    text-align: center;
}

.main-product-card .about-cake p {
    font-family: "Outfit", sans-serif;
}

.main-product-card .about-cake h6 span {
    font-size: 1.625rem;
    color: var(--primary-color);
    font-family: "Outfit", sans-serif;
    font-weight: 600;
}

.main-product-card .about-cake h6 span:nth-child(1) {
    font-size: 1.125rem;
    color: #FF5D5D;
    font-family: "Outfit", sans-serif;
}

.cake-rating i {
    color: #FFAB00;
}


/* Delicious Products section end================================================= */


/* offer section start=================================================  */
.main-offer-sec {
    margin: 70px 0;
}


.about-product {
    padding: 50px;
    border-radius: 8px;
    /* background: radial-gradient(46.3% 62.88% at 71.81% 45.09%, #81E8A8 0%, #67B992 100%); */
}


.offer-details p,
.offer-details h4 {
    font-family: "Outfit", sans-serif;
}


.discount-card {
    background: radial-gradient(46.3% 62.88% at 71.81% 45.09%, #FDD8AA 0%, #FF7B00 100%);
}


.main-delicious-sec::after,
.main-delicious-sec::before {
    content: '';
    background: url(/images/wave.png) repeat-x center center;
    height: 10px;
    position: absolute;
    bottom: -10px;
    left: 0;
    right: 0;
}

.main-delicious-sec::before {
    top: -10px;
    bottom: inherit;
    transform: rotateX(180deg);
}

/* offer section end=================================================  */



/* testimonail section start================================================= */

.main-testimonial-sec {
    background-image: url(/images/testimonial_bg.png);
    width: 100%;
    /* height: 670px; */
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.main-testimonial-sec::after {
    content: '';
    position: absolute;
    left: -50px;
    bottom: 0;
    background-image: url(/images/cake_icon.png);
    height: 212px;
    width: 182px;
    background-repeat: no-repeat;
}


/* .user-detail img {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    border-color: var(--primary-color);
} */

.user-detail img {
    height: 50px !important;
    width: 50px !important;
    object-fit: cover;
    border-radius: 50%;
    border-color: var(--primary-color);
}

.testimonail-quate {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-inner .carousel-item p {
    font-family: "Outfit", sans-serif;
}



/* testimonail section end================================================= */



/* Flavor section start============================================================ */

.main-flavor-sec {
    margin: 70px 0;
}

.flavor-img {
    position: relative;
}

.flavor-img img:nth-child(2) {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.flavor-left-content,
.flavor-right-content {
    min-height: 477px;
}


.flavor-right-content h6,
.flavor-left-content h6 {
    color: var(--primary-color);
    font-family: "Outfit", sans-serif;
    font-weight: bold;
    font-size: 1.5rem;
}

/* Flavor section end============================================================ */



/* sweet cup cake section start====================================== */

.main-cupcake-sec {
    background-image: url('/images/cupcake-bg.png');
    height: 680px;
    background-repeat: no-repeat;
    background-position: center;
    margin: 70px 0;
}

.inner-cupcake-sec {
    max-width: 635px;
}

.inner-cupcake-sec h2 {
    font-family: "Outfit", sans-serif;
    color: var(--white-color);
    font-size: 4.375rem;
}

/* sweet cup cake section end====================================== */


/* newsletter section start=====================================  */

.main-newsletter-sec {
    margin: 70px 0;
}

.subscribe-input {
    width: 700px;
    position: relative;
    margin: 0 auto;
}

.subscribe-input input {
    border-radius: 50px;
    border: 1px solid #1292D0;
    padding: 25px 0 25px 40px;
    width: 700px;

}

.subscribe-input input:focus {
    outline: none;
}

.subscribe-input button {
    position: absolute;
    right: 10px;
    top: 10px;
    padding-top: 15px;
    padding-bottom: 15px;
}


/* newsletter section start=====================================  */



/* footer section start==========================================  */

.main-footer-sec {
    background-color: #D0E9F6;
}

.main-footer-sec .bottom-footer {
    background-color: var(--white-color);
}

.main-footer-sec .bottom-footer p {
    font-family: "Outfit", sans-serif;
    font-weight: 600;
}




.footer-items h6 {
    font-size: 18px;
    font-family: "Outfit", sans-serif;
    font-weight: 500;
}

.footer-items ul li a {
    color: var(--black-color);
    font-family: "Outfit", sans-serif;

}

.footer-logo img {
    height: 135px;
}

.footer-social-icons {
    margin-left: 140px;
    margin-top: -40px;
}

/* footer section end==========================================  */





/* FAQ Page start=================================================== */

.main-faq-sec {
    margin: 70px 0;
}

.inner-accordion-sec .accordion-item {
    border: 0;
}

.inner-accordion-sec .accordion-item {
    border-bottom: 1px solid #e5e5e5;
}

.inner-accordion-sec .accordion-item button[aria-expanded='true'] {
    border-bottom: 1px solid #1292D0;
}

.inner-accordion-sec button {
    position: relative;
    display: block;
    text-align: left;
    width: 100%;
    padding: 1em 0;
    color: #7288a2;
    font-size: 1.15rem;
    font-weight: 400;
    border: none;
    background: none;
    outline: none;
}

.inner-accordion-sec button:hover,
.inner-accordion-sec button:focus {
    cursor: pointer;
    color: #1292D0;
}

.inner-accordion-sec button:hover::after,
.inner-accordion-sec button:focus::after {
    cursor: pointer;
    color: #1292D0;
    border: 1px solid #1292D0;
}

.inner-accordion-sec button .accordion-title {
    padding: 1em 1.5em 1em 0;
}

.inner-accordion-sec button .icon {
    display: inline-block;
    position: absolute;
    top: 18px;
    right: 0;
    width: 22px;
    height: 22px;
    border: 1px solid;
    border-radius: 22px;
}

.inner-accordion-sec button .icon::before {
    display: block;
    position: absolute;
    content: '';
    top: 9px;
    left: 5px;
    width: 10px;
    height: 2px;
    background: currentColor;
}

.inner-accordion-sec button .icon::after {
    display: block;
    position: absolute;
    content: '';
    top: 5px;
    left: 9px;
    width: 2px;
    height: 10px;
    background: currentColor;
}

.inner-accordion-sec button[aria-expanded='true'] {
    color: #1292D0;
}

.inner-accordion-sec button[aria-expanded='true'] .icon::after {
    width: 0;
}

.inner-accordion-sec button[aria-expanded='true']+.accordion-content {
    opacity: 1;
    max-height: 9em;
    transition: all 200ms linear;
    will-change: opacity, max-height;
}

.inner-accordion-sec .accordion-content {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 200ms linear, max-height 200ms linear;
    will-change: opacity, max-height;
}

.inner-accordion-sec .accordion-content p {
    font-size: 1rem;
    font-weight: 300;
    margin: 2rem 0;
}





.main-hero-sec {
    position: relative;
    min-height: 396px;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(/images/faq-hero-sec.jpg);
    background-position: center;
    background-size: cover;
}

.content-hero-sec {
    width: 870px;
    margin: auto;
    text-align: center;
    height: 100%;
}

.content-hero-sec p {
    font-size: 1.37rem;
}

.main-hero-sec .inner-hero-sec {
    display: flex;
    min-height: 396px;
}




/* FAQ Page end=================================================== */




/* contact us page start============================================== */

.main-contact-sec {
    position: relative;
    margin: 70px 0;
}

.contact-details h6 {
    font-size: 20px;
    font-family: "Outfit", sans-serif;
    font-weight: 600;
}

.contact-header {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(/images/contactUs.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

.inner-map-sec {
    margin: 70px 0;
    height: 500px;
}

.inner-contact-sec::after {
    content: '';
    background: url(/images/cake_icon1.png) repeat-x center center;
    position: absolute;
    bottom: -10px;
    top: 0;
    right: 0;
    width: 120px;
    height: 210px;
    background-repeat: no-repeat;
}



/* form---------- */
.main-contact-form {
    background-color: #FBFFFA;
    padding: 70px 0;
    position: relative;
}

.inner-contact-form::after {
    content: '';
    background: url(/images/form-icon.png) repeat-x center center;
    position: absolute;
    bottom: -10px;
    top: 0;
    right: 0;
    width: 393px;
    height: 304px;
    background-repeat: no-repeat;
}

.inner-contact-form {
    width: 870px;
    border-radius: 10px;
    border: 3px solid #D9F3FF;
    background: var(--white-color);
    box-shadow: 0px 0px 84px 0px rgba(217, 243, 255, 0.25);
}

.inner-contact-form h2 {
    color: var(--primary-color);
    font-size: 2.25rem;
}

.inner-contact-form p {
    font-size: 1.125rem;
    font-family: "Outfit", sans-serif;
    color: #898989;
}

.textarea-border,
.input-border {
    border-top: 0;
    border-left: 0;
    border-right: 0;
    border-radius: 0;
}

.textarea-border:focus,
.input-border:focus {
    box-shadow: none;
}

.textarea-border {
    max-height: 200px;
    overflow-y: auto;
}

/* contact us page start============================================== */



/* cake catalog section start================================================= */

.main-catalog-sec {
    position: relative;
    max-width: 97%;
    /* Adjust this value based on your layout */
    margin: 0 auto;
    /* Center the section */
}

.main-catalog-sec::after {
    content: '';
    background: url(/images/cake_icon1.png) repeat-x center center;
    position: absolute;
    bottom: -10px;
    top: 0;
    right: 0;
    width: 120px;
    height: 210px;
    background-repeat: no-repeat;
}

.cake-catalog {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(/images/cake-catalog.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

.wedding-cake-catalog {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(/images/wedding_1159.JPG);
    background-repeat: no-repeat;
    background-size: cover;
    background-position-y: -640px;
    min-height: 460px;
}



/* .catalog-items {
    border-radius: 8px;
    height: 375px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    cursor: pointer;
    position: relative;

}

.catalog-items img {
    transition: all 0.5s ease-in-out;
}

.catalog-items:hover img {
    transform: scale(1.1);
}

.catalog-items:hover .catalog-overlay {
    background: rgba(0, 0, 0, 0.50);
}


.catalog-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.25);
    transition: 0.5s;
}


.catalog-items p {
    position: absolute;
    bottom: 0;
    color: var(--white-color);
    font-family: "Outfit", sans-serif;
    font-size: 2rem;
} */



.catalog-items {
    border-radius: 8px;
    height: 375px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

.catalog-items img {
    transition: all 0.5s ease-in-out;
    object-fit: contain;
    /* Scale the image to fit within its parent while maintaining the aspect ratio */
    max-height: 100%;
    /* Ensure the image doesn't exceed the height of its parent */
    width: 100%;
    /* Automatically set the width based on the aspect ratio */
}

.catalog-items:hover img {
    transform: scale(1.1);
}

.catalog-items:hover .catalog-overlay {
    background: rgba(0, 0, 0, 0.50);
}

.catalog-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.25);
    transition: 0.5s;
}

.catalog-items p {
    position: absolute;
    bottom: 0;
    color: var(--white-color);
    font-family: "Outfit", sans-serif;
    font-size: 2rem;
}






.pagination {
    border: 1px solid var(--primary-color);
    width: 640px;
    border-radius: 50px;
    min-height: 60px;
    justify-content: space-between;
}

.active-page {
    padding: 4px 6px;
    min-width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: var(--white-color);
    border-radius: 50%;
    border: 4px solid #c9c6ff
}

.pagination a {
    color: var(--black-color);
}

.pagination a:hover {
    color: var(--primary-color);
}

.search-input {
    width: 433px;
}

.search-input input {
    width: 433px;
    padding: 15px 0 15px 40px;
}

.main-search-input p {
    font-size: 1.375rem;
    font-weight: 600;
}

.search-input button {
    top: 7px;
    padding-top: 10px;
    padding-bottom: 10px;
}

/* cake catalog section end================================================= */



/* Cake Flavor section start=============================================================== */

.main-cake-flavor-sec {
    background-image: url(/images/flavor_bg.png);
    /* background-size: cover; */
    background-position: center;
}

.flavor-list h4 {
    font-family: "Lobster Two", sans-serif;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}


.select-cake-type {
    width: 300px;
}

.flavor-cake-img {
    /* padding: 40px 0; */
    padding: 5px;
    box-shadow: 0 4px 8px rgba(18, 146, 208, 0.5);
    /* Shadow effect */
}

.inner-cake-flavor-sec {
    padding: 70px 0;
}

.cake-sizes-sec {
    padding: 0px 0px 70px 0px;
}

.flavor-list ul li {
    line-height: 30px;
}

.flavor-list .flavor-name-list li::before {
    /* content: '◙'; */
    /* content: '■'; */
    /* content: '➢'; */
    /* content: '✦'; */
    content: '✶';
    /* content: '🧁'; */
    /* content: '🧁'; */
    margin-right: 10px;
    color: var(--primary-color);
}

/* .cake-sizes{
    font-weight: 500;
} */

.cake-sizes li::before {
    content: "--------";
    margin-right: 10px;
}

.cake-sizes-serves {
    border: 1px solid #2196f333;
}

.cake-sizes-serves td,
.cake-sizes-serves th {
    background-color: transparent;
}

/* Cake Flavor section end=============================================================== */



.inner-policy-sec {
    margin: 70px 0;
}

.return-policy-content h5 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-family: "Outfit", sans-serif;
}

.return-policy-content p {
    font-family: "Outfit", sans-serif;
}



/* login page start======================================= */
.main-login-sec {
    height: 100vh;
    align-items: center;
    position: relative;
}


.main-login-sec::before {
    content: '';
    position: absolute;
    left: -40px;
    bottom: 0;
    background-image: url(/images/cake_icon.png);
    height: 212px;
    width: 182px;
    background-repeat: no-repeat;
}



.login-leftsection {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logIn-btn {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.logIn-btn:hover {
    background-color: #11a7f1;
    color: var(--white-color);
}

.login-rightsection {
    position: relative;
    overflow: hidden;
}

.login-rightsection img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.login-leftsection>div {
    width: 650px;
}

.register-link {
    color: var(--primary-color);
    text-decoration: none;
    margin-left: 4px;
}

.form-input {
    padding: 12px 16px;
    background: transparent;
    border: 1px solid #e3e3e3;
    border-radius: 4px;
    display: flex;
    color: var(--textgrey-color);
    font-weight: bold;
}

.form-input input {
    border: none;
    margin-left: 12px;
    background-color: transparent;
    width: 100%;
    outline: none;
}

.forgot-password {
    color: var(--primary-color);
}

.login-leftsection>div>*,
.login-form>* {
    margin-bottom: 32px;
}

.login-form a.btn-primary {
    font-size: 20px;
    padding: 12px;
}

.bg-image img {
    max-width: 370px;
}


.logIn-content {
    text-align: center;
    color: var(--white-color);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.logIn-content h3 {
    font-size: 4rem;
    color: var(--white-color);
}

/* login page end======================================= */

.custome_alert {
    position: absolute;
    z-index: 2;
    right: 10px;

}

.error_msg {
    color: #e13737;
    font-weight: 400;
    font-size: 14px;
}

/* Announcement */

/* *{
    margin:0;
    padding:0;
    box-sizing: border-box;
}
.announcement-banner-box-bg{
    padding: 40px;
    background-size: cover;
    background-position: top left;
}
.announcement-banner-content {
    position: relative;
    z-index: 1;
    display: flex;
    max-width: 1600px;
    margin: 0 auto;
    justify-content: space-between;
    padding: 0px 40px;
    align-items: center;
    border: 10px solid rgb(255 255 255 / 20%);
    width: 100%;
}
.owl-carousel .owl-item .announcement-banner-content img.announcement-banner-under-img{
    width: 300px;
}
.announcement-banner-content .left-content-announcement {
    width: calc(100% - 450px);
}
div#announcement-slider .item {
    position: relative;
}
div#announcement-slider .item img.banner-position-img {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    object-fit: cover;
    background-position: center;
}

.announcement-banner-content .left-content-announcement span {
    font-family: "Lobster", sans-serif;
    font-size: 24px;
    font-weight: 300;
    line-height: 140%;
    color: #F0F0F0;
    letter-spacing: 3px;
}
.announcement-banner-content .left-content-announcement h4{
    font-family: "Lobster", sans-serif;
    font-size: 36px;
    font-weight: 300;
    line-height: 140%;
    color: #D1FFD3;
    letter-spacing: 4px;
}

.announcement-banner-content .left-content-announcement span h4 {
    display: inline;
}


#announcement-slider .owl-nav button {
    position: absolute;
    top: calc(50% - 30px);
    width: 40px;
    height: 40px;
    background: rgb(255,255,255,0.8);
    border-radius: 50%;
    font-size: 30px;
    line-height: unset;
    display: flex;
    align-items: center;
    justify-content: center;
}
#announcement-slider .owl-nav button.owl-prev {
    left: 20px;
}
#announcement-slider .owl-nav button.owl-next {
    right: 20px;
}
#announcement-slider .owl-nav button.disabled {
    opacity: 0.2;
}
#announcement-slider .owl-nav button:hover {
    color: black;
    background:#fff;
}
@media(max-width:1023px){
    .announcement-banner-content{
        flex-direction:column-reverse;
        padding: 40px;
    }
    .announcement-banner-content .left-content-announcement{
        width: 100%;
    }
}
@media(max-width:767px){
    .announcement-banner-content .left-content-announcement span {
        font-size: 16px;
    }
    .announcement-banner-content .left-content-announcement h4 {
        font-size: 18px;
        margin-bottom: 10px;
    }
    .announcement-banner-content .left-content-announcement {
        padding-top: 10px;
    }
    .announcement-banner-content {
        padding: 20px;
        width: calc(100% - 50px);
    }
    .announcement-banner-box-bg {
        padding: 20px;
    }
} */




* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.announcement-banner-box-bg {
    padding: 40px;
    background-size: cover;
    background-position: top left;
}

.announcement-banner-content {
    position: relative;
    z-index: 1;
    display: flex;
    max-width: 1600px;
    margin: 0 auto;
    justify-content: space-between;
    padding: 0px 40px;
    align-items: center;
    border: 10px solid rgb(255 255 255 / 20%);
    width: 100%;
}

.owl-carousel .owl-item .announcement-banner-content img.announcement-banner-under-img {
    width: 300px;
    /* Keep the width as is */
    height: 300px;
    /* Set a fixed height */
    object-fit: contain;
    /* Ensure the entire image is visible */
}

.announcement-banner-content .left-content-announcement {
    width: calc(100% - 450px);
}

div#announcement-slider .item {
    position: relative;
}

div#announcement-slider .item img.banner-position-img {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    object-fit: cover;
    background-position: center;
}

.announcement-banner-content .left-content-announcement span {
    font-family: "Lobster", sans-serif;
    font-size: 24px;
    font-weight: 300;
    line-height: 140%;
    color: #F0F0F0;
    letter-spacing: 3px;
}

.announcement-banner-content .left-content-announcement h4 {
    font-family: "Lobster", sans-serif;
    font-size: 36px;
    font-weight: 300;
    line-height: 140%;
    color: #D1FFD3;
    letter-spacing: 4px;
}

.announcement-banner-content .left-content-announcement span h4 {
    display: inline;
}

/* Slider Navigator Button */
#announcement-slider .owl-nav button {
    position: absolute;
    top: calc(50% - 30px);
    width: 40px;
    height: 40px;
    background: rgb(255, 255, 255, 0.8);
    border-radius: 50%;
    font-size: 30px;
    line-height: unset;
    display: flex;
    align-items: center;
    justify-content: center;
}

#announcement-slider .owl-nav button.owl-prev {
    left: 20px;
}

#announcement-slider .owl-nav button.owl-next {
    right: 20px;
}

#announcement-slider .owl-nav button.disabled {
    opacity: 0.2;
}

#announcement-slider .owl-nav button:hover {
    color: black;
    background: #fff;
}

@media(max-width: 1023px) {
    .announcement-banner-content {
        flex-direction: column-reverse;
        padding: 40px;
    }

    .announcement-banner-content .left-content-announcement {
        width: 100%;
    }
}

@media(max-width: 767px) {
    .announcement-banner-content .left-content-announcement span {
        font-size: 16px;
    }

    .announcement-banner-content .left-content-announcement h4 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .announcement-banner-content .left-content-announcement {
        padding-top: 10px;
    }

    .announcement-banner-content {
        padding: 20px;
        width: calc(100% - 50px);
    }

    .announcement-banner-box-bg {
        padding: 20px;
    }
}








table {
    border-collapse: collapse;
    width: 100%;
}

th,
td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left;
}

th {
    background-color: #e7fffc;
    color: #1292d0;
}

.carousel-item img {
    width: 100%;
    /* or a fixed width like 300px */
    height: 80vh;
    /* set a fixed height */
    object-fit: contain;
    /* ensures the entire image is visible */
}

.cstmHeightFix {
    height: 350px;
    object-fit: contain;
    width: auto;
}

/* 26 May */

.categoriesCard .category-cards {
    min-height: calc(100% - 60px);
}

.innerQuality-container .quality-column {
    border-right: 1px solid gainsboro;
    padding-right: 24px;
}

.innerQuality-container {
    max-width: 1885px !important;
}

.main-offer-sec .offer_img img {
    max-width: 90%;
}

.inner-cupcake-sec p.description {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
}

.main-offer-sec .about-product {
    /* background: (radial-gradient(46.3% 62.88% at 71.81% 45.09%, #81E8A8 0%, #67B992 100%), url(../../../images/bg-pattern.png)); */
    background-image: radial-gradient(46.3% 62.88% at 71.81% 45.09%, #81e8a8b0 0%, #67b992db 100%), url(../../../images/bg-pattern.png);
    background-repeat: no-repeat;
    background-size: cover;
}
.singleColumn .about-product .offer-details{
    padding-left: 7rem;
}
.singleColumn .about-product .offer-details h2{
    font-size: 70px;
}
.singleColumn .about-product .offer_img{
    max-width: 60%;
}
.aboutProduct-banner .offer_img{
    max-width: 85%;
}
.aboutProduct-banner.discount-card {
    /* background: radial-gradient(46.3% 62.88% at 71.81% 45.09%, #FDD8AA 0%, #FF7B00 100%); */
    background-image: radial-gradient(46.3% 62.88% at 71.81% 45.09%, #fdd8aa82 0%, #f98c26d1 100%), url(../../../images/bg-pattern.png);
}
.about-cake .cardTitle{
    font-weight:600;
    color: #032a3d;
    margin-bottom: 12px;
}


.read-more {
    color: blue;
    cursor: pointer;
    margin-left: 5px;
}
.short-description {
    display: inline;
}

/*23/06/2025*/
.wedcatalog-corner-img img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 50%;
}
.wedcatalog-corner-img img:first-child {
    position: absolute;
    left: -20px;
    top: 0px;
    opacity: 0.8;
}
.wedcatalog-corner-img img:last-child {
    position: absolute;
    right: -20px;
    bottom: 10px;
    opacity: 0.8;
}
.dropdown .catalog-dropdown{
       left: unset;
    right: unset;
    width: fit-content;
    top: auto;
    box-shadow: none;
    background-color: #ffffff;
}

.wedding_dropdown{
    min-height: auto;
}

.wedding_dropdown ul li{
    margin: 0;
}