    @import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

    @import url('https://fonts.cdnfonts.com/css/annabe');

    @font-face {
        font-family: 'Anabae';
        src: url('fonts/Anabae-Bold.woff') format('woff');
        font-weight: bold;
        font-style: normal;
    }

    /* Reset */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        background-color: #F9F2EB;
    }

    a {
        text-decoration: none;
        color: inherit;
        -webkit-tap-highlight-color: transparent;
    }

    a:-webkit-any-link {
        text-decoration: none;
    }

    .expivi-product-container {
        max-width: 1600px;
        margin: 0 auto;
        background-color: #F9F2EB;
    }

    .container {
        max-width: 1840px;
        margin: 0 auto;
        padding: 2rem 1rem;
        background-color: #ffffff;
    }

    html .v-application .primary {
        background-color: #f08050 !important;
    }

    html .v-btn.image-library-btn {
        background-color: #f08050;
        color: #ffffff;
        border: 1px solid #f08050;
    }

    html .v-btn.image-library-btn:hover {
        background-color: #d96a42;
        color: #ffffff;
        border: 1px solid #d96a42;
    }

    html .step-btn.step-btn-next {
        background-color: unset !important;
        color: #f08050 !important;
        border-radius: 5px;
    }

    /* AR item visible on mobile only */

    @media only screen and (min-width: 1119px) {

        #xpv-toolbar-item-web-ar {
            display: none !important;
        }
    }

    /* Header */
    .header {
        width: 100%;
        padding: 0.75rem 2rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        background-color: transparent;
    }

    .logo {
        display: flex;
        align-items: center;
        text-decoration: none;
    }

    .logo img {
        width: 100%;
        height: 6rem;
        transition: transform 1s ease;
    }

    .logo img:hover {
        cursor: pointer;
        transform: scale(1.05);

    }

    /* Navigation */
    .nav {
        display: flex;
        align-items: center;
        gap: 1rem;
        background-color: #BCDEE6;
        padding: 1rem 2rem;
        border-radius: 2rem;
        font-family: 'Poppins', sans-serif;
        font-weight: 500;
    }

    .nav-link {
        font-size: 1rem;
        color: #412919;
        text-decoration: none;
        position: relative;
        padding: 2px 0;
    }

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 0;
        height: 1px;
        background-color: #2D1810;
        transition: width 0.3s ease;
    }

    .nav-link:hover::after {
        width: 100%;
    }

    /* Dropdown Styles */
    .dropdown {
        position: relative;
        display: inline-block;
    }

    .dropdown-trigger {
        display: flex;
        align-items: center;
        gap: 0.25rem;
        color: #412919;
        font-size: 1rem;
        background: none;
        border: none;
        cursor: pointer;
        padding: 2px 0;
        position: relative;
        font-family: 'Poppins', sans-serif;
        font-weight: 500;
    }

    .dropdown-trigger::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 0;
        height: 1px;
        background-color: #2D1810;
        transition: width 0.3s ease;
    }

    .dropdown-trigger:hover::after {
        width: 100%;
    }


    .dropdown-content::after {
        content: "";
        position: absolute;
        top: -9px;
        right: 230px;
        width: 0;
        height: 0;
        border-left: 12px solid transparent;
        border-right: 12px solid transparent;
        border-bottom: 12px solid white;
        z-index: 999;
    }

    .dropdown-content {
        display: none;
        position: absolute;
        right: -100%;
        top: calc(100% + 1.8rem);
        width: calc((1100px) - (20px) * 2);
        /*width: min(90vw, 1000px);  !* Dynamic width: either 90% of viewport or max 1000px *!*/
        background-color: white;
        border-radius: 0.5rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

    .product-grid-container {
        padding: 30px;
    }


    /* Create an invisible area to prevent dropdown from closing */
    .dropdown::before {
        content: '';
        position: absolute;
        top: 100%;
        left: -50px;
        right: -50px;
        height: 1rem;
        background: transparent;
    }

    .dropdown-content::before {
        content: '';
        position: absolute;
        top: -1rem;
        left: 0;
        right: 0;
        height: 1rem;
        background: transparent;
    }

    /* Show dropdown on hover and maintain visibility */
    .dropdown:hover .dropdown-content,
    .dropdown-content:hover {
        display: block;
        animation: fadeIn 0.2s ease-out forwards;
    }


    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .dropdown-title {
        margin-bottom: 1rem;
        font-size: 1rem;
        color: #412919;
        font-weight: 500;
        transition: transform 0.3s ease;
        display: inline-block;
    }

    .dropdown-title:hover {
        cursor: pointer;
        transform: translate(8px, 0);
    }

    .search-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.78);
        display: none;
        justify-content: center;
        align-items: flex-start;
        padding-top: 100px;
        z-index: 9999;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .search-overlay.active {
        opacity: 1;
        display: flex;
        align-items: center;
    }

    .search-container {
        width: 90%;
        max-width: 80vw;
    }

    .search-box {
        display: flex;
        align-items: center;
        width: 100%;
        position: relative;
        border: 1px solid #90837C;
        border-radius: 4px;
    }

    .search-form__icon--search {
        position: absolute;
        left: 20px;
        width: 24px;
        height: 24px;
        fill: #999;
    }

    .search-box input {
        width: 100%;
        padding: 15px 20px 15px 60px;
        font-size: 24px;
        border: none;
        background: transparent;
        outline: none;
        color: #fff;
    }

    .search-box input::placeholder {
        color: #999;
    }

    .search-close {
        position: absolute;
        right: 5%;
        top: 5%;
        background: none;
        border: none;
        font-size: 32px;
        cursor: pointer;
        color: #fff;
        padding: 0 10px;
    }

    body.search-active {
        overflow: hidden;
    }

    .product-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        column-gap: 2rem;
    }

    .product-card {
        display: flex;
        align-items: center;
        gap: 1rem;
        text-decoration: none;
        color: inherit;
        transition: transform 0.6s ease;
        border-radius: 0.5rem;
    }

    .product-card:hover {
        cursor: pointer;
        transform: translate(8px, 0);
    }

    .product-img-wrapper {
        border-radius: 4px;
        margin-top: auto;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .product-image {
        width: 100px;
        height: 66px;
        object-fit: cover;
        border-radius: 8px;
        margin-top: auto;
    }

    .product-title {
        font-size: 1rem;
        color: #412919;
        font-weight: 500;
        text-align: left;
        font-family: 'Poppins', sans-serif;
    }

    .product-description {
        color: #412919;
        font-size: 15px;
        font-weight: 400;
    }

    .view-all-link {
        display: flex;
        align-items: start;
        justify-content: start;
        gap: 0.5rem;
        width: 100%;
        padding: 1rem 2rem;
        background-color: #412919;
        color: white ! important;
        text-decoration: none;
        border-bottom-left-radius: 0.5rem;
        border-bottom-right-radius: 0.5rem;
        font-size: 1rem;
    }

    .view-all-link span {
        transition: transform 0.6s ease;
        color: white;
    }

    .view-all-link:hover span {
        transform: translate(8px, 0);
    }

    .gift-icon {
        margin-right: 0.7rem;
    }

    /* Icon Buttons */
    .icon-button {
        display: flex;
        align-items: center;
        justify-content: center;
        background: none;
        border: none;
        cursor: pointer;
        color: #2D1810;
        position: relative;
        padding: 0.25rem;
    }

    .icon-button svg {
        width: 20px;
        height: 20px;
    }

    .cart-icon {
        position: relative;
        margin-right: 10px;
        margin-top: 5px;
        width: 25px !important;
        height: 25px !important;
    }

    .cart-count {
        position: absolute;
        right: -6px;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 1.25rem;
        height: 1.25rem;
        background-color: #F08050;
        color: white;
        font-size: 0.75rem;
        border-radius: 50%;
    }

    .hambergurmenu {
        display: none;
        background: transparent;
        border: none;
        cursor: pointer;
    }

    .hamburger {
        width: 40px;
        display: flex;
        gap: 7px;
        flex-direction: column;
        padding: 4px;
    }

    .hambergurmenu svg {
        width: 35px !important;
        height: 35px !important;
    }


    /* Product Styles */
    .product {
        flex: 1;
    }


    .product_title {
        font-size: 1.5rem;
        color: #2D1810;
        margin: 0 0 1rem 0;
        font-weight: 700;
        line-height: 1.2;
        font-family: 'Anabea Local', sans-serif;
    }

    .price {
        display: none;
        font-size: 1.6rem;
        color: #2D1810;
        font-weight: 700;
        margin-left: 4rem;
        font-family: 'Poppins', sans-serif;
    }

    /* Expivi Viewer */
    .viewer-horizontal {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 15px;
        margin-bottom: 30px;
        padding: 2rem;
    }


    .product-viewer-container {
        max-width: 100%;
        width: 100%;
        overflow: visible;
        /* Allow sticky positioning */
        box-sizing: border-box;
        margin: 0 auto;
        padding: 1rem;
        position: relative;
    }

    .expivi_viewer_outer_container {
        position: static;
        /* Neutralize positioning */
        max-width: 100%;
        width: 100%;
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    .expivi_viewer_inner_container {
        position: static;
        /* Neutralize positioning */
        max-width: 100%;
        min-width: 100%;
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    #viewer-container {
        display: block;
        position: sticky;
        /* Enable sticky behavior */
        top: 0;
        /* Stick to the top of the viewport */
        width: 100%;
        height: 500px;
        z-index: 10;
        background: rgba(255, 255, 255, 255);
        /* Debugging background */
    }


    canvas {
        display: block;
        width: 100% !important;
        max-width: 100% !important;
    }



    /* Product Summary */
    .summary {
        padding: 2rem;
        background-color: #ffffff;
        border-radius: 0.5rem;
        display: flex;
        flex-direction: column;
        margin-top: 5.2rem;
        max-width: 500px;
        flex: 0 0 40%;
    }


    .woocommerce-product-details__short-description {
        display: none;
    }

    .bde-tabs__panel {
        padding: 0 !important;
    }

    /* Quantity Input */
    .quantity {
        display: flex;
        align-items: center;
        margin-bottom: 1.5rem;
        max-width: 140px;
        order: 2;
    }

    .quantity input {
        width: 50px;
        height: 40px;
        text-align: center;
        border: 1px solid #e2e8f0;
        border-radius: 0;
        -moz-appearance: textfield;
    }

    .quantity input::-webkit-outer-spin-button,
    .quantity input::-webkit-inner-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }

    .bde-quantity-button {
        width: 60px;
        height: 40px;
        font-size: 25px;
        background: none;
        border: 1px solid #e2e8f0;
        cursor: pointer;
        position: relative;
    }

    .bde-quantity-button:hover {
        background-color: #f7f7f7;
    }

    .bde-quantity-button--dec::before {
        content: "-";
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .bde-quantity-button--inc::before {
        content: "+";
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .cart {
        display: flex;
        flex-direction: column;
    }

    /* Add to Cart Button */
    .single_add_to_cart_button {
        width: auto;
        padding: 1rem 2rem;
        background-color: #452C1F;
        color: white;
        border: none;
        border-radius: 0.5rem;
        font-size: 1rem;
        font-weight: 600;
        cursor: pointer;
        transition: background-color 0.2s;
        order: 2;
        align-self: start;
        font-family: 'Poppins', sans-serif;
    }

    .single_add_to_cart_button:hover {
        background-color: #2D1810;
    }

    .product-price-wrapper {
        display: block;
    }

    .title-rating-price {
        display: flex;
        flex-direction: column;
    }

    .title-rating-price.xpv_price_top p.price {
        text-align: left !important;
        min-height: 30px;
        padding: 0;
    }

    /* Product Meta */
    .product_meta {
        margin-top: 2rem;
        padding-top: 2rem;
        border-top: 1px solid #e2e8f0;
        font-family: 'Poppins', sans-serif;
    }

    .product_meta>span {
        display: block;
        margin-bottom: 0.75rem;
        color: #666;
        font-size: 0.875rem;
    }

    .product_meta a {
        color: #452C1F;
        text-decoration: none;
        transition: color 0.2s;
    }

    .product_meta a:hover {
        color: #2D1810;
    }

    /* Review Tabs */
    .bde-tabs {
        margin-top: 4rem;
    }

    .bde-tabs__tabslist {
        display: flex;
        border-bottom: 1px solid #e2e8f0;
        margin-bottom: 1.5rem;
        font-family: 'Poppins', sans-serif;
    }

    .bde-tabs__tab {
        padding: 1rem 2rem;
        border: none;
        background: none;
        color: #666;
        cursor: pointer;
        font-size: 1rem;
        font-weight: 500;
        transition: color 0.2s;
    }

    .bde-tabs__tab[aria-selected="true"] {
        color: #452C1F;
        border-bottom: 2px solid #452C1F;
    }

    .bde-tabs__panel {
        padding: 2rem 0;
    }

    .bde-tabs__panel h2 {
        font-size: 1.5rem;
        color: #2D1810;
        margin-bottom: 1rem;
    }

    /* Reviews Section */
    .woocommerce-Reviews-title {
        font-size: 1.5rem;
        color: #2D1810;
        margin-bottom: 2rem;
    }

    .woocommerce-noreviews {
        color: #666;
    }

    /* Star Rating */
    .stars {
        display: flex;
        gap: 0.5rem;
    }

    .star-1,
    .star-2,
    .star-3,
    .star-4,
    .star-5 {
        color: #ffd700;
        text-decoration: none;
    }

    /* Review Form */
    .comment-form {
        margin-top: 2rem;
    }

    .comment-form label {
        display: block;
        margin-bottom: 0.5rem;
        color: #2D1810;
        font-weight: 500;
    }

    .comment-form textarea {
        width: 100%;
        padding: 1rem;
        border: 1px solid #e2e8f0;
        border-radius: 0.5rem;
        margin-bottom: 1rem;
    }

    .comment-form .submit {
        padding: 0.75rem 2rem;
        background-color: #452C1F;
        color: white;
        border: none;
        border-radius: 0.5rem;
        cursor: pointer;
        transition: background-color 0.2s;
    }

    .comment-form .submit:hover {
        background-color: #2D1810;
    }

    /* Configurator Styles */
    .configurator {
        background-color: #ffffff;
        border-radius: 0.5rem;
        padding: 0.1rem;
    }

    .step-header-name {
        font-size: 1.125rem;
        color: #2D1810;
        font-weight: 500;
        margin-bottom: 1rem;
    }

    /* Footer Styles */
    .site-footer {
        background-color: #412919;
        color: #ffffff;
        padding: 1rem 1rem 1rem;
    }

    .section-container {
        /* max-width: 1400px; */
        padding: 0 7rem;
        margin: 0 auto;
    }



    .footer-main {
        display: flex;
        justify-content: space-between;
        gap: 4rem;
        margin-bottom: 2rem;
    }

    .footer-brand {
        flex: 0 0 40%;
        display: flex;
        align-items: center;
        gap: 2rem;
        column-gap: 1rem;
    }

    .footer-logo {
        flex-shrink: 0;
        display: block;
        width: 150px;
    }

    .footer-logo img {
        width: 100%;
        height: auto;
        display: block;
    }

    .footer-description {
        font-size: 17.5px;
        line-height: 1.4;
        text-align: left;
        max-width: 100%;
        width: 400px;
        font-family: 'Poppins', sans-serif;
        font-weight: 400;
    }


    .footer-links {
        display: flex;
        gap: 4rem;
    }

    .footer-heading {
        font-size: 1.2rem;
        font-weight: 600;
        margin-bottom: 1rem;
        color: #ffffff;
        font-family: 'Poppins', sans-serif;
    }

    .footer-buttons {
        display: flex;
        flex-direction: column;
    }

    .footer-button {
        color: rgba(255, 255, 255, 0.9);
        text-decoration: none;
        font-size: 0.9rem;
        transition: color 0.2s ease;
        padding: 0.25rem 0;
        margin-bottom: 5px;
    }

    .footer-buttons .footer-button {
        position: relative;
        width: fit-content;
        color: white;
    }

    .footer-buttons .footer-button::before {
        content: "";
        position: absolute;
        width: 100%;
        height: 1px;
        background: currentColor;
        top: 100%;
        left: 0;
        transform-origin: right;
        transform: scaleX(0);
        transition: transform 0.3s ease;
    }

    .footer-buttons .footer-button:hover::before {
        transform-origin: left;
        transform: scaleX(1);
    }

    .footer-bottom {
        padding-top: 2rem;
        border-top: 1px dashed #f9f2eb;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .footer-copyright {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.875rem;
        color: rgba(255, 255, 255, 0.7);
        font-family: 'Poppins', sans-serif;
    }

    .lux-link {
        color: rgba(255, 255, 255, 0.7) !important;
        text-decoration: none;
        transition: color 0.2s ease;
    }

    .lux-link:hover {
        color: #ffffff;
    }

    .click-active-link img {
        height: 20px;
        width: auto;
        margin-left: 0.5rem;
    }

    .footer-social {
        display: flex;
        gap: 1rem;
    }

    .social-link img {
        width: 100%;
        height: 40px;
        transition: opacity 0.2s ease;
    }

    .social-link:hover img {
        opacity: 1;
    }

    /* Critical tab styles */
    .bde-tabs {
        margin-top: 2rem;
    }

    .bde-tabs__tabslist {
        display: flex;
        border-bottom: 1px solid #e2e8f0;
        margin-bottom: 2rem;
        padding: 0;
        list-style: none;
    }

    .bde-tabs__tab {
        background: none;
        border: none;
        padding: 1rem 2rem;
        color: #666;
        cursor: pointer;
        font-size: 1rem;
        position: relative;
        margin-right: 1rem;
        font-family: 'Poppins', sans-serif !important;

    }

    .bde-tabs__tab.active {
        color: #452C1F;
    }

    .bde-tabs__tab.active::after {
        content: '';
        position: absolute;
        bottom: -1px;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: #452C1F;
    }

    .bde-tabs__panel {
        display: none;
    }

    .bde-tabs__panel.active {
        display: block;
    }

    .bde-tabs__panel-content {
        padding: 1rem 0;
        font-family: 'Poppins', sans-serif;
        line-height: 1.5;
    }



    .mobile-phone-banner {
        background-color: #BCDEE6;
        padding: 10px;
        display: flex;
        justify-content: space-between;
    }

    .mobile-menu-content {
        padding: 20px;
    }

    .mobile-product-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        padding: 10px;
    }

    .footer-links {
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        display: flex;
        justify-content: space-between;
        font-family: 'Poppins', sans-serif;
    }



    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        max-width: 450px;
        height: 100vh;
        background-color: #FDF7F3;
        z-index: 1000;
        overflow-y: auto;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
        opacity: 0;
        overflow-x: hidden;
    }



    /* Add a backdrop when menu is open */
    .mobile-menu-overlay::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease;
        z-index: -1;
        transform: translateX(100vw);
    }

    .mobile-menu-overlay.active {
        transform: translateX(0);
        opacity: 1;
    }


    .phone-banner {
        display: flex;
        align-items: center;
        padding: 20px;
        gap: 20px;
        background-color: #bcdee6;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        cursor: pointer;
    }

    .phone-banner svg:first-of-type {
        width: 30px;
        height: 30px;
        fill: #412919;
        transition: transform 0.3s ease;
    }

    .phone-banner a {
        color: #412919;
        text-decoration: none;
        font-size: 17px;
        font-weight: 500;
        align-self: center;
        transition: transform 0.3s ease;
        font-family: 'Poppins', sans-serif;
    }

    .phone-icon-number {
        display: flex;
        gap: 20px;
        align-items: center;
    }

    .phone-icon-number:hover svg,
    .phone-icon-number:hover a {
        transform: translate(8px, 0);
    }

    .close-menu {
        position: fixed;
        top: 0;
        right: 0;
        border: none;
        background-color: #f9f2eb;
        font-size: 28px;
        color: #412919;
        padding: 20px;
        cursor: pointer;
    }

    .close-menu svg {
        transition: transform 0.3s ease;
    }

    .close-menu:hover svg {
        transform: rotate(360deg);
    }

    .menu-content {
        padding: 20px;
    }

    .menu-content>h2 {
        color: #4A2512;
        font-size: 22px;
        font-family: 'Anabea', serif;
        margin: 20px 0;
        transition: transform 0.3s ease;
    }

    .menu-content>h2:hover {
        transform: translate(8px, 0);
    }

    .chocolate-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        margin-bottom: 30px;
    }

    .chocolate-item {
        display: flex;
        flex-direction: column;
        border-radius: 8px;
        padding: 10px 7px 8px 7px;
        text-align: center;
        border: 1px solid #E2D5C3;
    }

    .image-wrapper {
        border-radius: 4px;
        margin-top: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .image-wrapper img {
        width: 100px;
        height: 66px;
        object-fit: cover;
        border-radius: 8px;
        margin-top: auto;
    }



    .chocolate-item h3 {
        font-size: 14px;
        color: #4A2512;
        margin: 0;
        font-weight: 500;
        font-family: 'Poppins', sans-serif;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        max-height: 4rem;
    }

    .chocogift-frame {
        border-radius: 8px;
        padding: 25px 10px;
        text-align: center;
        margin: 30px 0;
    }

    .chocogift-frame h2 {
        color: #4A2512;
        font-size: 22px;
        margin-bottom: 10px;
        font-family: 'Anabea', serif;
        text-align: left;
    }

    .chocogift-frame p {
        font-family: 'Poppins', serif;
        color: #412919;
        margin-bottom: 20px;
        text-align: left;
    }

    .design-button {
        background-color: #f08050;
        color: white;
        border: none;
        border-radius: 25px;
        padding: 1rem 30px;
        width: 100%;
        font-size: 16px;
        cursor: pointer;
        transition: transform 0.3s ease;
        font-family: 'Poppins', sans-serif;
    }

    .design-button:hover {
        transform: scale(1.03);
    }

    .design-button {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        justify-content: center;
    }

    .pulse-dot {
        position: relative;
        display: inline-flex;
        width: 10px;
        height: 10px;
    }

    .pulse-dot__core {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background-color: #FFF;
        position: relative;
        z-index: 2;
    }

    .pulse-dot__ping {
        position: absolute;
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background-color: #FFF;
        opacity: 0.75;
        animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
    }

    @keyframes ping {

        75%,
        100% {
            transform: scale(3);
            opacity: 0;
        }
    }


    .mobile-menu-footer-links {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        gap: 15px;
        margin-top: 30px;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        padding-top: 20px;
    }

    .mobile-menu-footer-links a {
        color: #4A2512;
        padding: 10px 0;
        font-size: 15px;
        font-family: 'Poppins', sans-serif;
        text-decoration: underline !important;
    }

    .menu-social {
        margin: 1rem 0;
        width: 100%;
        display: flex;
        justify-content: end;
    }

    /* Show menu when active */
    .mobile-menu-overlay.active {
        display: block;
    }


    .mobile-notice-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.7);
        z-index: 9999;
        justify-content: center;
        align-items: center;
    }

    .mobile-notice {
        background-color: white;
        padding: 20px;
        border-radius: 8px;
        max-width: 90%;
        text-align: center;
        position: relative;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .mobile-notice p {
        margin: 0;
        color: #333;
        font-size: 16px;
        line-height: 1.4;
    }

    .close-notice {
        position: absolute;
        top: -12px;
        right: -12px;
        width: 24px;
        height: 24px;
        background: #e67e22;
        border: none;
        border-radius: 50%;
        color: white;
        font-size: 18px;
        line-height: 1;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    }


    .viewer-horizontal {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 15px;
        margin-bottom: 30px;
        padding: 2rem;
    }

    .expivi_viewer_outer_container,
    .expivi_viewer_inner_container {
        position: sticky !important;
        top: 30px !important;
        z-index: 99;
        margin-top: 2rem;
        border-radius: 0.5rem;
    }









    .product-title.two-lines {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        max-height: 2.8em;
        /* Adjust based on your line-height */
    }

    .chocolate-title {
        color: #412919;
        margin-bottom: 15px;
        line-height: 1.3;
        order: -1;
        max-height: 2.8em;
        font-weight: 600;
        font-family: 'Poppins', sans-serif;
    }

    .chocolate-link {
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    .item-description {
        display: none;
    }

    .product-grid .product-title {
        font-weight: 500;
    }


    .product-img-wrapper {
        aspect-ratio: 3 / 2;
        /* Set desired aspect ratio */
        width: 100%;
        max-width: 100px;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
        /* Ensures no overflow */
    }

    .v-slide-group__prev,
    .v-slide-group__prev--disabled {
        display: none !important;
    }

    .v-slide-group__content,
    .v-slide-group__wrapper {
        padding-left: 5px;
    }

    .x-p-v .col-5 {
        max-width: 65% !important;
    }

    .col-7,
    .col-5 {
        padding: 0 !important;
    }

    .svg-canvas-modal {
        z-index: 1000 !important;
    }

    /* Handle toolbar container */
    .xpv__viewer_toolbar_container {
        position: absolute;
        bottom: 20px;
        right: 20px;
        z-index: 1000;
        display: flex;
        gap: 10px;
    }

    /* Style toolbar buttons */
    .xpv__viewer_toolbar_container button {
        background: none;
        border: none;
        padding: 0;
        margin: 0;
        cursor: pointer;
    }

    .bottom-right {
        position: relative !important;
        display: inline-flex !important;
    }


    /* Optimized Media Queries */

    /* Media Rules for max-width: 1024px */
    @media (max-width: 1024px) {
        .dropdown-content {
            display: none !important;
            /* Force hide the dropdown under 1024px */
            width: calc(100vw - 4rem);
            right: -50px;
        }

        .product-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .footer-main {
            flex-direction: column;
            gap: 3rem;
            align-items: center;
        }

        .footer-brand {
            flex: 0 0 100%;
        }

        .footer-links,
        .footer-buttons {
            text-align: center;
            justify-content: center;
        }

        .nav {
            padding: 10px 1.5rem;
        }

        .nav-link,
        .dropdown-trigger {
            display: none;
        }

        .hambergurmenu {
            display: block;
            margin-right: 10px;
        }

        .viewer-horizontal {
            flex-direction: column;
        }

        .summary {
            max-width: 100%;
            margin-top: 0;
        }
    }

    /* Media Rules for max-width: 990px */
    @media (max-width: 990px) {

        .product-viewer-container,
        .expivi_viewer_outer_container,
        .expivi_viewer_inner_container {
            width: 100%;
        }

        .viewer-horizontal {
            flex-direction: column;
        }

        .summary {
            max-width: 100%;
            margin-top: 6.8rem;
        }

        .section-container {
            padding: 0 5rem;
        }

        .footer-brand,
        .footer-description {
            align-items: center;
            text-align: center;
        }
    }

    /* Media Rules for max-width: 768px */
    @media (max-width: 768px) {

        #mobileNotice p {
            font-size: 20px !important;
            font-family: "Poppins Local" !important;
        }

        .container,
        .section-container {
            padding: 0 1.5rem;
        }

        .nav-link,
        .dropdown-trigger {
            display: none;
        }

        .hambergurmenu {
            display: inline-flex;
        }

        .product-grid {
            grid-template-columns: 1fr;
        }

        .product {
            padding: 1rem 0.3rem 0 0.3rem;
        }

        .header,
        .summary {
            padding: 1rem;
            margin-top: 0%;
        }

        .bde-tabs__tab {
            padding: 0.75rem 1rem;
        }

        .logo img {
            width: 100%;
            height: 4rem;
        }

        .inline-items-container[data-v-60f1838e] {
            overflow-x: auto;
        }

        .mobile-menu-overlay {
            max-width: 100%;
        }

        .title-rating-price {
            padding: 10px;
        }

        .chocolate-item h3 {
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .icon-button svg {
            width: 20px;
            height: 20px;
        }

        .cart-icon {
            width: 25px !important;
            height: 25px !important;
        }

        /* Override for the flying behavior */
        .expivi_viewer_outer_container,
        .expivi_viewer_inner_container {
            width: 100%;
            /* Align with the content width */
            max-width: 100%;
            /* Prevent overflow */
            margin: 0;
            /* Remove any extra margin */
            padding: 0;
            /* Remove unnecessary padding */
            position: relative;
            /* Ensure it's in the normal document flow */
            box-sizing: border-box;
        }

        #viewer-container {
            display: block;
            /* Ensure the container is visible */
            position: relative;
            /* Align it within its parent */
            width: 100%;
            /* Make it span the full width of its container */
            max-width: 100%;
            /* Prevent it from exceeding the container width */
            max-height: 350px;
            /* Limit height for better responsiveness */
            margin: 0 auto;
            /* Center it horizontally if there's extra space */
            padding: 0;
            /* Remove unnecessary padding */
            background: #fff;
            /* Temporary debugging background */
            overflow: hidden;
            /* Prevent content overflow */
            box-sizing: border-box;
            /* Include padding/borders in the width and height */
        }

        #viewer-container::after {
            content: "";
            display: block;
            clear: both;
        }

        .carousel-image {
            max-width: 100%;
            max-height: 100%;
            width: auto;
            height: auto;
            display: block;
            margin: 0 auto;
        }

        .swiper-slide {
            flex: 0 0 calc(50% - 20px);
            margin-right: 3px;
            box-sizing: border-box;
            height: 150px;
            display: flex;
            justify-content: center;
            align-items: center;
            overflow: hidden;
        }

        .swiper-container {
            width: 300px !important;
            max-width: 100%;
            position: relative;
            margin-bottom: 20px;
            overflow: hidden;
            padding: 10px;
        }

        .swiper-container::after {
            content: "";
            display: block;
            clear: both;
        }

        .swiper-button-next,
        .swiper-button-prev {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 10;
            width: 35px;
            height: 35px;
            background: rgba(0, 0, 0, 0.5);
            border-radius: 50%;
            color: #fff;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
        }

        .site-footer {
            padding: 30px 15px;
            text-align: center;
        }

        .footer-main {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
        }

        .footer-brand {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 10px;
        }

        .footer-logo img {
            max-width: 150px;
            height: auto;
        }

        .footer-description {
            font-size: 16px;
            max-width: 280px;
            line-height: 1.5;
        }

        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 20px;
            width: 100%;
        }

        .footer-column {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .footer-heading {
            font-size: 18px;
            font-weight: bold;
            margin-bottom: 10px;
        }

        .footer-buttons {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
        }

        .footer-button {
            font-size: 14px;
            color: #007BFF;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-button:hover {
            color: #0056b3;
        }

        .footer-bottom {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 15px;
            margin-top: 20px;
        }

        .footer-copyright {
            font-size: 12px;
            color: #999;
        }

        .footer-copyright a {
            color: #007BFF;
            text-decoration: none;
            margin: 0 5px;
        }

        .footer-copyright a:hover {
            color: #0056b3;
        }

        .footer-social {
            display: flex;
            gap: 10px;
            justify-content: center;
        }

        .social-link img {
            width: 25px;
            height: 25px;
            transition: transform 0.3s;
        }

        .social-link img:hover {
            transform: scale(1.2);
        }

    }


    /* Media Rules for max-width: 500px */
    @media (max-width: 500px) {
        .expivi-right-sidebar {
            position: relative;
            width: 100%;
            max-width: 90vw;
            box-sizing: border-box;
        }
    }

    /* Media Rules for max-width: 480px */
    @media (max-width: 480px) {
        .mobile-product-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .bde-tabs__tab {
            padding: 0.75rem 0 !important;
        }

        .single_add_to_cart_button {
            font-size: 14px;
        }

        .footer-brand {
            align-items: center;
            gap: 1rem;
        }

        .mobile-menu-overlay.active::before {
            transform: translateX(-100vw);
        }
    }

    /* Media Rules for max-width: 400px */
    @media (max-width: 400px) {
        .image-wrapper img {
            width: 80px;
            height: 50px;
        }
    }

    /* Media Rules for max-width: 350px */
    @media (max-width: 350px) {
        .chocolate-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    /* Media Rules for Specific Ranges */
    @media (min-width: 550px) and (max-width: 768px) {
        .image-wrapper img {
            width: 150px;
            height: 100px;
        }
    }

    @media (min-width: 768px) {
        .mobile-notice-overlay {
            display: none !important;
        }
    }

    /* completely disables the mobile notice on all devices */
    #mobileNoticeOverlay {
        display: none !important;
    }


    @media (min-width: 1119px) and (max-width: 1799px) {
        .section-container {
            padding: 0 1.5rem;
        }

        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
        }

        .logo img {
            width: 100%;
            height: 6rem;
            transition: transform 1s ease;
        }

        .logo img:hover {
            cursor: pointer;
            transform: scale(1.05);

        }
    }

    @media (max-width: 1350px) and (min-width: 990px) {
        .summary {
            margin-top: 6.8rem;
        }
    }


    /* Hide the tab and its content */
    #tab-description {
        display: none !important;
    }

    #tab-panel-description {
        display: none !important;
    }

    #reviews {
        display: none !important;
    }

    /* Expivi Sleeves Hoesjes image height */

    #scrollview-container-232711 .thumbnail-item .v-image {
        height: 160px !important;
    }


    #scrollview-container-232711 .thumbnail-item.active {
        height: 160px !important;
    }

    #scrollview-container-232711 .thumbnail-item[data-v-60f1838e] {

        height: 160px !important;
    }