/* style.css */
:root {
    --white: #FFFFFF;
    --primary: #55083B;
    --gold: #A4783D;
    --light: #FFEDE1;
    --dark: #634618;
    --cream: #F7EBDE;
    --soft: #FDEDDA;
    --black: #000000;
    --brown: #947E5B;
    --light2: #FFEFE2;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'Recoleta';
    src: url('../fonts/Recoleta/Recoleta-Medium.eot');
    src: url('../fonts/Recoleta/Recoleta-Medium.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Recoleta/Recoleta-Medium.woff2') format('woff2'),
        url('../fonts/Recoleta/Recoleta-Medium.woff') format('woff'),
        url('../fonts/Recoleta/Recoleta-Medium.ttf') format('truetype'),
        url('../fonts/Recoleta/Recoleta-Medium.svg#Recoleta-Medium') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Recoleta';
    src: url('../fonts/Recoleta/Recoleta-Regular.eot');
    src: url('../fonts/Recoleta/Recoleta-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Recoleta/Recoleta-Regular.woff2') format('woff2'),
        url('../fonts/Recoleta/Recoleta-Regular.woff') format('woff'),
        url('../fonts/Recoleta/Recoleta-Regular.ttf') format('truetype'),
        url('../fonts/Recoleta/Recoleta-Regular.svg#Recoleta-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'DM Sans';
    src: url('../fonts/DM_Sans/DMSans-Medium.eot');
    src: url('../fonts/DM_Sans/DMSans-Medium.eot?#iefix') format('embedded-opentype'),
        url('../fonts/DM_Sans/DMSans-Medium.woff2') format('woff2'),
        url('../fonts/DM_Sans/DMSans-Medium.woff') format('woff'),
        url('../fonts/DM_Sans/DMSans-Medium.ttf') format('truetype'),
        url('../fonts/DM_Sans/DMSans-Medium.svg#DMSans-Medium') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'DM Sans';
    src: url('../fonts/DM_Sans/DMSans-Regular.eot');
    src: url('../fonts/DM_Sans/DMSans-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/DM_Sans/DMSans-Regular.woff2') format('woff2'),
        url('../fonts/DM_Sans/DMSans-Regular.woff') format('woff'),
        url('../fonts/DM_Sans/DMSans-Regular.ttf') format('truetype'),
        url('../fonts/DM_Sans/DMSans-Regular.svg#DMSans-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: 'DM Sans', sans-serif;
    font-size: 20px;
    background: var(--white);
    color: var(--dark);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Recoleta', sans-serif;
}



h1 {
    font-size: 80px;
    line-height: 1.1em;
}

h2 {
    font-size: 56px;
    line-height: 1.2em;
}

h3 {
    font-size: 28px;
    line-height: 1.2em;
}

h4 {
    font-size: 24px;
    line-height: 1.2em;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}




/* TOPBAR */

.topbar {
    background: var(--primary);
    color: var(--white);
    padding: 16px 0;
}

.topbar .top-left {
    font-size: 16px;
    line-height: 24px;
    font-family: 'Recoleta', sans-serif;
    font-weight: normal;
}

.top-header-list li a {
    font-size: 16px !important;
    font-weight: 400 !important;
    display: flex;
    align-items: center;
    gap: 8px !important;
}


.top-header-list {
    gap: 0px !important;
}

.top-header-list li:after {
    content: '';
    width: 1px;
    height: 100%;
    background: #fff;
    display: block;
    position: absolute;
    top: 0;
    right: 0;
}

.top-header-list li {
    position: relative;
    padding: 0px 25px;
}

.top-header-list li:first-child {
    padding-left: 0;
}

.top-header-list li:last-child {
    padding-right: 0;
}

.top-header-list li:last-child:after {
    display: none;
}

.top-header-list li span img {
    width: 18px;
    height: 18px;
}


/* NAVBAR */

.main-navbar {
    background: var(--white);
    padding: 22px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.main-navbar .navbar-brand {
    color: var(--primary);
    font-size: 28px;
}

.main-navbar .navbar-brand i {
    color: var(--gold);
}


.main-navbar .navbar-nav .nav-link {
    font-family: 'Recoleta', sans-serif;
    font-size: 18px;
    color: var(--dark);
    padding: 0;
    margin: 0 20px;
    text-transform: capitalize;
}

.main-navbar .navbar-nav .nav-item:first-child .nav-link {
    margin-left: 0;
}

.main-navbar .navbar-nav .nav-item:last-child .nav-link {
    margin-right: 0;
}

.main-navbar .nav-link:hover,
.main-navbar .nav-link.active {
    color: var(--primary);
}

.main-navbar .nav-icons {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 0px 40px;
    list-style: none;
    padding: 0;
}

.main-navbar .nav-icons > li {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
}

.main-navbar .nav-icons-items {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    line-height: 0;
    position: relative;
    flex-shrink: 0;
}

.main-navbar .nav-icons-items img {
    display: block;
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.main-navbar .nav-icons i {
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
}

.wk-header-cart-count {
    position: absolute;
    top: -7px;
    right: -9px;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    border-radius: 999px;
    background: var(--primary, #55083b);
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 10px;
    font-weight: 700;
    line-height: 16px;
    text-align: center;
    pointer-events: none;
}

.wk-header-cart-count:empty {
    display: none;
}

/* BUTTON */

.theme-btn {
    font-family: 'Recoleta', sans-serif;
    font-size: 18px;
    line-height: 1.1em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--white);
    padding: 14px 24px;
    border-radius: 4px;
    transition: 0.3s;
    border: 1px solid transparent;
}

.theme-btn:hover {
    background: var(--gold);
    color: var(--white);
}

.outline-btn {
    background: transparent;
    border: 1px solid var(--white);
}

.light-btn {
    background-color: var(--white);
    color: var(--primary);
    padding: 12px 24px;
    border-radius: 4px;
    display: inline-block;
    font-family: 'Recoleta', sans-serif;
    transition: 0.3s;
    font-weight: 500;
}

.light-btn:hover {
    background-color: var(--gold);
    color: var(--white);
}

.tranparent-btn {
    background-color: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
}

.tranparent-btn:hover {
    background-color: var(--gold);
    color: var(--white);
    border: 1px solid var(--gold);
}


.header-contact-btn {
    font-size: 16px;
    padding: 10px 24px;
}

/* HERO */

.hero-section {
    background-image: url(../images/banner.png);
    background-size: cover;
    background-position: bottom center;
    background-repeat: no-repeat;
    padding: 185px 0 235px;
}

.hero-content h1 {
    color: var(--primary);
    margin-bottom: 24px;
}

.hero-content p {
    font-size: 20px;
    line-height: 1.65em;
    margin-bottom: 48px;
    max-width: 468px;
    color: #634618;
}

.placeholder-box {
    width: 100%;
    height: 420px;
    background: var(--light2);
    border: 2px dashed var(--brown);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-box i {
    font-size: 80px;
    color: var(--brown);
}

.hero-content {
    position: relative;
    max-width: 580px;
}

.ichha-logo {
    position: absolute;
    right: 0;
}


/* INNER HERO */

.inner-hero-section {
    background-image: url(../images/about-banner.png);
    background-size: cover;
    background-position: bottom center;
    background-repeat: no-repeat;
    padding: 90px 0;
}
.inner-hero-section .custom-col {
    max-width: 756px;
}
.inner-hero-content h1 {
    color: var(--primary);
    margin-bottom: 24px;
}

.inner-hero-content p {
    line-height: 1.65em;
    margin-bottom: 48px;
    max-width: 468px;
    color: #634618;
}

.inner-hero-content .sub-heading {
    color: #55083B;
    display: inline-flex;
    margin-bottom: 24px;
    font-size: 14px;
    line-height: 1.65em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.4px;
    align-items: center;
    gap: 12px;
}

.inner-hero-content .sub-heading:before {
    content: '';
    width: 62px;
    height: 1px;
    background: #F79E1B;
    display: inline-block;
}

.inner-button-wrapper {
    display: flex;
    gap: 24px;
}

/*ABOUT US*/
.about-us-section {
    padding: 96px 0 80px 0;
    background-color: var(--white);
}

.about-us-section .row {
    align-items: stretch !important;
}

.about-image-wrapper {
    background-image: url(../images/about-img.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    min-height: 100%;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.about-img-border {
    width: calc(100% - 48px);
    height: calc(100% - 48px);
    border: 4px solid #F7EBDE;
    border-radius: 8px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.about-img-border:before {
    content: '';
    width: 154px;
    height: 154px;
    background-image: url(../images/border-design-img1.svg);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    position: absolute;
    bottom: 5px;
    left: 5px;
}

.about-img-border:after {
    content: '';
    width: 154px;
    height: 154px;
    background-image: url(../images/border-design-img2.svg);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    position: absolute;
    top: 5px;
    right: 5px;
}

.about-content-wrap {
    padding-left: 130px;
}


.about-section-heading {
    color: var(--primary);
    margin-bottom: 24px;
    max-width: 565px;
}

.about-description p {
    line-height: 1.65em;
    color: var(--dark);
    margin-bottom: 20px;
}

.about-description p:last-child {
    margin-bottom: 0;
}

.about-features-grid {
    padding-top: 56px;
    display: flex;
    justify-content: space-between;
}

.about-feature-col {
    position: relative;
    text-align: center;
}

.about-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.about-feature-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-feature-icon img {
    max-width: 100%;
    max-height: 100%;
}

.about-feature-title {
    font-family: "DM Sans", sans-serif;
    font-size: 18px;
    line-height: 1.4em;
    color: var(--dark);
    margin: 0;
    font-weight: 500;
    max-width: 160px;
    margin: 0 auto;
}

.btn-wrapper.bottom {
    display: none;
}
/* OCCASION */

.occasion-section {
    background-color: #F7EFE3;
    padding: 53px 0;
}

.occasion-section h2 {
    color: var(--primary);
    margin-bottom: 82px !important;
}

.occasion-card {
    text-align: center;
    position: relative;
    border: 1px solid #A4783D;
    border-top-left-radius: 145px;
    border-top-right-radius: 145px;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    padding: 20px;
}



.occasion-card h6 {
    margin-top: 18px;
    font-size: 18px;
    font-weight: 500;
}

/* PRODUCTS */


.product-content {
    padding: 24px 0px;
    text-align: center;
}

.product-content h4 {
    font-family: 'Recoleta', sans-serif;
    margin-bottom: 10px;
    color: var(--primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-content p {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--gold);
}

.view-btn {
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 10px 20px;
    border-radius: 5px;
}






/* .shape-img {
    width: 100%;
    height: auto;
    display: block;
} */

.card-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;

}

.occasion-img {
    width: 100%;
    border-radius: 100%;
    height: auto;
    aspect-ratio: 1;
    overflow: hidden;
}

.card-flower-icon {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translate(-50%, -50%);
}

.occasion-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.occasion-card h3 {
    color: var(--black);
    margin-bottom: 5.6%;
    margin-top: 24px;
    margin-bottom: 14px;
}

.divider img {
    width: 100%;
}

/* WHAT'S IN STORE */

.products-section {
    background-color: var(--white);
    padding: 88px 0 96px;
}

.products-section h2 {
    color: var(--primary);
    margin-bottom: 56px;
}

.filter-tabs-section-header {
    width: 100%;
}

.filter-tabs-container {
    display: flex;
    align-items: center;
}

.tabs-scroll-btn {
    display: none;
}

.filter-tabs li {
    font-family: 'Recoleta', sans-serif;
    font-size: 20px;
    line-height: 1em;
    font-weight: 500;
    color: var(--dark);
    cursor: pointer;
    padding: 10px 24px;
    position: relative;
    transition: 0.3s;
}

.filter-tabs li:hover,
.filter-tabs li.active {
    color: var(--primary);
}

.filter-tabs li.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--primary);
}

.view-btn {
    font-family: 'Recoleta', sans-serif;
    font-size: 16px;
    color: var(--primary);
    border: 1px solid var(--primary);
    padding: 8px 20px;
    border-radius: 4px;
    transition: 0.3s;
}

.view-btn:hover {
    background-color: var(--primary);
    color: var(--white);
}

.product-card-holder {
    background-color: #FDEDDA;
    border-radius: 8px;
    overflow: hidden;
}

.product-card {

    text-align: center;
    padding: 16px 16px 0px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


.product-img img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 8px;
}


.product-content .price {
    font-size: 20px;
}

.product-content .old-price {
    color: #947E5B;
    text-decoration: line-through;
    margin-right: 10px;
}

.product-content .new-price {
    color: #412903;
    font-weight: 500;
}

.add-to-cart-btn {
    background-color: #55083B;
    color: var(--white);
    padding: 12px 0;
    border-radius: 6px;
    width: 100%;
    transition: 0.3s;
    font-family: 'Recoleta', sans-serif;
    font-size: 18px;
    font-weight: 500;
}

.add-to-cart-btn:hover {
    background-color: var(--gold);
    color: var(--white);
}

.add-to-car.light-btn:hover {
    background-color: var(--gold);
    color: var(--white);
}

/* WHY GIFT FROM US */
.why-us {
    padding: 96px 0;
}

.why-us .section-title h2 {
    color: var(--primary);
    text-align: center;
    margin-bottom: 56px;
}

.why-card {
    padding: 42px;
    border-radius: 8px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.why-card.card-1 {
    background-color: #FFEFE2;
}

.why-card.card-2 {
    background-color: #E8EEE2;
}

.why-card.card-3 {
    background-color: #FFF6E7;
}

.icon-circle {
    width: 64px;
    height: 64px;
    background-color: var(--white);
    border-radius: 50%;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-card h3 {
    font-family: 'Recoleta', sans-serif;
    color: var(--primary);
    margin-bottom: 24px;
    max-width: 285px;
}

.why-card p {
    line-height: 1.65em;
    color: var(--dark);
    margin-bottom: 0;
}

/* Swiper custom styles */
.swiper-button-next.store-swiper-next,
.swiper-button-prev.store-swiper-prev {
    color: var(--primary);
    background: #FDEDDA;
    width: 46px;
    height: 46px;
    top: 35%;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border-radius: 50%;

}



.swiper-button-next.store-swiper-next::after,
.swiper-button-prev.store-swiper-prev::after {
    display: none;
}

.swiper-button-prev.store-swiper-prev,
.swiper-button-next.store-swiper-next {
    display: flex;
    align-items: center;
    justify-content: center;
}

.swiper-button-prev.store-swiper-prev i,
.swiper-button-next.store-swiper-next i {
    font-size: 12px;
    color: #000;
}

.swiper-button-prev.store-swiper-prev {
    left: -20px;
}

.swiper-button-next.store-swiper-next {
    right: -20px;
}

.store-swiper-pagination {
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    bottom: 0 !important;
    right: 0;
    margin-top: 48px;
    display: flex;
    gap: 0 !important;
}

.store-swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #55083B !important;
}

.store-swiper-pagination .swiper-pagination-bullet {
    border-radius: 0;
    width: 100%;
    height: 2px;
    margin: 0 !important;
}

/* FEATURE */

.feature-section {
    position: relative;
    background-color: #FDEDDA;
    overflow: hidden;
}

.feature-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background-color: var(--primary);
    z-index: 1;
}

.feature-section .container {
    position: relative;
    z-index: 2;
}

.feature-left {
    max-width: 655px;
    background-color: var(--primary);
    padding: 171px 0px;
    color: var(--white);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.feature-left h2 {
    margin-bottom: 20px;
    color: var(--white);
}

.feature-left p {
    line-height: 1.65em;
    margin-bottom: 30px;
    color: #E6E6E6;
}

.feature-right {
    position: relative;
    height: 100%;
    min-height: 500px;
    background-color: #FDEDDA;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.bg-landmark {
    width: 100%;
    height: 100%;
    object-fit: 100%;
}

.fg-fruit {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 600px;
}



/* Best Selling Slider */

.best-selling-section {
    background-color: var(--primary);
    padding: 88px 0 96px;
}

.best-selling-section h2 {
    color: var(--white);
    margin-bottom: 56px !important;
    max-width: 556px;
    margin: 0 auto;
}

.best-selling-swiper .product-card-holder {
    background-color: #FFF;
    border-radius: 8px;
}

.best-selling-swiper .product-content h4 {
    color: var(--primary);
}

.best-selling-swiper .price .new-price {
    color: #412903;
}

.best-selling-swiper .price .old-price {
    color: #947E5B;
}

.best-selling-swiper .add-to-cart-btn {
    background-color: var(--light2);
    color: var(--primary);
}

.best-selling-swiper .add-to-cart-btn:hover {
    background-color: var(--gold);
    color: var(--white);
}

.swiper-button-next.best-selling-next,
.swiper-button-prev.best-selling-prev {
    color: var(--primary);
    background: #FDEDDA;
    width: 46px;
    height: 46px;
    top: 35%;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border-radius: 50%;
}

.swiper-button-next.best-selling-next::after,
.swiper-button-prev.best-selling-prev::after {
    display: none;
}

.swiper-button-prev.best-selling-prev,
.swiper-button-next.best-selling-next {
    display: flex;
    align-items: center;
    justify-content: center;
}

.swiper-button-prev.best-selling-prev i,
.swiper-button-next.best-selling-next i {
    font-size: 12px;
    color: #000;
}

.swiper-button-prev.best-selling-prev {
    left: -20px;
}

.swiper-button-next.best-selling-next {
    right: -20px;
}

.best-selling-pagination {
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    bottom: 0 !important;
    right: 0;
    margin-top: 48px;
    display: flex;
    gap: 0 !important;
}

.best-selling-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--white) !important;
}

.best-selling-pagination .swiper-pagination-bullet {
    border-radius: 0;
    width: 100%;
    height: 2px;
    margin: 0 !important;
    background: #8B8B8B;
}

/* TESTIMONIAL */

.testimonial-section {
    background-color: var(--white);
    padding: 120px 0;
}

.testimonial-left h2 {
    color: var(--primary);
    font-family: 'Recoleta', sans-serif;
    max-width: 515px;
}

.testimonial-left {
    display: flex;
    flex-direction: column;
    height: calc(100% - 70px);
    justify-content: space-between;
}

.taxi-img {
    width: 100%;
    max-width: 677px;
}

.testimonial-box {
    background-color: #FDF2E9;
    background-image: url('../images/banner-kolkata.png');
    background-size: cover;
    background-position: center;
    padding: 40px;
    border-radius: 8px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.quote-icon {
    position: absolute;
    top: 40px;
    left: 40px;
    width: 40px;
}

.profile-img {
    text-align: right;
}

.profile-img img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
}

.testimonial-text {
    font-size: 32px;
    line-height: 1.4em;
    color: var(--dark);
    margin-bottom: 32px;
    font-family: 'Recoleta', sans-serif;
    margin-top: 155px;
}

.testimonial-author h5 {
    font-family: 'Recoleta', sans-serif;
    font-size: 20px;
    color: var(--dark);
    margin-bottom: 8px;
}

.testimonial-author span {
    font-size: 16px;
    color: var(--dark);
}

/* Controls */
.testimonial-controls {
    display: flex;
    align-items: center !important;
    gap: 15px;
}

.swiper-button-prev.testimonial-prev,
.swiper-button-next.testimonial-next {
    color: var(--primary);
    background: #FDEDDA;
    width: 46px !important;
    height: 46px !important;
    flex: 0 0 46px;
    border: 1px solid #FDEDDA;
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0 !important;
    left: 0;
    right: 0;
    bottom: 0 !important;
    margin: 0 !important;
}

.swiper-button-prev.testimonial-prev.swiper-button-disabled,
.swiper-button-next.testimonial-next.swiper-button-disabled {
    border: 1px solid var(--primary);
    background: #fff !important;
    opacity: 1 !important;
}

.swiper-button-prev.testimonial-prev::after,
.swiper-button-next.testimonial-next::after {
    display: none;
}

.swiper-button-prev.testimonial-prev i,
.swiper-button-next.testimonial-next i {
    font-size: 12px;
}

.testimonial-pagination {
    display: flex;
    position: relative !important;
    width: 100% !important;
    height: 2px;
    background: #D9D9D9;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
}

.testimonial-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--primary) !important;
}

.testimonial-pagination .swiper-pagination-bullet {
    border-radius: 0;
    width: 100%;
    height: 2px;
    margin: 0 !important;
}


/*Why Gift From Ichhapuron*/

.why-ichhapuron-section {
    padding-bottom: 96px;
}

.why-ichhapuron-section h2 {
    color: var(--primary);
    margin-bottom: 56px;
    max-width: 560px;
    margin-inline: auto;
}

.why-ichhapuron-section .why-card {
    padding: 16px;
    background: #FFEFE2;
}

.why-ichhapuron-section .card-img {
    margin-bottom: 32px;
}

.why-ichhapuron-section .why-card h3 {
    font-size: 32px;
    max-width: 100%;
}

.why-ichhapuron-section .why-card .card-text {
    padding: 0px 20px;
    margin-bottom: 32px;
}

.why-ichhapuron-section .why-card .card-text p {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    /* number of lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
}



/* MAP */

.map-section {
    background-image: url('../images/map.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 230px 0 168px;
    text-align: center;
}

.map-content h2 {
    color: var(--black);
    margin-bottom: 56px;
    max-width: 850px;
    margin-inline: auto;
    font-weight: 500;
}

.map-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.map-section .outline-btn {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
}

.map-section .outline-btn:hover {
    background: var(--primary);
    color: var(--white);
}

/* FOOTER */

.footer {
    background: #310422;
    color: var(--white);
    padding-top: 80px;
}

.footer h5 {
    font-size: 20px;
    line-height: 1.65em;
    margin-bottom: 18px;
    font-weight: 400;
    color: #fff !important;
}

.footer ul li {
    margin-bottom: 12px;
}

.footer ul li a {
    color: #fff !important;
    font-size: 16px;
    line-height: 1.65em;
}

.wk-new-chrome-footer .footer ul li a:hover,
.footer ul li a:hover {
    color: #fff !important;
    opacity: 0.85;
}

.footer-brand img {
    max-width: 112px;
    margin-bottom: 24px;
}

.footer-brand p {
    font-size: 18px;
    line-height: 1.65em;
    color: #fff !important;
    margin: 0px;
    max-width: 406px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a img {
    width: 40px;
    height: 40px;

}

.payment-methods {
    max-width: 248px;
}

.payment-methods .payment-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
}

.payment-methods .payment-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.footer-bottom {
    text-align: center;
    padding: 28px 0;
    margin-top: 75px;
    border-top: 1px solid #7E7E7E;
}

.footer-bottom p {
    font-size: 16px;
    line-height: 1.2em;
    font-weight: 400;
    color: #fff !important;
}

/* SEARCH OVERLAY */

.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(85, 8, 59, 0.95);
    /* Using var(--primary) with opacity */
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease-in-out;
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 50px;
    color: var(--white);
    cursor: pointer;
    transition: 0.3s;
}

.search-close:hover {
    color: var(--gold);
}

.search-content {
    width: 100%;
    max-width: 600px;
    padding: 0 20px;
}

.search-content form {
    position: relative;
    display: flex;
    align-items: center;
}

.search-content input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid var(--white);
    color: var(--white);
    font-size: 24px;
    padding: 10px 40px 10px 0;
    outline: none;
}

.search-content input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.search-content button {
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    position: absolute;
    right: 0;
}

.search-content button:hover {
    color: var(--gold);
}

/* ==========================================
   WHAT MAKES US SPECIAL SECTION
   ========================================== */
.special-section {
    padding: 80px 0 96px 0;
    background-color: var(--white);
}

.special-section .section-title {
    margin-bottom: 56px;
}

.special-section .section-title h2 {
    color: var(--primary);
    margin-bottom: 16px;
    font-family: 'Recoleta', sans-serif;
    font-weight: 500;
}

.special-section .title-divider {
    display: flex;
    justify-content: center;
    align-items: center;
}

.special-section .title-divider img {
    max-width: 240px;
    height: auto;
}

.special-card {
    background-color: #FEECD1;
    padding: 53px 34px 70px 34px;
    border: 1px solid #A4783D !important;
    border-radius: 24px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.special-card .special-card-bg-shape {
    position: absolute;
    top: 8px;
    width: calc(100% - 16px);
    z-index: 0;
    display: flex;
    justify-content: space-between;
}

.special-card .special-card-bg-shape:first-child:before {
    content: "";
    background-image: url('../images/special-border-design1.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 64px;
    height: 64px;
    display: block;
}

.special-card .special-card-bg-shape:first-child:after {
    content: "";
    background-image: url('../images/special-border-design2.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 64px;
    height: 64px;
    display: block;
}

.special-card .special-card-bg-shape:nth-child(2) {
    top: unset;
    bottom: 8px;
    transform: scaleY(-1);
}

.special-card .special-card-bg-shape:nth-child(2):before {
    content: "";
    background-image: url('../images/special-border-design1.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 64px;
    height: 64px;
    display: block;
}

.special-card .special-card-bg-shape:nth-child(2):after {
    content: "";
    background-image: url('../images/special-border-design2.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 64px;
    height: 64px;
    display: block;
}





.special-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(164, 120, 61, 0.15);
}

.special-card-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.special-card-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.special-card h3 {
    color: var(--primary);
    font-size: 30px;
    line-height: 1.2em;
    margin-bottom: 12px;
    font-weight: 500;
}

.special-card-divider {
    margin-bottom: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.special-card-divider img {
    max-width: 135px;
    height: auto;
}

.special-card p {
    color: var(--dark);
    line-height: 1.65em;
    margin-bottom: 0;
    font-family: 'DM Sans', sans-serif;
}

/* ==========================================
   REDISCOVER THE JOY OF GIFTING SECTION
   ========================================== */
.joy-section {
    position: relative;
    padding: 118px 0;
    background-color: #FDEDDA;
    overflow: hidden;
}

.joy-section::before,
.joy-section::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 34px;
    background-image: url('../images/border-design.svg');
    background-repeat: repeat-x;
    background-size: auto 34px;
    z-index: 1;
}

.joy-section::before {
    top: 16px;
}

.joy-section::after {
    bottom: 16px;
    transform: scaleY(-1);
}

.joy-content {
    padding-right: 20px;
    max-width: 680px;
}

.joy-content h2 {
    color: var(--primary);
    line-height: 1.2em;
    margin-bottom: 24px;
    font-weight: 500;
    max-width: 490px;
}

.joy-content p {
    color: var(--dark);
    line-height: 1.65em;
    margin-bottom: 56px;

}

.joy-image-grid {
    display: flex;
    gap: 16px;
    width: 100%;
}

.joy-grid-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.joy-img-wrap {
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.joy-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.joy-img-wrap:hover img {
    transform: scale(1.06);
}

.joy-img-wrap.img-wide {
    height: 220px;
}

.joy-img-wrap.img-tall {
    height: 285px;
}

/* ==========================================
   THE HEART BEHIND WISH KOLKATA SECTION
   ========================================== */
.heart-section {
    padding: 100px 0;
    background-color: var(--white);
}

.heart-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.victoria-img {
    max-width: 100%;
    height: auto;
    max-height: 598px;
    object-fit: contain;
}

.heart-content {
    padding-left: 20px;
}

.heart-content h2 {
    color: var(--primary);
    line-height: 1.2em;
    margin-bottom: 24px;
    font-weight: 500;
    max-width: 496px;
}

.heart-content p {
    color: var(--dark);
    line-height: 1.65em;
    margin-bottom: 46px;
    max-width: 655px;
}

.founder-signature-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.founder-signature {
    max-width: 250px;
    height: auto;
    margin-bottom: 5px;
}

.founder-title {
    color: #634618 !important;
    font-size: 18px;
    line-height: 1.65em;
    letter-spacing: 0.32px;
    font-weight: 500;
    text-transform: capitalize;
    margin-bottom: 0 !important;
}

/* Responsive styles moved to responsive.css */

/* ==========================================
   WHY GIFT FROM US – TESTIMONIAL SECTION
   ========================================== */

.why-gift-section {
    position: relative;
    background-color: #FAEAD4;
    padding: 150px 0 80px;
    overflow: hidden;
}

.why-gift-banner-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 1;
}

.why-gift-banner-img img.img-fluid {
    width: 100% !important;
    height: auto;
    object-fit: cover;
}

.why-gift-inner {
    position: relative;
    z-index: 1;
}

/* ---- Title ---- */
.why-gift-title {
    color: var(--primary);
    margin-bottom: 16px;
}

/* ---- Decorative divider below title ---- */
.why-gift-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 60px;
}

.why-gift-divider-icon {
    width: 120px;
    height: auto;
    opacity: 0.9;
}

/* ---- Swiper ---- */
.why-gift-swiper {
    padding-bottom: 70px !important;
     margin-top: 80px !important;
}

/* ---- Card ---- */
.why-gift-card {
    background-color: #FDF4E5;
    border: 1px solid var(--gold);
    border-radius: 20px;
    padding: 70px 40px 40px;
    position: relative;
    display: flex;
    flex-direction: column;
    margin-top: 50px;
}


/* Lotus badge sitting on the top-center border */
.why-gift-card-badge {
position: absolute;
    top: -37px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #FDF4E5;
    width: 74px;
    height: 37px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gold);
    border-bottom: none;
    border-radius: 90px 90px 0 0;
    padding-top: 27px;
}

.why-gift-lotus {
    width: 49px;
    object-fit: contain;
}

/* Purple quote mark */
.why-gift-quote {
    margin-bottom: 20px;
}

.why-gift-quote img {
    width: 32px;
    height: auto;
}

/* Testimonial text */
.why-gift-text {
       font-family: 'Recoleta', sans-serif;
    line-height: 1.55em;
    color: var(--dark);
    flex: 1;
    margin-bottom: 24px;
        max-width: 385px;
        margin-bottom: 31px;
}
.why-gift-card-divider {
    margin-bottom: 18px;
}
/* Center gold divider between text and author */
/* .why-gift-card-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold) 20%, var(--gold) 80%, transparent);
    margin-bottom: 24px;
} */

/* Author row */
.why-gift-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.why-gift-author-img {
    flex: 0 0 56px;
}

.why-gift-author-img img {
    width: 86px;
    height: 86px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold);
}

.why-gift-author-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.why-gift-author-name {
    font-size: 20px;
    color: var(--primary);
    margin: 0;
    font-weight: 600;
}

.why-gift-author-loc {
    font-size: 16px;
    font-weight: 500;
    color: #634618;
    letter-spacing: 0.3px;
}

/* Pagination dots */
.why-gift-pagination {
    bottom: 0 !important;
}

.why-gift-pagination .swiper-pagination-bullet {
    width: 20px;
    height: 20px;
    background:transparent !important;
    border: 1px solid var(--gold) !important;
    opacity: 0.4;
}

.why-gift-pagination .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--primary) !important;
    border: 1px solid var(--primary)!important;
}


.occasion-pagination {
    top: unset !important;
    bottom: 0px !important;
}


.occasion-pagination .swiper-pagination-bullet {
    width: 15px;
    height: 15px;
    background:transparent !important;
    border: 1px solid var(--gold) !important;
    opacity: 0.4;
}

.occasion-pagination .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--primary) !important;
    border: 1px solid var(--primary)!important;
}