@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700;1,800;1,900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Berkshire+Swash&family=Signika:wght@300..700&display=swap');

:root {
    --primary-color: #d4a017;
    /* Honey gold */
    --secondary-color: #8b5a2b;
    /* Dark honey */
    --light-color: #fff9e6;
    --dark-color: #2a210b;
    --text-color: #333333;
    --bg-color: #fffcf5;
    --primary-font-family: "Signika";
    --primary-font-weight: 600;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg-color);
    color: var(--text-color);
    overflow-x: hidden;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    background: rgba(255, 252, 245, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(210, 170, 100, 0.2);
    transition: all 0.3s ease;
}

.site-header.sticky_head {
    padding: 10px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.container-fluid {
    padding: 0 40px;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.header-logo img {
    transition: all 0.3s ease;
    margin-top: 15px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.header-logo img:hover {
    transform: scale(1.05);
}

.main-navigation {
    display: flex;
    align-items: center;
    gap: 30px;
}

.header-menu {
    display: flex;
    align-items: center;
}

.menu li {
    position: relative;
    margin: 0 15px !important;
    list-style: none;
}

.nav-link {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    color: var(--dark-color);
    font-weight: 500;
    border-radius: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.nav-link:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

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

.nav-link:hover:before {
    width: 60%;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-search-form {
    position: relative;
}

.form-input {
    padding: 10px 20px;
    padding-right: 40px;
    border-radius: 30px;
    border: 1px solid rgba(210, 170, 100, 0.3);
    background: var(--light-color);
    width: 200px;
    transition: all 0.3s ease;
    font-size: 14px;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.2);
    width: 220px;
}

.header-search-form button {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: var(--primary-color);
    cursor: pointer;
}

.header-actions {
    display: flex;
    gap: 15px;
}

.header-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-color);
    color: var(--primary-color);
    border: 1px solid rgba(210, 170, 100, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.header-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(212, 160, 23, 0.3);
}

.cart-number {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--secondary-color);
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile menu styles */
.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    width: 40px;
    height: 40px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

/* Responsive styles */
@media (max-width: 1199px) {
    .container-fluid {
        padding: 0 30px;
    }

    .menu {
        gap: 0;
    }

    .nav-link {
        padding: 10px 15px;
    }
}

@media (max-width: 991px) {
    .main-navigation {
        gap: 20px;
    }

    .header-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--bg-color);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 1000;
    }

    .header-menu.active {
        transform: translateX(0);
    }

    .menu {
        flex-direction: column;
        align-items: center;
        /* gap: 25px; */
    }

    .nav-link {
        font-size: 18px;
        padding: 12px 25px;
    }

    .menu-toggle {
        display: flex;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .header-right {
        margin-left: auto;
    }
}

@media (max-width: 767px) {
    .container-fluid {
        padding: 0 20px;
    }

    .header-logo img {
        width: 110px;
        height: auto;
    }

    .site-header {
        padding: 7px 0;
    }

    .form-input {
        width: 160px;
    }

    .form-input:focus {
        width: 180px;
    }
}

@media (max-width: 575px) {
    .header-right {
        gap: 10px;
    }

    .header-actions {
        gap: 10px;
    }

    .header-btn {
        width: 36px;
        height: 36px;
    }
}

body {
    --wp--preset--color--black: #000000;
    --wp--preset--color--cyan-bluish-gray: #abb8c3;
    --wp--preset--color--white: #ffffff;
    --wp--preset--color--pale-pink: #f78da7;
    --wp--preset--color--vivid-red: #cf2e2e;
    --wp--preset--color--luminous-vivid-orange: #ff6900;
    --wp--preset--color--luminous-vivid-amber: #fcb900;
    --wp--preset--color--light-green-cyan: #7bdcb5;
    --wp--preset--color--vivid-green-cyan: #00d084;
    --wp--preset--color--pale-cyan-blue: #8ed1fc;
    --wp--preset--color--vivid-cyan-blue: #0693e3;
    --wp--preset--color--vivid-purple: #9b51e0;
    --wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg, rgba(6, 147, 227, 1) 0%, rgb(155, 81, 224) 100%);
    --wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg, rgb(122, 220, 180) 0%, rgb(0, 208, 130) 100%);
    --wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg, rgba(252, 185, 0, 1) 0%, rgba(255, 105, 0, 1) 100%);
    --wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg, rgba(255, 105, 0, 1) 0%, rgb(207, 46, 46) 100%);
    --wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg, rgb(238, 238, 238) 0%, rgb(169, 184, 195) 100%);
    --wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg, rgb(74, 234, 220) 0%, rgb(151, 120, 209) 20%, rgb(207, 42, 186) 40%, rgb(238, 44, 130) 60%, rgb(251, 105, 98) 80%, rgb(254, 248, 76) 100%);
    --wp--preset--gradient--blush-light-purple: linear-gradient(135deg, rgb(255, 206, 236) 0%, rgb(152, 150, 240) 100%);
    --wp--preset--gradient--blush-bordeaux: linear-gradient(135deg, rgb(254, 205, 165) 0%, rgb(254, 45, 45) 50%, rgb(107, 0, 62) 100%);
    --wp--preset--gradient--luminous-dusk: linear-gradient(135deg, rgb(255, 203, 112) 0%, rgb(199, 81, 192) 50%, rgb(65, 88, 208) 100%);
    --wp--preset--gradient--pale-ocean: linear-gradient(135deg, rgb(255, 245, 203) 0%, rgb(182, 227, 212) 50%, rgb(51, 167, 181) 100%);
    --wp--preset--gradient--electric-grass: linear-gradient(135deg, rgb(202, 248, 128) 0%, rgb(113, 206, 126) 100%);
    --wp--preset--gradient--midnight: linear-gradient(135deg, rgb(2, 3, 129) 0%, rgb(40, 116, 252) 100%);
    --wp--preset--duotone--dark-grayscale: url('#wp-duotone-dark-grayscale');
    --wp--preset--duotone--grayscale: url('#wp-duotone-grayscale');
    --wp--preset--duotone--purple-yellow: url('#wp-duotone-purple-yellow');
    --wp--preset--duotone--blue-red: url('#wp-duotone-blue-red');
    --wp--preset--duotone--midnight: url('#wp-duotone-midnight');
    --wp--preset--duotone--magenta-yellow: url('#wp-duotone-magenta-yellow');
    --wp--preset--duotone--purple-green: url('#wp-duotone-purple-green');
    --wp--preset--duotone--blue-orange: url('#wp-duotone-blue-orange');
    --wp--preset--font-size--small: 13px;
    --wp--preset--font-size--medium: 20px;
    --wp--preset--font-size--large: 36px;
    --wp--preset--font-size--x-large: 42px;
}

.has-black-color {
    color: var(--wp--preset--color--black) !important;
}

.has-cyan-bluish-gray-color {
    color: var(--wp--preset--color--cyan-bluish-gray) !important;
}

.has-white-color {
    color: var(--wp--preset--color--white) !important;
}

.has-pale-pink-color {
    color: var(--wp--preset--color--pale-pink) !important;
}

.has-vivid-red-color {
    color: var(--wp--preset--color--vivid-red) !important;
}

.has-luminous-vivid-orange-color {
    color: var(--wp--preset--color--luminous-vivid-orange) !important;
}

.has-luminous-vivid-amber-color {
    color: var(--wp--preset--color--luminous-vivid-amber) !important;
}

.has-light-green-cyan-color {
    color: var(--wp--preset--color--light-green-cyan) !important;
}

.has-vivid-green-cyan-color {
    color: var(--wp--preset--color--vivid-green-cyan) !important;
}

.has-pale-cyan-blue-color {
    color: var(--wp--preset--color--pale-cyan-blue) !important;
}

.has-vivid-cyan-blue-color {
    color: var(--wp--preset--color--vivid-cyan-blue) !important;
}

.has-vivid-purple-color {
    color: var(--wp--preset--color--vivid-purple) !important;
}

.has-black-background-color {
    background-color: var(--wp--preset--color--black) !important;
}

.has-cyan-bluish-gray-background-color {
    background-color: var(--wp--preset--color--cyan-bluish-gray) !important;
}

.has-white-background-color {
    background-color: var(--wp--preset--color--white) !important;
}

.has-pale-pink-background-color {
    background-color: var(--wp--preset--color--pale-pink) !important;
}

.has-vivid-red-background-color {
    background-color: var(--wp--preset--color--vivid-red) !important;
}

.has-luminous-vivid-orange-background-color {
    background-color: var(--wp--preset--color--luminous-vivid-orange) !important;
}

.has-luminous-vivid-amber-background-color {
    background-color: var(--wp--preset--color--luminous-vivid-amber) !important;
}

.has-light-green-cyan-background-color {
    background-color: var(--wp--preset--color--light-green-cyan) !important;
}

.has-vivid-green-cyan-background-color {
    background-color: var(--wp--preset--color--vivid-green-cyan) !important;
}

.has-pale-cyan-blue-background-color {
    background-color: var(--wp--preset--color--pale-cyan-blue) !important;
}

.has-vivid-cyan-blue-background-color {
    background-color: var(--wp--preset--color--vivid-cyan-blue) !important;
}

.has-vivid-purple-background-color {
    background-color: var(--wp--preset--color--vivid-purple) !important;
}

.has-black-border-color {
    border-color: var(--wp--preset--color--black) !important;
}

.has-cyan-bluish-gray-border-color {
    border-color: var(--wp--preset--color--cyan-bluish-gray) !important;
}

.has-white-border-color {
    border-color: var(--wp--preset--color--white) !important;
}

.has-pale-pink-border-color {
    border-color: var(--wp--preset--color--pale-pink) !important;
}

.has-vivid-red-border-color {
    border-color: var(--wp--preset--color--vivid-red) !important;
}

.has-luminous-vivid-orange-border-color {
    border-color: var(--wp--preset--color--luminous-vivid-orange) !important;
}

.has-luminous-vivid-amber-border-color {
    border-color: var(--wp--preset--color--luminous-vivid-amber) !important;
}

.has-light-green-cyan-border-color {
    border-color: var(--wp--preset--color--light-green-cyan) !important;
}

.has-vivid-green-cyan-border-color {
    border-color: var(--wp--preset--color--vivid-green-cyan) !important;
}

.has-pale-cyan-blue-border-color {
    border-color: var(--wp--preset--color--pale-cyan-blue) !important;
}

.has-vivid-cyan-blue-border-color {
    border-color: var(--wp--preset--color--vivid-cyan-blue) !important;
}

.has-vivid-purple-border-color {
    border-color: var(--wp--preset--color--vivid-purple) !important;
}

.has-vivid-cyan-blue-to-vivid-purple-gradient-background {
    background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;
}

.has-light-green-cyan-to-vivid-green-cyan-gradient-background {
    background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;
}

.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background {
    background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;
}

.has-luminous-vivid-orange-to-vivid-red-gradient-background {
    background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;
}

.has-very-light-gray-to-cyan-bluish-gray-gradient-background {
    background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;
}

.has-cool-to-warm-spectrum-gradient-background {
    background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;
}

.has-blush-light-purple-gradient-background {
    background: var(--wp--preset--gradient--blush-light-purple) !important;
}

.has-blush-bordeaux-gradient-background {
    background: var(--wp--preset--gradient--blush-bordeaux) !important;
}

.has-luminous-dusk-gradient-background {
    background: var(--wp--preset--gradient--luminous-dusk) !important;
}

.has-pale-ocean-gradient-background {
    background: var(--wp--preset--gradient--pale-ocean) !important;
}

.has-electric-grass-gradient-background {
    background: var(--wp--preset--gradient--electric-grass) !important;
}

.has-midnight-gradient-background {
    background: var(--wp--preset--gradient--midnight) !important;
}

.has-small-font-size {
    font-size: var(--wp--preset--font-size--small) !important;
}

.has-medium-font-size {
    font-size: var(--wp--preset--font-size--medium) !important;
}

.has-large-font-size {
    font-size: var(--wp--preset--font-size--large) !important;
}

.has-x-large-font-size {
    font-size: var(--wp--preset--font-size--x-large) !important;
}

.woocommerce form .form-row .required {
    visibility: visible;
}

.woocommerce-product-gallery {
    opacity: 1 !important;
}

/* Adjust mobile header logo size */
@media only screen and (max-width: 1024px) {
    #qodef-page-mobile-header .qodef-mobile-header-logo-link {
        height: auto !important;
        /* Override inline style */
    }

    #qodef-page-mobile-header .qodef-header-logo-image {
        width: 186px !important;
        height: auto !important;
        max-height: 122px !important;
        margin-top: 4px !important;
        margin-left: -39px !important;
    }

    #qodef-page-mobile-header-inner {
        padding: 0 20px !important;
    }

    .feature-card {
        width: 19rem !important;
    }
}

.about-img {
    width: 113% !important;
    height: auto !important;
    max-width: 130% !important;
    max-height: 100% !important;
    object-fit: cover !important;
    padding-left: 7rem;
}

@media only screen and (max-width: 1024px) {
    .about-img {
        width: 100% !important;
        height: auto !important;
        max-width: 100% !important;
        max-height: 100% !important;
        padding-left: 0rem;
    }
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 14% !important;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

@media only screen and (max-width: 1024px) {
    .play-btn {
        left: -2% !important;
    }
}

.heading {
    font-family: "Berkshire Swash", serif !important;
    font-weight: 400;
    font-style: normal;
    font-size: 6rem !important;
    margin-top: 20px;
    text-transform: capitalize !important;
}

.hero-heading {
    font-family: "Lucida Handwriting", cursive !important;
    color: var(--dark-color);
    text-align: center !important;
    margin-top: 30px;
    left: 10%;
}

@media only screen and (max-width: 1024px) {
    .heading {
        font-size: 4rem !important;
    }
}

@media only screen and (max-width: 1024px) {
    #rev_slider_1_1_wrapper {
        background-image: url('image/DSC09814.JPG');
        /* update path if needed */
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
}

.feature-section {
    background-color: #ffd832;
    background-image: url("image/honey-hr-white.png");
    background-position: top center !important;
    background-repeat: no-repeat;
    height: 60rem !important;
}

.ws-intro-item {
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.ws-intro-item:after {
    content: "";
    position: absolute;
    right: -35px;
    top: 15%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    display: block;
    width: 45px;
    height: 45px;
    background: url("../images/download.png") no-repeat 100% 50%;
}

.ws-intro-item.last-child:after {
    content: none !important;
}

.ws-intro-item:hover {
    -webkit-transform: translateY(-20px);
    -moz-transform: translateY(-20px);
    -o-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.ws-intro-item img {
    display: block;
    margin: 0 auto 80px;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    z-index: 20;
    text-align: center;
    position: relative;
}

.ws-intro-item .ltx-hex-wrapper,
.ws-intro-item .ltx-hex {
    width: 220px;
    height: 190.52px;
    border-radius: 16px;
}

.ltx-hex {
    overflow: hidden;
    display: inline-block;
    width: 154px;
    height: 133.364px;
    transform: rotate(-30deg) skewX(30deg);
    border-radius: 14px;
}

.ws-intro-item .ltx-hex-wrapper {
    z-index: 0;
    position: absolute;
    top: -22%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.ws-intro-item .ltx-hex-shadow {
    top: 15px;
    left: 0;
    position: absolute;
    -webkit-filter: blur(10px);
    -moz-filter: blur(10px);
    -ms-filter: blur(10px);
    filter: blur(10px);
    zoom: 1;
    filter: alpha(opacity=10);
    -webkit-opacity: .1;
    -moz-opacity: .1;
    opacity: .1;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.ltx-hex .ltx-hex-inner {
    transform: skewX(-30deg) rotate(60deg) skewX(30deg);
}

.ltx-hex>.ltx-hex-inner,
.ltx-hex>.ltx-hex-inner:before {
    display: block;
    overflow: hidden;
    width: inherit;
    height: inherit;
    border-radius: inherit;
}

.ws-intro-item .ltx-hex-shadow .ltx-hex-inner:before {
    background-color: #5a3733;
}

.ltx-hex .ltx-hex-inner:before {
    transform: skewX(-30deg) rotate(60deg) skewX(30deg);
    background-color: #eb6d2f;
    content: '';
}

.ws-intro-item .ltx-hex-white {
    top: 0;
    left: 0;
    position: absolute;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.ws-intro-item .ltx-hex-white .ltx-hex-inner:before {
    background-color: #fff;
}

.ws-intro-item .ltx-hex-gray {
    top: 18px;
    left: 20px;
    position: absolute;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    width: 180px;
    height: 155.88px;
}

.ws-intro-item .ltx-hex-gray .ltx-hex-inner:before {
    background-color: #f8f7f1;
}

.text-feature {
    font-size: 20px !important;
    color: #eb6d2f !important;
    margin-top: 13% !important;
    text-align: center;
    text-transform: none;
    font-family: var(--primary-font-family), "Signika" !important;
    font-weight: var(--primary-font-weight) !important;
}

.category-text {
    font-size: 46px !important;
    font-weight: bold !important;
    text-transform: capitalize !important;
    color: #5a3733 !important;
    text-align: center;
    font-family: var(--primary-font-family), "Signika" !important;
}

.texttt {
    text-align: center;
    color: #5a3733;
}

.section-contain {
    margin-top: 4% !important;
    margin-bottom: 0px !important;
    padding: 60px 0px 0px 0px !important;
}

.elementor-image-box-title {
    color: #5a3733 !important;
    font-size: 28px !important;
    font-weight: bold !important;
    text-transform: capitalize !important;
}

.elementor-image-description {
    color: black !important;
    font-size: 18px;
    font-weight: 400;
    margin-top: -8% !important;
}

.ws-intro-item:after {
    content: "";
    position: absolute;
    right: -35px;
    top: 7%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    display: block;
    width: 45px;
    height: 45px;
    background: url(image/download.png) no-repeat 100% 50%;
}

@media only screen and (max-width: 1024px) {
    .ws-intro-item:after {
        content: none !important;
    }
}

/* ======================
   PRODUCT SECTION STYLING
   ====================== */

/* Section Container */
.et_pb_section.et_pb_section_2 {
    padding: 20px 0;
    background-color: #fff9f0;
    /* Light honey-colored background */
}

/* Section Title */
.dct_title h2 {
    font-size: 47px;
    color: #2a2a2a;
    margin-bottom: 15px;
    text-align: center;
    font-family: "Signika", sans-serif !important;
    font-weight: 700;
    letter-spacing: 1px;
    position: relative;
    text-transform: capitalize;
    padding-bottom: 20px;
}

.dct_title h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: #d4a656;
    /* Honey gold color */
}

/* Section Subtitle */
.et_pb_text_1 .et_pb_text_inner {
    font-size: 18px;
    color: #666;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.6;
    font-family: 'Open Sans', sans-serif;
}

/* Product Grid */
.et_pb_shop .products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(292px, 1fr));
    gap: 40px;
    margin: 0;
    padding: 0 20px;
    list-style: none;
    max-width: 1339px;
    margin: 0 auto;
}

/* Product Card */
.et_pb_shop .products li.product {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    padding: 0;
    margin: 0;
    border: 1px solid #f0e6d6;
}

.et_pb_shop .products li.product:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

/* Product Image Container */
.et_pb_shop .products li.product .et_shop_image {
    padding-bottom: 100%;
    position: relative;
    overflow: hidden;
    display: block;
    height: 0;
    background: #f9f5ed;
}

/* Product Image */
.et_pb_shop .products li.product .et_shop_image img {
    position: absolute;
    top: -95px;
    left: -33px;
    width: 117%;
    height: 171%;
    max-width: 200% !important;
    object-fit: contain;
    transition: transform 0.6s ease;
    padding: 20px;
}

.et_pb_shop .products li.product:hover .et_shop_image img {
    transform: scale(1.08);
}

/* Product Overlay */
.et_pb_shop .products li.product .et_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(to bottom, rgba(212,166,86,0.1) 0%, rgba(212,166,86,0.3) 100%); */
    opacity: 0;
    transition: opacity 0.3s ease;
}

.et_pb_shop .products li.product:hover .et_overlay {
    opacity: 1;
}

/* Product Content */
.et_pb_shop .products li.product .woocommerce-loop-product__link {
    display: block;
    text-decoration: none;
    color: #333;
}

/* Product Title */
.et_pb_shop .products li.product .woocommerce-loop-product__title {
    font-size: 18px;
    margin: 20px 20px 10px;
    font-weight: 600;
    color: #2a2a2a;
    font-family: 'Open Sans Condensed', sans-serif;
    text-align: center;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Price Styling */
.et_pb_shop .products li.product .price {
    display: block;
    margin: 0 20px 20px;
    font-size: 20px;
    color: #d4a656;
    font-weight: 700;
    text-align: center;
    font-family: 'Open Sans', sans-serif;
}

.et_pb_shop .products li.product .price del {
    color: #999;
    font-size: 16px;
    margin-right: 8px;
    font-weight: 400;
}

/* Add to Cart Button */
.et_pb_shop .products li.product .button {
    display: block;
    background: #d4a656;
    color: white;
    text-align: center;
    padding: 10px;
    margin: 10px 88px 16px;
    border-radius: 6px;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    width: 40%;
}

.product-buttons {
    display: flex !important;
    align-items: baseline;
}

.et_pb_shop .products li.product .button:hover {
    background: #c1913e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 166, 86, 0.4);
}

.et_pb_shop .products li.product .button:after {
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.3s ease;
}

.et_pb_shop .products li.product .button:hover:after {
    right: 15px;
    opacity: 1;
}

/* Sale Badge */
.et_pb_shop .products li.product .onsale {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #d4a656;
    color: white;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    z-index: 1;
    font-family: 'Open Sans', sans-serif;
    box-shadow: 0 3px 10px rgba(212, 166, 86, 0.3);
}

/* Wishlist Button */
.tinv-wraper {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 2;
}

.tinvwl_add_to_wishlist_button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4a656 !important;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
}

.tinvwl_add_to_wishlist_button:hover {
    background: #d4a656 !important;
    color: white !important;
}

.tinvwl_add_to_wishlist_button:before {
    content: "\f004";
    font-family: "Font Awesome 6 Free";
    font-weight: 400;
}

.tinvwl_add_to_wishlist_button.tinvwl-icon-heart.no-txt:before {
    font-weight: 400;
}

.tinvwl-tooltip {
    display: none !important;
}

/* Quick View Button - Hidden if not functioning */
.yith-wcqv-button {
    display: none;
}

/* View More Button */
.et_pb_button_0 {
    background: #d4a656 !important;
    color: white !important;
    border: none !important;
    padding: 14px 35px !important;
    font-size: 16px !important;
    border-radius: 6px !important;
    text-transform: uppercase;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 50px;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(212, 166, 86, 0.3);
    margin-left: 45%;
}

.et_pb_button_0:hover {
    background: #c1913e !important;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 166, 86, 0.4);
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .et_pb_shop .products {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 767px) {
    .dct_title h2 {
        font-size: 32px;
    }

    .et_pb_text_1 .et_pb_text_inner {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .et_pb_shop .products {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .et_pb_shop .products {
        grid-template-columns: 1fr;
        max-width: 350px;
    }
}

/* Header Cart Icon */
.header-cart {
    margin-left: auto;
    padding-left: 20px;
    display: flex;
    align-items: center;
}

.cart-contents {
    position: relative;
    color: #333;
    font-size: 22px;
    text-decoration: none;
}

.cart-count {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #d4a656;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

/* Style for View button */
.view-product-button {
    display: inline-block;
    margin-left: 10px;
    color: #d4a656;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-product-button:hover {
    color: #b38a4a;
}

/* Style for product detail page */
.product-detail-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0px 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.title-price {
    display: flex;
    align-items: center;
    flex-direction: column;
    line-height: 0px;
}

/* Dropdown Menu Styles */
.qodef-menu-item--narrow {
    position: relative;
}

.qodef-menu-item--narrow .sub-menu {
    display: none;
    position: absolute;
    top: 36%;
    left: 12%;
    background: #fff;
    min-width: 72%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 100;
    padding: -1px 0;
    border-radius: 4px;
}

.qodef-menu-item--narrow .sub-menu li {
    padding: 0;
}

.qodef-menu-item--narrow .sub-menu a {
    display: block;
    padding: 8px 20px;
    color: #333;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s;
}

.qodef-menu-item--narrow .sub-menu a:hover {
    background-color: #f5f5f5;
    color: #d4a656;
}

/* Show dropdown on hover */
.qodef-menu-item--narrow:hover .sub-menu {
    display: block;
}

/* Base Styles */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0px 15px;
    margin-left: 11%;
}

/* Header Styles */
#qodef-page-header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

#qodef-page-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.header-navigation ul {
    display: flex;
    list-style: none;
    margin: 0 !important;
    padding: 0;
}

.header-navigation li {
    margin: 0 15px;
    position: relative;
}


.header-navigation a:hover {
    color: #d4a656;
}

.header-cart {
    position: relative;
}

.cart-contents {
    color: #333;
    font-size: 20px;
    text-decoration: none;
    position: relative;
}

.cart-count {
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: #d4a656;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

/* Product Page Styles */
.product-section {
    padding: 40px 0;
    background-color: #f9f9f9;
}

.product-container {
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px;
}

.product-image-container {
    flex: 1;
    min-width: 300px;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.product-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.product-details {
    flex: 1;
    min-width: 300px;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-left: 20px;
}

.product-title {
    font-size: 28px;
    margin-bottom: 10px;
    color: #333;
}

.product-price {
    font-size: 24px;
    font-weight: bold;
    color: #d4a656;
    margin-bottom: 20px;
}

.product-variations {
    margin-bottom: 20px;
}


.variation-options {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.variation-option {
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
}

.variation-option:hover {
    border-color: #d4a656;
}

.variation-option.selected {
    background-color: #d4a656;
    color: white;
    border-color: #d4a656;
}

.quantity-selector {
    display: flex;
    align-items: baseline;
    margin-bottom: 20px;
    width: 35%;
}

.quantity-selectors {
    display: flex;
    align-items: baseline;
    margin-bottom: 20px;
    width: 35%;
}

.quantity-input {
    width: 50px !important;
    height: 40px;
    text-align: center;
    margin: 0 10px !important;
    border: 1px solid #ddd !important;
}

.action-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.add-to-cart {
    background-color: #d4a656;
    color: white;
    border: none;
    padding: 13px 25px;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: 18px;
}

.buy-now {
    background-color: #000;
    color: white;
    border: none;
    padding: 13px 25px;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: 18px;
}

/* Updated Product Features Styles */
.product-features {
    margin: 30px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}

.feature-item {
    display: flex;
    align-items: center;
    background: #f8f5f0;
    padding: 7px;
    border-radius: 8px;
    width: calc(50% - 10px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    margin-right: 15px;
    color: #d4a656;
    font-size: 24px;
    min-width: 40px;
    text-align: center;
}

.feature-text {
    color: #5a534a;
    font-size: 15px;
    font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .feature-item {
        width: 100%;
    }
}

.add-to-cart:hover {
    background-color: #c2954a;
}


/* Related Products Section */
.related-products {
    text-align: center;
    margin: 30px auto 0;
    max-width: 1200px;
    padding: 0 20px;
}

.related-title {
    font-size: 28px;
    color: #2c2723;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.related-title:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 2px;
    background: #d4a656;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.related-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
}

.related-product {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    width: 250px;
}

.related-product:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.related-product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid #f0f0f0;
}


.related-product-title {
    font-size: 18px;
    color: #2c2723;
    margin-bottom: 10px;
    font-weight: 600;
}

.related-product-price {
    color: #d4a656;
    font-weight: bold;
    font-size: 18px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .related-grid {
        display: flex;
        gap: 20px;
        justify-content: flex-start;
    }

    .related-title {
        margin-right: 14px !important;
    }

    .related-product {
        width: calc(50% - 20px);
    }
}

@media (max-width: 480px) {
    .related-product {
        width: 84%;
    }
}

.related-title {
    font-size: 22px;
    margin-bottom: 20px;
    text-align: center;
}


.related-product {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.related-product:hover {
    transform: translateY(-5px);
}

.related-product-image {
    width: 100%;
    height: 240px;
    margin-top: 12px;
    object-fit: cover;
}

.related-product-info {
    padding: 2px;
}

.related-product-title {
    font-size: 20px;
    text-align: center;
    margin-bottom: 5px;
}

.related-product-price {
    color: #d4a656;
    font-weight: bold;
    text-align: center;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .product-container {
        flex-direction: column;
    }

    .product-details {
        margin-left: 0;
        margin-top: 20px;
    }

    .action-buttons {
        flex-direction: column;
    }

    .add-to-cart,
    .buy-now {
        width: 100%;
    }
}

/* Cart Popup Styles */
.cart-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.cart-popup h3 {
    margin-top: 0;
    color: #333;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.cart-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}


.cart-item-info h4 {
    margin: 0 0 5px 0;
    font-size: 16px;
}

.cart-item-info p {
    margin: 0;
    font-size: 14px;
    color: #666;
}

.remove-item {
    background: none;
    border: none;
    color: #ff6b6b;
    cursor: pointer;
    font-size: 13px;
    padding: 0;
    margin-top: 5px;
}

.cart-total {
    text-align: right;
    font-size: 18px;
    margin: 20px 0;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.cart-actions {
    display: flex;
    justify-content: space-between;
}

.close-cart {
    background: #f5f5f5;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
}

.checkout {
    background: #d4a656;
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: bold;
}

/* Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
}

/* Loading State */
.loading {
    text-align: center;
    padding: 50px;
    font-size: 18px;
    color: #666;
}

/* Base Header Styles */
#qodef-page-header {
    background-color: #fff8e1;
    /* Light honey-colored background */
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #ffd54f;
    box-shadow: 0 2px 15px rgba(210, 168, 84, 0.1);
}

#qodef-page-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    position: relative;
}

.header-logo img {
    height: 100px;
    transition: transform 0.3s ease;
}

.header-logo:hover img {
    transform: scale(1.05);
}

/* Navigation Styles */
.header-navigation ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
}

.header-navigation li {
    margin: 0 12px;
    position: relative;
}

.header-navigation>ul>li>a {
    text-decoration: none;
    color: #5d4037;
    font-weight: 600;
    font-size: 20px;
    padding: 15px 10px;
    position: relative;
    transition: all 0.3s ease;
    display: inline-block;
}

/* Honeycomb Inspired Hover Effect */
.header-navigation>ul>li>a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: #ffab00;
    /* Honey yellow */
    transform: translateX(-50%);
    transition: width 0.3s ease;
    border-radius: 3px 3px 0 0;
}

.header-navigation>ul>li>a:hover {
    color: #e65100;
    /* Darker orange on hover */
}

.header-navigation>ul>li>a:hover:after {
    width: 100%;
}

/* Dropdown Menu Styles */
.header-navigation .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff8e1;
    min-width: 200px;
    padding: 10px 0;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
    display: flex;
    border-top: 3px solid #ffab00;
    flex-direction: column;
}

.header-navigation li:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header-navigation .sub-menu li {
    margin: 0;
    padding: 0;
}

.header-navigation .sub-menu a {
    display: block;
    padding: 10px 20px;
    color: #5d4037;
    transition: all 0.2s ease;
    font-weight: 500;
}

.header-navigation .sub-menu a:hover {
    background: rgba(255, 213, 79, 0.2);
    color: #e65100;
    padding-left: 25px;
}

/* Cart Icon Styles */
.header-cart {
    position: relative;
    margin-left: 20px;
}

.cart-contents {
    color: #5d4037;
    font-size: 22px;
    text-decoration: none;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.cart-contents:hover {
    background: rgba(255, 213, 79, 0.3);
    transform: rotate(-10deg);
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: #e65100;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

/* Mobile Menu Toggle (hidden by default) */
.mobile-menu-toggle {
    display: none;
    /* font-size: 24px; */
    color: #5d4037;
    cursor: pointer;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .header-navigation {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: #fff8e1;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 1000;
        padding-top: 80px;
        overflow-y: auto;
    }

    .header-navigation.active {
        right: 0;
    }

    .header-navigation ul {
        flex-direction: column;
    }

    .header-navigation li {
        margin: 0;
        border-bottom: 1px solid rgba(210, 168, 84, 0.2);
    }

    .header-navigation>ul>li>a {
        padding: 15px 20px;
        display: block;
    }

    .header-navigation .sub-menu {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        padding: 0;
        border-top: none;
    }

    .header-navigation li:hover .sub-menu {
        transform: none;
    }

    .header-navigation .sub-menu a {
        padding-left: 30px;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .mobile-menu-close {
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 24px;
        color: #5d4037;
        cursor: pointer;
    }
}

/* Header Styles */
#qodef-page-header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

#qodef-page-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.header-navigation ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.header-navigation li {
    margin: 0 15px;
    position: relative;
}

.header-navigation a:hover {
    color: #d4a656;
}

.header-cart {
    position: relative;
}

.cart-contents {
    color: #333;
    font-size: 20px;
    text-decoration: none;
    position: relative;
}

.cart-count {
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: #d4a656;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.gallery {
    height: 300px !important;
    max-width: 100%;
    border: none;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

/* Footer with Bee Design */
#qodef-page-footer {
    position: relative;
    overflow: hidden;
    background-color: #f8f3e6 !important;
    padding: 36px 0 0px;
    border-top: 3px solid #d4a656;
}

/* Bee elements */
#qodef-page-footer::before,
#qodef-page-footer::after {
    content: "";
    position: absolute;
    width: 40px;
    height: 40px;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.7;
    z-index: 1;
}

#qodef-page-footer::before {
    top: 20px;
    left: 5%;
    animation: beeFloat 8s infinite ease-in-out;
}

#qodef-page-footer::after {
    bottom: 40px;
    right: 5%;
    animation: beeFloat 10s infinite ease-in-out reverse;
}

@keyframes beeFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    25% {
        transform: translateY(-10px) rotate(5deg);
    }

    50% {
        transform: translateY(0) rotate(0deg);
    }

    75% {
        transform: translateY(10px) rotate(-5deg);
    }
}

/* Footer content styling */
.footer-content {
    position: relative;
    z-index: 2;
}

.footer-columns {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-logo img {
    max-width: 180px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.footer-title {
    color: #d4a656;
    font-size: 27px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: #d4a656;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #5a4a42;
    text-decoration: none;
    transition: color 0.3s;
    display: inline-block;
    position: relative;
}

.footer-links a:hover {
    color: #d4a656;
}

.footer-links a::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #d4a656;
    transition: width 0.3s;
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-contact {
    list-style: none;
    padding: 0;
    width: 23rem;
    margin: 0;
}

.footer-contact li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    align-items: baseline;
}

.footer-contact i {
    color: #d4a656;
    margin-top: 3px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #d4a656;
    color: white;
    border-radius: 50%;
    transition: all 0.3s;
}

.social-icon:hover {
    background: #be7651;
    transform: translateY(-3px);
    color: #fff;
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(212, 166, 86, 0.3);
    text-align: center;
    color: #5a4a42;
    font-size: 14px;
}

/* Honeycomb pattern overlay */

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer-column {
        min-width: 100%;
    }

    #qodef-page-footer::before,
    #qodef-page-footer::after {
        display: none;
    }
}

.header-navigation ul li.menu-item-has-children:hover>ul.sub-menu {
    display: block;
}

.header-navigation ul li.menu-item-has-children ul.sub-menu {
    width: 10px;
}

.header-navigation ul li.menu-item-has-children ul.sub-menu {
    display: none;
    position: absolute;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    min-width: 124px;
    padding: 10px 0;
}

.header-navigation ul li.menu-item-has-children ul.sub-menu li {
    padding: 5px 15px;
    position: relative;
}

.header-navigation ul li.menu-item-has-children ul.sub-menu li a {
    color: #333;
    text-decoration: none;
    display: block;
}

.header-navigation ul li.menu-item-has-children ul.sub-menu li.menu-item-has-children ul.sub-menu {
    left: 100%;
    top: 0;
}

.header-navigation ul li.menu-item-has-children ul.sub-menu li.menu-item-has-children:hover>ul.sub-menu {
    display: block;
}

.header-navigation ul li.menu-item-has-children ul.sub-menu li {
    height: 50px;
    line-height: 40px;
    width: 100%;
    padding: 0;
}

.header-navigation ul li.menu-item-has-children ul.sub-menu li.menu-item-has-children ul.sub-menu {
    width: 200px;
}

.aboutt {
    background-image: url("./image/banner-featured.png");
    background-position: center center;
    background-color: #fff;
    position: relative;
    overflow: hidden;
    margin-top: 7%;
    padding: 80px 0;
    background-repeat: no-repeat;
}

.about-section {
    background-image: url("./image/banner-featured.png");
    background-position: center center;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.elementor-heading-title {
    font-size: 18px;
    color: #eb6d2f !important;
    text-transform: capitalize !important;
    line-height: 1;
    margin: 0;
    padding: 0;
}

.about-title {
    font-size: 2rem !important;
    color: #D4A017 !important;
    font-weight: 700 !important;
    text-align: center !important;
    line-height: 1.2 !important;
    font-family: 'Playfair Display', serif !important;
    text-transform: uppercase;
}

.qodef-m-title {
    font-family: "Signika", sans-serif !important;
    text-transform: capitalize;
    font-weight: 700;
    font-size: 2.5rem;
}

.qodef-m-titles {
    font-family: "Signika", sans-serif !important;
    text-transform: capitalize;
    font-weight: 700;
    font-size: 2.5rem;
}

.about-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 120px;
    z-index: 0;
}

.ws-about-content {
    position: relative;
    z-index: 2;
    padding: 40px;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(212, 160, 23, 0.1);
    border: 1px solid rgba(255, 196, 57, 0.3);
}

.ws-about-title {
    font-family: 'Playfair Display', serif;
    color: #8B6E3D;
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
    text-align: center;
    display: inline-block;
}

.ws-about-title::after {
    content: "";
    position: absolute;
    bottom: 16px;
    left: 49%;
    top: 2.7rem;
    transform: translateX(-50%);
    width: 10rem;
    height: 3px;
    background: #FFC439;
    border-radius: 3px;
}

.ws-about-title span {
    color: #D4A017;
    font-weight: 700;
}

.ws-about-img img {
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(139, 110, 61, 0.2);
    transform: rotate(-3deg);
    transition: all 0.5s ease;
    margin-top: 18%;
    border: 8px solid white;
}

.ws-about-img:hover img {
    transform: rotate(0deg) scale(1.03);
}

.ws-about-list {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    border: 1px dashed #D4A017;
}

.elementor-icon-list-items li {
    margin-bottom: 15px !important;
    padding: 10px 15px !important;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.elementor-icon-list-items li:hover {
    transform: translateX(5px);
    background: white;
    box-shadow: 0 5px 15px rgba(212, 160, 23, 0.1);
}

.elementor-icon-list-icon {
    color: #D4A017;
    font-size: 1.2rem;
}

.elementor-icon-list-text b {
    color: #D4A017;
}

.elementor-button {
    background: linear-gradient(135deg, #FFC439, #D4A017);
    color: white !important;
    border: none !important;
    border-radius: 50px !important;
    padding: 12px 30px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
}

.elementor-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 160, 23, 0.3);
}

/*Responsive Adjustments */
@media (max-width: 768px) {
    .about-section {
        padding: 60px 30px;
    }

    .ws-about-content,
    .ws-about-list {
        padding: 20px;
    }

    .ws-about-title {
        font-size: 2rem;
    }

    .about-title {
        font-size: 2rem !important;
        color: #D4A017 !important;
        font-weight: 700 !important;
        text-align: center !important;
        line-height: 1.2 !important;
        font-family: 'Playfair Display', serif !important;
        text-transform: uppercase;
    }
}

.produce-honey-section {
    background-image: url(./image/banner-featured.png);
    background-position: bottom center;
    background-repeat: no-repeat;
    background-color: #fff !important;
    padding: 4rem 0;
}

.produce-honey-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.produce-honey-title {
    text-align: center;
    font-size: 2.5rem;
    color: #5d4037;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.produce-honey-title:after {
    content: '';
    position: absolute;
    width: 60%;
    height: 4px;
    background: #ffab00;
    bottom: -10px;
    left: 20%;
    border-radius: 2px;
}

.produce-honey-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #8d6e63;
    margin-bottom: 3rem;
    font-style: italic;
}

/* Content Layout */
.produce-honey-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 992px) {
    .produce-honey-content {
        flex-direction: row;
        align-items: stretch;
    }
}

/* Video Section */
.produce-honey-video {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    flex: 1;
    transition: transform 0.3s ease;
}

.produce-honey-video:hover {
    transform: translateY(-5px);
}

.produce-honey-video img {
    width: 100%;
    height: auto;
    display: block;
    transition: filter 0.3s ease;
}

.produce-honey-video:hover img {
    filter: brightness(1.05);
}

.produce-honey-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 215, 64, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.produce-honey-play-btn:hover {
    background: rgba(255, 171, 0, 0.9);
    transform: translate(-50%, -50%) scale(1.1);
}

.produce-honey-video-img {
    color: white;
    font-size: 2rem;
    margin-left: 5px;
}

/* Text Section */
.produce-honey-text {
    flex: 1;
    display: flex;
    align-items: center;
}

.produce-honey-text-content {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.produce-honey-text-content:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, #ffd700, #ffab00);
}

.produce-honey-text-title {
    font-size: 1.8rem;
    color: #5d4037;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.produce-honey-text-title span {
    color: #ffab00;
    font-weight: 600;
}

.produce-honey-text-desc {
    color: #6d4c41;
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 0;
}

.produce-honey-video {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.produce-honey-video video {
    width: 100%;
    height: auto;
    display: block;
}

/* Modal styles */
.honey-video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.honey-video-modal-content {
    width: 48%;
    max-width: 360px;
    position: relative;
    /* background: #000; */
    padding: 20px;
    border-radius: 5px;
}

.honey-video-modal-content video {
    width: 100% !important;
    height: 34rem !important;
    display: block;
}

.close-modal {
    color: white !important;
    font-size: 30px !important;
    cursor: pointer !important;
    background: #000 !important;
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 2px solid #fff !important;
    z-index: 100 !important;
}

.close-modals {
    position: absolute !important;
    top: -15px !important;
    right: -15px !important;
    color: white !important;
    font-size: 30px !important;
    cursor: pointer !important;
    background: #000 !important;
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 2px solid #fff !important;
    z-index: 100 !important;
}

.close-modal:hover {
    background: #333 !important;
}

@media (max-width: 768px) {
    .honey-video-modal-content {
        width: 95%;
        padding: 10px;
    }

    .close-modal {
        top: -10px;
        right: -10px;
        width: 30px;
        height: 30px;
        font-size: 20px;
    }
}

.organic-honey-choose {
    padding: 80px 0;
    background-color: #fff9f0;
    position: relative;
}

.organic-honey-choose .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.choose-header {
    text-align: center;
    margin-bottom: 60px;
}

.choose-header .subtitle {
    display: block;
    font-size: 18px;
    color: #e8a838;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.choose-header h2 {
    font-size: 36px;
    color: #2c2c2c;
    margin-bottom: 20px;
    line-height: 1.3;
}

.choose-header h2 span {
    color: #e8a838;
    font-weight: 700;
}

.choose-header .intro-text {
    max-width: 700px;
    margin: 0 auto;
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}

.choose-features {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.honey-image {
    flex: 1;
    text-align: center;
    padding: 0 30px;
}

.honey-image img {
    max-width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    animation: imgfloat 3s ease-in-out infinite;
}

.feature-card {
    display: flex;
    align-items: center;
    background: white;
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 23rem;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    margin-right: 13px !important;
    min-width: 56px !important;
    height: 56px !important;
    /* background: #fdefd8; */
    border-radius: 50%;
    display: flex;
    border: 3px solid;
    align-items: center;
    justify-content: center;
    font-size: 36px !important;
    margin-top: 9px;
    display: flex;
    align-items: center;
}

.feature-icon img {
    width: 54px;
    height: 105px !important;
}

.feature-content {
    margin-top: -14px;
}

.feature-content h3 {
    font-size: 20px;
    color: #2c2c2c;
    margin-bottom: 10px;
}

.feature-content p {
    color: #666;
    font-size: 15px;
    line-height: 1.5;
    margin: 0;
}

@keyframes imgfloat {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

@media (max-width: 992px) {
    .choose-features {
        flex-direction: column;
        margin-left: 15px;
        gap: 29px;
    }

    .feature-column {
        width: 100%;
        max-width: 500px;
    }

    .honey-image {
        margin-bottom: -19rem;
        visibility: hidden;
    }

    .qodef-mobile-header-navigation ul li.menu-item-has-children>a:after {
        display: none;
    }
}

.book-table {
    overflow: hidden;
    padding: 80px 0;
}

.book-table-shape img {
    position: absolute;
    top: -10px;
    right: 73%;
    width: 540px;
}

.book-table-shape.book-table-shape2 img {
    left: 74%;
    transform: scale(-1, 1);
}

.book-table-img-slider {
    width: 34%;
    height: auto;
    margin-left: 32%;
}

.book-table-img {
    display: block;
    width: 100%;
    height: 100%;
    background-size: contain;
    background-position: center;
}

.swiper-button {
    color: white;
    background: rgba(0, 0, 0, 0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}


.book-table-img {
    height: 70vh;
    min-height: 500px;
    /* border-radius: 50px; */
}

.back-img {
    background-position: center;
    background-size: fill;
    background-repeat: repeat-y;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    display: none;
}

.swiper-button-wp {
    position: relative;
    margin-top: 60px;
    display: flex;
    justify-content: space-between;
    height: 60px;
    align-items: center;
}

.swiper-button-next,
.swiper-button-prev {
    position: unset;
    width: 60px;
    height: 60px;
    display: inline-flex;
    font-size: 30px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0;
    color: #0d0d25;
    background: #ffffff;
    box-shadow: -20px 20px 60px #d4d4d4, 20px -20px 60px #ffffff;
    padding-top: 1px;
    padding-right: 2px;
    transition: 0.3s;
}

.swiper-button-next {
    box-shadow: 20px 20px 60px #d4d4d4, -20px -20px 60px #ffffff;
    padding-left: 3px;
}

.swiper-button-prev:hover {
    box-shadow: inset 5px 5px 20px #d4d4d4, inset -5px -5px 20px #ffffff;
    color: #fcbc30;
}

.swiper-button-next:hover {
    box-shadow: inset -5px 5px 20px #d4d4d4, inset 5px -5px 20px #ffffff;
    color: #fcbc30;
}

.swiper-pagination {
    padding: 10px 20px;
    display: inline-block;
    border-radius: 60px;
    background: linear-gradient(145deg, #ececec, #ffffff);
    box-shadow: 25px 28px 55px #d4d4d4, -28px -28px 55px #ffffff;
    max-width: fit-content;
    left: 50% !important;
    transform: translate(-50%, 0);
    bottom: 0 !important;
    color: #000;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0px 10px !important;
    border-radius: 10px;
    transition: 0.8s cubic-bezier(0.22, 0.78, 0.45, 1.02);
}

.swiper-pagination-bullet-active {
    background: #fcbc30;
    width: 30px;
}

@media (max-width: 768px) {
    .book-table-img-slider {
        width: 81%;
        height: 400px;
        margin-left: 12% !important;

    }

    .book-table-img {
        height: 100% !important;
        background-repeat: no-repeat;
    }

    .book-table {
        padding: 60px 0 !important;
        margin-top: -41%;
        margin-bottom: 6%;
    }

    .book-table-shape img {
        right: 50%;
        transform: translateX(50%);
    }

    .feature-section {
        padding: 80px 0 !important;
        height: 102rem !important;
    }

    .elementor-heading-title {
        font-size: 15px !important;
        color: #eb6d2f !important;
        text-transform: capitalize !important;
        line-height: 1 !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .elementor-widget-image-box .elementor-image-box-wrapper {
        height: 100% !important;
        margin-bottom: 18% !important;
    }

    .elementor-image-box-title {
        margin-top: -11px !important;
    }

    .footer-content {
        padding: 20px !important;
        right: 57px;
        top: -55px;
        margin-bottom: -22%;
    }

    .footer-columns {
        gap: 0px !important;
        margin-bottom: -16%;
    }

    .cart-container {
        width: 21rem;
        margin-top: -2rem !important;
        margin-bottom: -54px !important;
    }

    .cart-count {
        top: -14px !important;
        right: 38% !important;
    }

    .checkout-column {
        margin-top: -4rem !important;
    }

    .checkout-columns {
        margin-top: -2rem;
    }

    .heading {
        font-size: 3.2rem !important;
        margin-left: 10px !important;
    }

    .qodef-m-title {
        margin-top: 1rem !important;
    }

    .qodef-m-titles {
        margin-top: -7rem !important;
    }

    .aboutt {
        padding: 80px 25px !important;
    }

    .variation-option {
        padding: 5px 11px !important;
    }

    .elementor-heading-title h2 span {
        font-size: 1.2rem !important;
        color: #e8a838 !important;
        font-weight: 700 !important;
    }

    .menus {
        width: 14rem !important;
        background-color: rgba(33, 37, 41, 0.03);
        border-left: none !important;
        margin-left: 0rem !important;
        border-radius: 10px;
    }

    .subb {
        background-color: rgba(33, 37, 41, 0.03);
        border-left: none !important;
        border-radius: 10px;
        margin-bottom: 10px !important;
        width: 16.5rem;
        margin-left: -1% !important;
    }

    .shop {
        margin-left: 6% !important;
    }

    .gifting {
        margin-left: -6% !important;
    }

    .mobile-nav-active .navmenu {
        position: fixed !important;
        overflow: hidden !important;
        inset: 0 !important;
        background: rgba(33, 37, 41, 0.8) !important;
        transition: 0.3s !important;
        width: 28rem !important;
        margin-left: -7px !important;
    }

    .product-image {
        width: 38rem !important;
        max-width: 32rem !important;
        object-fit: contain !important;
        margin-top: -10rem;
        max-height: 700% !important;
        margin-bottom: -11rem !important;
    }

    .product-container {
        width: 100% !important;
        margin-left: -6% !important;
        padding: 0 !important;
    }

    .product-info {
        display: flex;
        align-items: baseline;
        justify-content: space-around;
    }
}

/* Back to Top Button Styles */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 8px;
    width: 50px;
    height: 50px;
    background-image: linear-gradient(45deg, #874da2 0%, #c43a30 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 999;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--honey-dark);
    transform: translateY(-3px);
}

/* New Gifting Section Styles */
.gifting-section {
    background-color: #fff9f0;
    padding: 3% 0;
    position: relative;
    overflow: hidden;
}

.gifting-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('image/honeycomb-pattern.png');
    opacity: 0.05;
    z-index: 0;
}

.gifting-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.gifting-header h2 {
    font-size: 42px;
    color: #d4a017;
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.gifting-header p {
    font-size: 18px;
    color: #5a4a42;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.gifting-products {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.gift-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    width: 350px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.gift-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.gift-ribbon {
    position: absolute;
    top: 15px;
    right: -30px;
    background: #d4a017;
    color: white;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-weight: 600;
    font-size: 14px;
    z-index: 2;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.gift-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.gift-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gift-item:hover .gift-image img {
    transform: scale(1.05);
}

.gift-details {
    padding: 25px;
    text-align: center;
}

.gift-title {
    font-size: 22px;
    color: #333;
    margin-bottom: 10px;
    font-weight: 600;
}

.gift-description {
    color: #666;
    font-size: 15px;
    margin-bottom: 20px;
    line-height: 1.5;
}

.gift-price {
    font-size: 24px;
    color: #d4a017;
    font-weight: 700;
    margin-bottom: 20px;
}

.gift-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.gift-button {
    padding: 12px 25px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.add-to-cart {
    background: #d4a017;
    color: white;
}

.add-to-cart:hover {
    background: #b88c14;
}

.wishlist {
    background: white;
    color: #333;
    border: 1px solid #ddd;
}

.wishlist:hover {
    background: #f5f5f5;
}

.gift-icon {
    font-size: 16px;
}

/* Custom Gift Box Styles */
.premium-gift {
    border: 2px solid #d4a017;
}

.premium-gift .gift-ribbon {
    background: #8b4513;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .gifting-products {
        gap: 20px;
    }

    .gift-item {
        width: 300px;
    }
}

@media (max-width: 768px) {
    .gifting-header h2 {
        font-size: 32px;
    }

    .gift-item {
        width: 100%;
        max-width: 400px;
    }
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Mobile Header Styles */
.mobile-header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Mobile Menu Styles */
.qodef-mobile-header-navigation {
    background: #fff;
    width: 20rem !important;
    margin-left: 13% !important;

    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.qodef-mobile-header-navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.qodef-mobile-header-navigation li {
    position: relative;
}

.qodef-mobile-header-navigation li:last-child {
    border-bottom: none;
}

.qodef-mobile-header-navigation a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
    color: #333;
    text-decoration: none;
    font-weight: 500;
}

.qodef-mobile-header-navigation .sub-menu {
    display: none;
    padding-left: 15px;
}

.qodef-mobile-header-navigation .sub-menu a {
    padding: 10px 0;
    color: #666;
}

.qodef-mobile-header-navigation .menu-item-has-children.active>.sub-menu {
    display: block;
}

.qodef-mobile-header-navigation .mobile-menu-toggle i {
    transition: transform 0.3s ease;
}

.qodef-mobile-header-navigation .menu-item-has-children.active .mobile-menu-toggle i {
    transform: rotate(180deg);
}

/* Mobile header actions */
.mobile-header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 10px 15px;
}

.mobile-header-actions a {
    color: #333;
    font-size: 18px;
}

.account-container.active .account-dropdown {
    display: block;
}


#blur-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(8px);
    background-color: rgba(255, 255, 255, 0.2);
    /* Optional: light tint */
    z-index: 10;
    display: none;
    /* Hidden by default */
}

/* Ensure mobile nav appears above blur */
.qodef-page-mobile-header,
.qodef-mobile-header-navigation {
    position: relative;
    z-index: 20;
}

/* Natural Honeycomb Background Pattern */
body {
    background-color: #f8f5f0;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(255, 235, 205, 0.3) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(255, 235, 205, 0.3) 0%, transparent 20%),
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="none" stroke="%23d4a656" stroke-width="0.5" stroke-opacity="0.1" d="M50 0 L100 25 L100 75 L50 100 L0 75 L0 25 Z" transform="rotate(90 50 50)"/></svg>');
    background-size: 150px 130px;
    background-attachment: fixed;
}

/* Golden Accent Borders */
.product-container {
    position: relative;
    overflow: hidden;
    border: none !important;
}

.product-container:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f8de7e, #d4a656, #f8de7e);
}

/* Honey Drip Effect */
.product-image-container {
    position: relative;
}

.product-image-container:after {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path fill="%23d4a656" d="M50 0 Q60 20 50 40 Q40 60 50 80 Q60 100 50 100 Q40 100 50 80 Q60 60 50 40 Q40 20 50 0 Z" opacity="0.1"/></svg>') no-repeat;
    background-size: contain;
}

.containers {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0px 15px;
    margin-left: 11%;
}

/* Bee Icon Decorations */
.product-details:before {
    content: "";
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path fill="%23d4a656" d="M50 10 Q70 20 70 40 Q70 60 50 70 Q30 60 30 40 Q30 20 50 10 Z M40 40 Q50 30 60 40 Q50 50 40 40 Z" opacity="0.2"/></svg>') no-repeat;
    background-size: contain;
    z-index: 0;
}

/* Golden Highlight on Hover */
.variation-option:hover {
    box-shadow: 0 0 0 2px #d4a656;
}

/* Honeycomb Button Effect */
.add-to-cart,
.buy-now {
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
    width: 44% !important;
}

.add-to-cart:before,
.buy-now:before {
    content: "";
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="none" stroke="white" stroke-width="2" stroke-opacity="0.2" d="M50 0 L100 25 L100 75 L50 100 L0 75 L0 25 Z" transform="rotate(90 50 50)"/></svg>');
    background-size: 30px 26px;
    opacity: 0;
    transition: opacity 0.3s;
}

.add-to-cart:hover:before,
.buy-now:hover:before {
    opacity: 1;
}

/* Animated Golden Particles */
@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    100% {
        transform: translateY(-20px) rotate(360deg);
    }
}

.product-section:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 20% 30%, rgba(212, 166, 86, 0.3) 0%, transparent 5%),
        radial-gradient(circle at 80% 70%, rgba(212, 166, 86, 0.3) 0%, transparent 5%);
    z-index: -1;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .product-container:before {
        height: 3px;
    }

    .product-details:before {
        width: 30px;
        height: 30px;
    }

    .containers {
        max-width: 1200px;
        margin: -30px auto;
        padding: 0px 30px;
    }

    .gift-details-title:after {
        left: 10px !important;
        width: 57% !important;
    }
}

/* Updated Gift Details Page Styles */
.gift-details-page {
    display: none;
    padding: 48px 0;
    background-image: url('image/background\ image.png');
    background-repeat: no-repeat;
    font-family: 'Open Sans', sans-serif;
}

.gift-details-container {
    max-width: 1200px;
    margin: -3% auto;
    display: flex;
    flex-wrap: wrap;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(139, 115, 85, 0.1);
    overflow: hidden;
    padding: 0;
}

.gift-details-image {
    flex: 1;
    min-width: 300px;
    background: #f5f0e9;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.gift-details-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.gift-details-image img:hover {
    transform: scale(1.02);
}

.gift-details-content {
    flex: 1;
    min-width: 300px;
    padding: 40px;
    position: relative;
    margin-bottom: -6%;
}

.gift-details-title {
    font-size: 30px;
    color: #2a2118;
    font-weight: 700;
    position: relative;
    margin-top: 4px;
    padding-bottom: 15px;
}

.gift-details-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 27%;
    width: 50%;
    height: 3px;
    background: #8b7355;
}

.gift-details-price {
    font-size: 28px;
    color: #8b7355;
    font-weight: bold;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
}

.gift-details-price:before {
    margin-right: 5px;
    font-size: 24px;
}

.gift-details-description {
    margin-bottom: 30px;
    line-height: 1.8;
    color: #5a5a5a;
    font-size: 16px;
}

/* Updated Feature Styles */
#gift-detail-features {
    margin-bottom: 25px;
}

.gift-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
}

.gift-feature-item i {
    color: #8b7355;
    width: 20px;
    text-align: center;
}

.gift-feature-item span {
    color: #555;
}

.no-features {
    color: #999;
    font-style: italic;
}

.gift-details-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.gift-details-button {
    padding: 15px 30px;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.gift-details-button.add-to-cart {
    background-color: #8b7355;
    color: white;
}

.gift-details-button.add-to-cart:hover {
    background-color: #6d5a43;
    transform: translateY(-2px);
}

.gift-details-button.buy-now {
    background-color: #2a2118;
    color: white;
}

.gift-details-button.buy-now:hover {
    background-color: #1a1611;
    transform: translateY(-2px);
}

.related-gifts {
    margin-top: -7px;
    width: 100%;
    padding-top: 40px;
}

.related-gifts h3 {
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
    color: #2a2118;
    position: relative;
    padding-bottom: 15px;
}

.related-gifts h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #8b7355;
}

.related-gifts-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.related-gift-item {
    width: calc(33.333% - 20px);
    min-width: 250px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.related-gift-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(139, 115, 85, 0.15);
}

.related-gift-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 15px;
    transition: transform 0.5s;
}

.related-gift-item:hover img {
    transform: scale(1.05);
}

.related-gift-item h4 {
    margin-bottom: 10px;
    font-size: 18px;
    color: #2a2118;
    padding: 0 15px;
}

.related-gift-item .price {
    color: #8b7355;
    font-weight: bold;
    padding-bottom: 20px;
    display: block;
}

/* Responsive styles */
@media (max-width: 992px) {
    .gift-details-container {
        flex-direction: column;
    }

    .gift-details-image {
        padding: 30px;
    }

    .gift-details-content {
        padding: 30px;
    }

    .related-gift-item {
        width: calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .gift-details-title {
        font-size: 28px;
    }

    .gift-details-price {
        font-size: 24px;
    }

    .gift-details-actions {
        flex-direction: column;
    }

    .gift-details-button {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .related-gift-item {
        width: 100%;
    }

    .gift-details-title {
        font-size: 24px;
    }
}

/* Updated Product Container Styles */
.product-section {
    padding: 60px 0;
    /* background-color: #f8f5f0; */
    background-image: url("./image/background\ image.png");
    background-repeat: no-repeat;
    /* Light beige background */
}

.product-info {
    display: flex;
    padding: 20px;
    height: 13%;
    margin-bottom: 19px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    align-items: baseline;
    justify-content: space-between;
}

.product-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 3px solid #eae0d5 !important;
}

.product-image-container {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #faf7f2;
    border: 3px solid #eae0d5;
}

.product-image {
    height: 42rem !important;
    width: 96%;
    max-height: 557px;
    object-fit: none;
    transition: transform 0.3s ease;
    border-radius: 8px;
}

.product-image:hover {
    transform: scale(1.02);
}

.product-title {
    font-size: 28px;
    margin-top: 12px;
    margin-bottom: 15px;
    color: #2c2723;
    font-family: 'Playfair Display', serif !important;
    font-weight: 700;
}

.product-price {
    font-size: 28px;
    font-weight: bold;
    color: #d4a656;
    margin-bottom: 25px;
    display: inline-block;
    background: #f8f5f0;
    padding: 8px 15px;
    border-radius: 6px;
}

.product-variations {
    margin-bottom: 10px;
    display: flex;
    /* padding-bottom: 10px; */
    align-items: baseline;
}

.variation-title {
    font-weight: 600;
    margin-bottom: 15px;
    display: block;
    color: #5a534a;
    font-size: 21px;
    margin-right: 15px;
    font-family: 'Playfair Display', serif !important;
}

.variation-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.variation-option {
    padding: 10px 20px;
    border: 1px solid #ddd;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
    background: #f9f9f9;
}

.variation-option:hover {
    border-color: #d4a656;
    background: #f8f5f0;
}

.variation-option.selected {
    background-color: #d4a656;
    color: white;
    border-color: #d4a656;
    font-weight: 500;
}

.quantity-selector {
    display: flex;
    align-items: baseline;
    margin-bottom: 15px;
}

.quantity-btn {
    width: 40px;
    height: 40px;
    background: #f5f5f5;
    border: 1px solid #ddd;
    font-size: 16px;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s;
}

.quantity-btn:hover {
    background: #eae0d5;
}

.action-buttons {
    display: flex;
    gap: 25px;
    margin-left: 24px;
    margin-bottom: 30px;
}

.add-to-cart {
    background-color: #d4a656;
    color: white;
}

.add-to-cart:hover {
    background-color: #c2954a;
    transform: translateY(-2px);
}

.buy-now {
    background-color: #2c2723;
    color: white;
}

.buy-now:hover {
    background-color: #1a1612;
    transform: translateY(-2px);
}

.product-description {
    margin-bottom: 30px;
    line-height: 1.8;
    color: #5a534a;
    font-size: 15px;
    font-family: math;
}

.product-features {
    margin-bottom: 30px;
    display: flex;
}

/* .feature-icon {
            margin-right: 15px;
            color: #d4a656;
            font-size: 50px;
            margin-top: 9px;
            display: flex;
            align-items: center;
        } */

.feature-item span {
    color: #5a534a;
    font-size: 15px;
}

/* Honeycomb decoration */
.product-details:before {
    content: "";
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-size: contain;
    opacity: 0.3;
    z-index: 0;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .product-container {
        flex-direction: column;
        max-width: 600px;
    }

    .product-image-container {
        max-width: 100%;
        padding: 30px;
    }

    .product-details {
        padding: 30px;
    }

    .product-title {
        font-size: 28px;
    }

    .product-price {
        font-size: 24px;
    }

    .qodef-mobile-header-navigation {
        margin-left: 10% !important;
        top: 9rem !important;
    }
}

@media (max-width: 576px) {
    .product-section {
        padding: 30px 0;
    }

    .product-image-container,
    .product-details {
        padding: 20px;
    }

    .action-buttons {
        flex-direction: column;
    }

    .add-to-cart,
    .buy-now {
        width: 100% !important;
        margin-left: -13px;
    }

    .product-title {
        font-size: 24px;
    }

    .product-price {
        font-size: 20px;
    }
}

.payment-details {
    background-color: #fff8e1;
    padding: 15px;
    margin: 15px 25%;
    width: 52%;
    border-radius: 5px;
    border: 1px solid var(--honey-border);
}

.payment-details p {
    margin: 5px 0;
}

#payment-amount-display {
    font-weight: bold;
    color: var(--honey-dark);
}

#transaction-id {
    margin-top: 5px;
    width: 50%;
    margin-left: 24%;
}

#payment-proof {
    margin-top: 5px;
    border-radius: 4px;
    border: 1px solid;
    width: 50%;
    margin-left: 24%;
}



@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@media only screen and (max-width: 767px) {
    .hero-section-mobile {
        background-image: url('image/background.png') !important;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        margin-bottom: -5rem;
    }

    /* Optional: Make sure the slider background doesn't conflict */
    .hero-section-mobile .wp-block-themepunch-revslider,
    .hero-section-mobile rs-module-wrap {
        background: transparent !important;
    }
}

/* Hide elements on small screens (mobile devices) */
@media only screen and (max-width: 767px) {

    /* Hide "Amrut Honey" heading */
    #slider-1-slide-1-layer-7 {
        display: none !important;
    }

    /* Hide "View More" button */
    #slider-1-slide-1-layer-10 {
        display: none !important;
    }

    .leaf {
        display: none !important;
    }

    .gifting-section {
        padding: 17px 25px;

    }
}

@media (max-width: 768px) {
    .gift-details-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        /* This centers the content horizontally */
        /* text-align: center; */
        /* This centers the text */
    }

    .quantity-selectors {
        gap: 14px;
    }

    .gift-details-image {
        width: 100%;
        max-width: 400px;
        /* Limits the image width on mobile */
        margin: 0 auto;
        /* Centers the image container */
    }

    .gift-details-content {
        width: 100%;
        max-width: 400px;
        /* Matches the image width */
        margin: 20px auto 0;
        /* Centers the content and adds space above */
    }

    .gift-details-actions {
        justify-content: center;
        /* Centers the action buttons */
    }

    .related-gifts-container {
        justify-content: center;
        /* Centers the related gifts */
    }
}

/* Mobile Menu Dropdown Arrows */
.qodef-mobile-header-navigation .menu-item-has-children>a,
.qodef-mobile-header-navigation .menu-item-has-children>.mobile-menu-toggle {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.qodef-mobile-header-navigation .menu-item-has-children>a .dropdown-arrow,
.qodef-mobile-header-navigation .menu-item-has-children>.mobile-menu-toggle .dropdown-arrow {
    margin-left: 8px;
    transition: transform 0.3s ease;
    pointer-events: none;
    /* Make the arrow non-clickable */
}

.qodef-mobile-header-navigation .menu-item-has-children.active>a .dropdown-arrow,
.qodef-mobile-header-navigation .menu-item-has-children.active>.mobile-menu-toggle .dropdown-arrow {
    transform: rotate(180deg);
}

/* Ensure sub-menus are hidden by default */
.qodef-mobile-header-navigation .sub-menu {
    display: none;
    padding-left: 15px;
}

/* Show sub-menus when active */
.qodef-mobile-header-navigation .menu-item-has-children.active>.sub-menu {
    display: block;
}

/* Make the toggle button */
.mobile-menu-toggle-btn {
    background: none;
    border: none;
    padding: 0 14px;
    cursor: pointer;
}

/* Specific style for the Products dropdown arrow */
.qodef-mobile-header-navigation .menu-item-has-children .subb .menu-item-has-children>a .dropdown-arrow,
.qodef-mobile-header-navigation .menu-item-has-children .subb .menu-item-has-children>.mobile-menu-toggle .dropdown-arrow {
    transform: rotate(0deg);
    transition: transform 0.3s ease;
}

.qodef-mobile-header-navigation .menu-item-has-children .subb .menu-item-has-children.active>a .dropdown-arrow,
.qodef-mobile-header-navigation .menu-item-has-children .subb .menu-item-has-children.active>.mobile-menu-toggle .dropdown-arrow {
    transform: rotate(180deg);
}

.toggle-drop {
    padding: 8px;
    border-radius: 15px;
    color: white;
    background-color: #D4A017;
}

/* Search Bar Styles */
.header-search {
    position: relative;
    margin-left: 20px;
}

.search-input {
    width: 100% !important;
    height: 50px !important;
    outline: none !important;
    padding: 10px 15px !important;
    color: #0d0d25 !important;
    --webkit-appearance: none !important;
    border-radius: 10px !important;
    border: none !important;
    background: #f8f8f8 !important;
    border-radius: 30px !important;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
}

.search-results {
    position: absolute;
    top: 115%;
    left: 14px;
    /* width: 100%; */
    background: white;
    /* border: 1px solid #ddd; */
    border-radius: 0 0 5px 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
    padding: -6px 15px !important;
    color: #0d0d25 !important;
    --webkit-appearance: none !important;
    border-radius: 10px !important;
    /* border: none !important; */
    /* background: #f8f8f8 !important; */
}

.search-results ul {
    list-style: none;
    padding: 0;
    margin: 0 !important;
}

.search-results li {
    padding: 10px 15px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
}

.search-results li:last-child {
    border-bottom: none;
}

.search-results li:hover {
    background-color: #f9f9f9;
    color: #c43a30;
    border-radius: 10px;
}

.search-button {
    position: absolute !important;
    right: 10px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    background: none !important;
    border: none !important;
    cursor: pointer !important;
    /* color: #874da2; */
    font-size: 18px;
}

@media (max-width: 1024px) {
    .header-search {
        display: none;
    }

    .mobile-search {
        display: block !important;
    }
}

/* Mobile Search Styles */
@media only screen and (max-width: 768px) {
    .mobile-search {
        position: relative;
        display: flex;
        align-items: center;
    }

    .header {
        border-bottom: 2px solid #d4a656
    }

    .mobile-search .search-input {
        display: none;
        width: 159px !important;
        position: absolute;
        right: 71px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 100;
        border-radius: 30px !important;
        box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
    }

    .mobile-search.active .search-input {
        display: block;
    }

    .mobile-search .search-button {
        position: relative;
        z-index: 101;
    }

    .mobile-search .search-results {
        top: 50px;
        right: 96%;
        left: auto;
        width: 171px;
    }

    .search-button {
        right: 71px !important;
        font-size: 18px;
    }

    .honey-header {
        margin-top: -11rem;
    }

    .honey-container {
        margin-bottom: -32% !important;
    }

    .drip-2 {
        top: 10px !important;
    }

    /* Search toggle animation */
    .mobile-search-icon {
        cursor: pointer;
        padding: 5px;
    }

    .mobile-search.active .mobile-search-icon {
        color: #ffb300;
    }
}