    .dialog-new-header {
        background: #fff;
        width: 100%;
        display: flex;
        font-weight: 500;
        font-size: 18px;
        line-height: 1.5rem;
        letter-spacing: 0.15px;
        padding: 0.5rem 0.75rem 0;
        border-radius: 16px 16px 0 0;
        flex-direction: column;
    }

    @media screen and (min-width: 768px) {
        .dialog-new-header .grabber {
            display: none;
        }
    }

    /* Hardcoded color replacements */
    .store-list-title {
        color: #1D1D1D;
    }

    .store-card-bg {
        background-color: #F6F6F9;
    }

    .store-name-color {
        color: #545454;
    }

    .store-icon-color {
        color: #727272;
    }

    .store-text-color {
        color: #727272 !important;
    }

    .store-direction-color {
        color: #085C65 !important;
    }

    .store-phone-link {
        color: #727272 !important;
        transition: color 0.2s ease;
    }

    .store-phone-link:hover {
        color: #085C65 !important;
    }

    .dialog-discount-body {
        overflow-y: auto;
    }

    .note-detail ul {
        margin-left: 1rem;
    }

    .content-list {
        margin-left: 1rem;
    }

    .dialog-body-content-2 ul {
        list-style-type: disc;
    }

    .dialog-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 9999999;
        display: flex;
        justify-content: center;
        align-items: flex-end;
    }

    .ok-button {
        font-weight: 500;
        color: white;
        font-size: 14px;
        line-height: 24px;
        text-align: center;
        background: #861400;
        border-radius: 10px;
        padding: 6px;
        border: none;
        width: 100%;
        position: sticky;
        bottom: 0;
    }

    .ok-button:hover {
        background: #821300;
    }

    .content-title {
        text-align: center;
        font-size: 24px;
        font-weight: 700;
        line-height: 28px;
        color: #861400
    }

    #detailDialog {
        position: fixed;
        z-index: 1000;
        bottom: 0;
        width: 100%;
    }

    .close-medium-container {
        display: none;
    }

    .hidden {
        display: none;
    }

    .dialog-body-content-2 {
        display: flex;
        flex-direction: column;
        gap: 12px;
        padding: 1rem 0;
    }

    .dialog-discount-box {
        background: #fff;
        width: 100%;
        height: 90%;
        overflow-y: auto;
        border-radius: 20px 20px 0 0;
        animation: slideUp 0.35s ease-out forwards;
        z-index: 1000;
    }

    .dialog-discount-header {
        height: 28px;
        width: 100%;
        letter-spacing: 0.15px;
        border-radius: 20px 20px 0 0;
        flex-direction: column;
        background: url("../images/bg-1.webp");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        position: sticky;
        top: 0;
        left: 0;
        right: 0;
    }

    .dialog-discount-content {
        background: #fff;
        width: 100%;
        padding: 0 1rem 1rem;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        flex: 1;
        height: calc(100% - 28px);
    }

    @keyframes slideUp {
        from {
            transform: translateY(100%);
            opacity: 0;
        }

        to {
            transform: translateY(0);
            opacity: 1;
        }
    }

    @keyframes slideDown {
        from {
            transform: translateY(0);
            opacity: 1;
        }

        to {
            transform: translateY(100%);
            opacity: 0;
        }
    }

    @media screen and (min-width: 768px) {
        .dialog-overlay {
            justify-content: center;
            align-items: center;
        }

        .dialog-discount-box {
            max-width: 828px;
            height: auto;
            max-height: 80vh;
            animation: fadeIn 0.3s ease-out forwards;
            border-radius: 12px;
        }

        .dialog-discount-header {
            display: none;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: scale(0.95);
            }

            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        body.dialog-open {
            overflow: hidden;
            position: fixed;
            width: 100%;
        }
    }

    .confirm-checkbox {
        font-size: 14px;
        color: #333;
        margin-top: 1rem;
        margin-left: -1rem;
    }

    .checkbox-wrapper {
        margin-left: 3px;
        display: flex;
        align-items: center;
        gap: 8px;
        cursor: pointer;
        user-select: none;
        position: relative;
    }

    /* Ẩn checkbox mặc định */
    .checkbox-wrapper input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
    }

    /* Ô checkbox custom */
    .checkmark-2 {
        width: 16px;
        height: 16px;
        border: 2px solid #002422;
        border-radius: 3px;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: all 0.25s ease;
        background: white;
    }

    /* Icon check */
    .checkmark-2::after {
        content: "";
        width: 5px;
        height: 9px;
        margin-bottom: 2px;
        border: solid white;
        border-width: 0 2px 2px 0;
        transform: rotate(45deg) scale(0);
        transition: transform 0.25s ease;
    }

    /* Khi được tick */
    .checkbox-wrapper input:checked~.checkmark-2 {
        background-color: #002422;
        border-color: #002422;
    }

    .checkbox-wrapper input:checked~.checkmark-2::after {
        transform: rotate(45deg) scale(1);
    }

    .ok-button-2 {
        background-color: #002422;
        color: white;
        padding: 0.75rem 1.25rem;
        border: none;
        border-radius: 8px;
        cursor: pointer;
        width: 100%;
        font-size: 16px;
        font-weight: 600;
        transition: opacity 0.2s ease;
    }

    .ok-button-2:hover {
        opacity: 0.8;
    }

    .ok-button-2:disabled {
        opacity: 0.5;
        cursor: not-allowed;
    }

    .dialog-discount-body {
        overflow-y: auto;
    }

    .content-list {
        margin-left: 1rem;
    }

    .content-list ul {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .dialog-body-content-2 ul {
        list-style-type: disc;
    }

    .dialog-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 9999999;
        display: flex;
        justify-content: center;
        align-items: flex-end;
    }

    .content-title {
        font-family: 'MTD Chalmers'
            , sans-serif !important;
        text-align: center;
        font-size: 24px;
        font-weight: 700;
        line-height: 28px;
        color: #E59B00
    }

    #noteDialog {
        position: fixed;
        z-index: 1000;
        bottom: 0;
        width: 100%;
    }

    .hidden {
        display: none;
    }

    .dialog-body-content-2 {
        display: flex;
        flex-direction: column;
        gap: 12px;
        padding: 1rem 0;
    }

    .dialog-discount-box-2 {
        background: #fff;
        width: 100%;
        height: fit-content;
        overflow-y: auto;
        border-radius: 20px 20px 0 0;
        animation: slideUp 0.35s ease-out forwards;
        z-index: 1000;
    }

    .dialog-discount-header-2 {
        height: 28px;
        width: 100%;
        letter-spacing: 0.15px;
        border-radius: 20px 20px 0 0;
        flex-direction: column;
        background: url("https://file.hstatic.net/200000355853/file/ldp_huy_hieu_80_years__1___1_.webp");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        position: sticky;
        top: 0;
        left: 0;
        right: 0;
    }

    .dialog-discount-content {
        color: black;
        background: #fff;
        width: 100%;
        padding: 0 1rem 1rem;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        flex: 1;
        height: calc(100% - 28px);
    }

    @keyframes slideUp {
        from {
            transform: translateY(100%);
            opacity: 0;
        }

        to {
            transform: translateY(0);
            opacity: 1;
        }
    }

    @keyframes slideDown {
        from {
            transform: translateY(0);
            opacity: 1;
        }

        to {
            transform: translateY(100%);
            opacity: 0;
        }
    }

    @media screen and (min-width: 768px) {
        .dialog-overlay {
            justify-content: center;
            align-items: center;
        }

        .dialog-discount-box-2 {
            max-width: 828px;
            height: auto;
            max-height: 80vh;
            animation: fadeIn 0.3s ease-out forwards;
            border-radius: 12px;
        }

        .dialog-discount-header-2 {
            border-radius: 12px 12px 0 0;
        }


        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: scale(0.95);
            }

            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        body.dialog-open {
            overflow: hidden;
            position: fixed;
            width: 100%;
        }
    }

    .dialog-diamond-image {
        aspect-ratio: 1;
        background: #f8f9fa;
        display: flex;
        justify-content: center;
        flex: 1;
    }

    .dialog-diamond-buttons {
        display: flex;
        gap: 8px;
        font-size: 16px !important;
        font-weight: 500;
    }

    .gia-text {
        color: rgba(147, 125, 103, 1);
    }

    .gia-title {
        font-weight: 500;
        font-size: 16px;
    }

    .gia-subtitle {
        font-weight: 400;
        font-size: 10px;
    }

    .gia-certificate {
        justify-content: center;
        align-items: center;
        display: flex;
        gap: 16px;
        padding: 8px;
        background: linear-gradient(to right, rgba(255, 236, 208, 0.2), rgba(240, 212, 112, 0.2), rgba(253, 244, 236, 1), rgba(255, 164, 57, 0.08), rgba(253, 244, 236, 1));
        border-radius: 50px;
    }

    .close-medium-container {
        display: none;
    }

    .original-price {
        color: rgba(209, 209, 209, 1);
        font-size: 18px;
        text-decoration: line-through;
    }

    .discount-price {
        color: rgba(29, 29, 29, 1);
        font-size: 18px;
        font-weight: 700;
    }

    .percent-decrease {
        border-radius: 23px;
        color: white;
        font-weight: bold;
        font-size: 14px;
        padding: 3px 12px;
        background: linear-gradient(256.65deg, #D89571 12.55%, #EBB598 50.79%, #D89571 75.7%);

    }

    .close-container {
        display: none;
    }

    .close-medium-button {
        background: rgba(0, 0, 0, 0.04);
        border-radius: 50%;
        border: none;
        cursor: pointer;
        width: 1.75rem;
        height: 1.75rem;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .dialog-diamond-price {
        display: flex;
        gap: 12px;
        flex-wrap: wrap;
    }

    .dialog-diamond-title {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }

    .dialog-diamond-name {
        color: rgba(29, 29, 29, 1);
        font-size: 18px;
    }

    .info-container {
        display: flex;
        font-family: sans-serif;
        text-align: center;
        justify-content: center;
    }

    .info-block {
        flex: 1;
    }

    .info-block:not(:last-child) {
        border-right: 1px solid #ddd;
    }

    .info-label {
        display: block;
        color: rgba(114, 114, 114, 1);
        font-size: 10px;
        margin-bottom: 4px;
    }

    .info-value {
        font-size: 16px;
        font-weight: 500;
        color: rgba(29, 29, 29, 1);
    }

    .grabber {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .grabber span {
        width: 36px;
        height: 4px;
        border-radius: 2.5px;
        background: rgba(60, 60, 67, 0.3);
    }

    .close-small-icon {
        display: flex;
        justify-content: end;
    }

    .close-small-icon svg {
        cursor: pointer
    }

    .hidden {
        display: none;
    }

    .dialog-body-content {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .dialog-diamond-box {
        background: #fff;
        width: 100%;
        height: fit-content;
        overflow-y: auto;
        border-radius: 16px 16px 0 0;
        display: flex;
        flex-direction: column;
        animation: slideUp 0.35s ease-out forwards;
    }

    .dialog-diamond-header {
        background: #fff;
        width: 100%;
        display: flex;
        font-weight: 500;
        font-size: 18px;
        line-height: 1.5rem;
        letter-spacing: 0.15px;
        padding: 0.313rem 1rem 0.25rem;
        border-radius: 16px 16px 0 0;
        flex-direction: column;
    }

    .dialog-diamond-content {
        background: #fff;
        width: 100%;
        padding: 0 1rem 1rem;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        flex: 1;

    }

    .dialog-footer {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .close-x-button {
        background: rgba(0, 0, 0, 0.04);
        border-radius: 50%;
        border: none;
        cursor: pointer;
        width: 2rem;
        height: 2rem;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .dialog-body {
        margin-top: 2rem;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    @keyframes slideUp {
        from {
            transform: translateY(100%);
            opacity: 0;
        }

        to {
            transform: translateY(0);
            opacity: 1;
        }
    }

    @keyframes slideDown {
        from {
            transform: translateY(0);
            opacity: 1;
        }

        to {
            transform: translateY(100%);
            opacity: 0;
        }
    }

    @media screen and (min-width: 768px) {
        .dialog-overlay {
            justify-content: center;
            align-items: center;
        }

        .dialog-diamond-title {
            gap: 12px;
        }

        .dialog-diamond-name {
            font-size: 24px;
        }

        .dialog-diamond-price {
            font-size: 20px;
        }

        .dialog-diamond-box {
            max-width: 820px;
            height: auto;
            max-height: 80vh;
            animation: fadeIn 0.3s ease-out forwards;
            border-radius: 12px;
        }

        .dialog-diamond-body {
            width: 55%;
        }

        .close-container {
            display: flex;
            justify-content: end;
        }

        .dialog-diamond-header {
            display: none;
        }

        .dialog-diamond-content {
            padding: 1.25rem;
            flex-direction: row;
            gap: 2rem;
        }

        .percent-decrease {
            padding: 5px 12px;
        }

        .dialog-body-content {
            gap: 20px;
            margin-top: 8px;
        }

        .gia-certificate {
            padding: 12px;
        }

        .dialog-diamond-buttons {
            margin-top: 12px;
            gap: 12px;
        }

        .dialog-diamond-buttons button {
            padding: 8px 24px;
        }

        .close-medium-container {
            display: flex;
            justify-content: end;
        }

        .discount-price,
        .original-price,
        .dialog-diamond-name {
            font-size: 20px;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: scale(0.95);
            }

            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        body.dialog-open {
            overflow: hidden;
            position: fixed;
            width: 100%;
        }
    }

    #deliveryInfoDialogBox {
        padding: 20px 16px 48px;
        display: flex;
        flex-direction: column;
        gap: 12px;
        max-width: 768px;
    }

    .delivery-info-header {
        justify-content: space-between;
        flex-direction: row;
        display: flex;
        border-bottom: solid 1px #E5E7EB;
        padding-bottom: 12px;
    }

    .shipping-content ul {
        list-style-type: disc;
        margin-left: 24px;
    }

    @media screen and (min-width: 768px) {
        .dialog-new-header .grabber {
            display: none;
        }

        #deliveryInfoDialogBox {
            padding: 28px;
            gap: 16px;
        }
    }

    .header-bottom-new .logo-store {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .category-item,
    .category-item-image {
        display: flex !important;
        justify-content: center;
        align-items: center;
        gap: 4px;
        height: 100%;
        padding: 16px 0 !important;
    }

    .category-item-image span {
        position: relative;
        color: #D6A35F;
        font-weight: 700;
    }

    .category-item-image img {
        position: absolute;
        width: 56px;
        height: auto;
        top: -22px;
        right: -52px;
    }

    .category-list-container {
        justify-content: center;
        display: flex;
        flex: 1;
    }

    .search-container {
        display: flex;
        position: relative;
    }

    .btn-search-new {
        background: white;
        border: none;
    }

    .cart-header-bottom {
        padding-right: 4px;
    }

    .cart-header-bottom button {
        background: white;
        border: none;
        position: relative;
    }

    .number-cart {
        color: #fff;
        position: absolute;
        background: #013A40;
        width: 16px;
        height: 16px;
        font-size: 12px;
        line-height: 16px;
        border-radius: 50%;
        text-align: center;
        right: -9px;
        top: -8px;
    }

    .list-inline-item {
        .button-icon {
            border: none;
            background: none;
            position: relative;

            .icon-svg {
                top: 0;
                fill: var(--color_header);

                &.close {
                    display: none;
                }

                @include devices(mobile) {
                    width: 20px;
                    height: 20px;
                }
            }

        }

        &.close-icon .button-icon .icon-svg {
            &.close {
                display: block;
            }

            &.open {
                display: none;
            }
        }

        &.show-search>.header-action_dropdown {
            visibility: visible;
            opacity: 1;
            transform: scale(1);
        }

        .header-action_dropdown {
            @media (min-width: 768px) {
                width: 320px;
            }

            position: absolute;
            top: calc(100% + 14px);
            left: auto;
            right: -12px;
            z-index: 2000;
            min-width: 280px;
            border-radius: 3px;
            color: #677279;
            background: #fff;
            border: solid 1px #dfe3e8;
            box-shadow: 0 1px 5px 2px rgba(0, 0, 0, 0.1);
            visibility: hidden;
            opacity: 0;
            -webkit-transform: scale(0);
            transform: scale(0);
            transition: opacity 0.25s ease-in-out,
            visibility 0.25s ease-in-out,
            max-height 0s linear 0.25s,
            -webkit-transform 0.25s ease-in-out;
            transition: opacity 0.25s ease-in-out,
            transform 0.25s ease-in-out,
            visibility 0.25s ease-in-out,
            max-height 0s linear 0.25s;
            transition: opacity 0.25s ease-in-out,
            transform 0.25s ease-in-out,
            visibility 0.25s ease-in-out,
            max-height 0s linear 0.25s,
            -webkit-transform 0.25s ease-in-out;

            .box-arrow {
                left: auto;
                right: 45px;
                position: absolute;
                bottom: calc(100% - 2px);
                margin: 0 auto;
                width: 22px;
                height: 15px;

                @media (min-width: 768px) and (max-width: 991px) {
                    right: 103px;
                }

                @media (max-width: 767px) {
                    right: 20%;
                }

                svg {
                    -webkit-filter: drop-shadow(0 -3px 2px rgba(0, 0, 0, 0.12));
                    filter: drop-shadow(0 -3px 2px rgba(0, 0, 0, 0.12));
                }
            }

            .header-dropdown_content {
                width: 100%;
                height: 100%;
                max-height: 100%;
                overflow: hidden;
                padding: 10px 20px;

                .title-search {
                    font-size: 17px;
                    color: var(--colorshop);
                    text-transform: uppercase;
                    letter-spacing: 0.5px;
                    margin: 0 0 10px;
                    font-weight: 500;
                    padding: 6px 10px;
                    text-align: center;
                    border-bottom: 1px solid #ededed;
                }

                .site_search {
                    .wanda-mxm-search-desktop {
                        position: relative;
                        padding: 0;

                        .searchinput {
                            background: #f5f5f5;
                            border: 1px solid #ececec;
                            font-size: 14px;
                            color: #333333;
                            font-weight: 500;
                            width: 100%;
                            height: 45px;
                            padding: 0 55px 0 20px;
                            margin: 0;
                            display: inline-block;
                            border-radius: 0;
                            transition: all 150ms linear;
                            -webkit-appearance: none;
                            -moz-appearance: none;
                            -o-appearance: none;
                            appearance: none;
                        }

                        .btn-search {
                            width: 45px;
                            height: 45px;
                            position: absolute;
                            padding: 0;
                            top: 0;
                            right: 0;
                            background: transparent;
                            transition: opacity 150ms linear;
                            border: none;
                            min-width: auto;
                            outline: none;
                            box-shadow: none;
                            display: flex;
                            align-items: center;
                            justify-content: center;

                            svg,
                            img {
                                width: 18px;
                                height: 18px;
                                opacity: .4;
                            }
                        }
                    }

                    #wanda-smart-search {
                        position: relative;
                    }
                }
            }

            @media (max-width: 991px) {
                width: 100vw;
                max-width: initial;
                box-shadow: none;
                border: none;
                border-radius: 0;

                .logo-store img {
                    max-width: 88px;
                }

                .box-arrow {
                    display: none;
                }

                .header-dropdown_content {
                    padding: 0 20px 10px;

                    .site_search .wanda-mxm-search-desktop {
                        .btn-search {
                            right: auto;
                            left: 0;
                        }

                        .searchinput {
                            border-radius: 30px;
                            background: transparent;
                            padding: 0 20px 0 40px;
                            font-weight: 400;
                        }
                    }
                }
            }
        }
    }

    .category-list-container ul {
        gap: 16px;
        height: 100%;
    }

    @media(min-width: 1100px) {
        .category-list-container ul {
            gap: 32px;
        }

        .submenu-content {
            gap: 100px !important;
        }

        .col-container {
            gap: 60px !important;
        }
    }

    .has-submenu {
        position: relative;
    }

    .submenu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #F3F4F5;
        border: 1px solid #eee;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        display: none;
        z-index: 1000;
        padding: 32px 0;
    }

    .submenu-large {
        height: 482px;
    }

    .submenu-small {
        height: 353px;
    }

    .submenu.active {
        display: block;
    }

    .-mt-5 {
        margin-top: -5px;
    }

    .submenu-content {
        display: flex;
        height: 100%;
        justify-content: space-between;
        gap: 50px;
    }

    .submenu-image-wedding-container {
        max-height: 100%;
        width: max-content;
        display: flex;
        justify-content: center;
        position: relative;

        img {
            max-height: 100%;
            width: auto;
            object-fit: cover;
        }

        .overlay-div {
            position: absolute;
            top: 0;
            left: 32px;
            text-align: center;
            color: #fff;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            height: 100%;

            img {
                width: 77px;
                height: auto;
            }

            div {
                margin: 12px 0 14px;
            }

            div p:first-of-type {
                font-size: 18px;
                line-height: 26px;
                font-weight: 400;
                text-align: center;
                color: white;
                margin: 0 0 6px;
            }

            div p:nth-of-type(2) {
                color: #C8FFFA;
                font-size: 30px;
                font-weight: 700;
                text-align: center;
                text-transform: uppercase;
                font-family: "Playfair Display"
                    , serif !important;
            }

            button {
                padding: 4px 16px;
                border: none;
                border-radius: 4px;
                background: white;
                width: fit-content;

                span {
                    background: linear-gradient(89.63deg, #085C65 3.37%, #22A2AF 74.78%);
                    -webkit-background-clip: text;
                    -webkit-text-fill-color: transparent;
                    background-clip: text;
                    color: transparent;
                    font-weight: 700;
                    font-size: 14px;
                    line-height: 22px;
                }
            }
        }

    }

    .submenu-image-container {
        max-height: 100%;
        width: max-content;
        display: flex;
        justify-content: center;
        position: relative;

        img {
            max-height: 100%;
            width: auto;
            object-fit: cover;
        }

        .overlay-div {
            position: absolute;
            top: 32px;
            left: 42px;
            text-align: start;
            color: #fff;
            display: flex;
            flex-direction: column;
            align-items: start;

            img {
                width: 75px;
                height: auto;
            }

            span {
                font-size: 24px;
                font-weight: 600;
                text-transform: uppercase;
                font-family: "Playfair Display"
                    , serif !important;
                margin-bottom: 28px;
                margin-top: 4px;
            }

            button {
                padding: 4px 16px;
                color: #085C65;
                font-weight: 500;
                font-size: 14px;
                line-height: 22px;
                border: none;
                background: white;
                width: fit-content;
            }
        }
    }

    .submenu-collection-images-container {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
        height: 100%;
        width: max-content;

        .collection-item {
            height: 100%;
            display: flex;
            gap: 12px;
            flex-direction: column;
            align-items: center;

            .img-collection-item {
                height: 384px;
                width: 100%;
                display: flex;

                img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                }
            }

            p {
                color: #1D1D1D;
                font-size: 14px;
                line-height: 22px;
                text-decoration: underline;

                &:hover {
                    color: #013A40;
                }
            }
        }
    }

    .submenu-detail-engagement {
        flex: 1;
        display: flex;
        justify-content: space-between;
    }

    .submenu-detail-wedding {
        flex: 1;
        display: flex;
        gap: 120px;
    }

    .submenu-detail-wedding img {
        width:
    }

    .submenu-detail-jelwery {
        flex: 1;
        display: flex;
        gap: 60px;
    }

    .submenu .container {
        height: 100%;
    }

    .title-submenu {
        color: #1D1D1D;
        font-size: 14px;
        line-height: 16px;
        font-weight: 500;
    }

    .subtitle-submenu {
        color: #343434;
        font-size: 14px;
        line-height: 16px;
        font-weight: 400;
    }

    .submenu-col {
        display: flex;
        flex-direction: column;
        gap: 20px;
        width: max-content;
    }

    .col-container {
        display: flex;
        gap: 30px;
    }

    .col-item a {
        display: flex !important;
        gap: 12px;
        padding: 4px 0;
        cursor: pointer;
        align-items: center;
    }

    .col-item a:hover span {
        color: rgb(10, 88, 96);
        text-decoration: underline !important;
        text-transform: underline !important;
    }

    .col-item {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .jelwery-submenu-image-container {
        max-height: 100%;
        width: max-content;
        display: flex;
        justify-content: center;
        position: relative;

        img {
            display: block;
            width: 100%;
            height: auto;
        }

        .overlay-div {
            position: absolute;
            height: 100%;
            padding: 50px;
            top: 0;
            left: 0;
            display: flex;
            flex-direction: column;
            gap: 24px;
            height: 100%;
            justify-content: center;

            div p:first-of-type {
                font-size: 16px;
                line-height: 24px;
                font-weight: 600;
                color: white;
                margin: 0 0 6px;
                text-transform: uppercase;
                font-family: "Playfair Display"
                    , serif !important;
            }

            div p:nth-of-type(2) {
                background: linear-gradient(180deg, #FFF0D3 16.36%, #FACC7E 84.55%);
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
                background-clip: text;
                color: transparent;
                font-size: 24px;
                font-weight: 600;
                text-transform: uppercase;
                font-family: "Playfair Display"
                    , serif !important;
            }

            button {
                padding: 8px 16px;
                border: none;
                border-radius: 4px;
                background: #E3C38E;
                width: fit-content;
                transition: all 0.3s ease;

                &:hover {
                    background: #c9a76f;
                }

                span {
                    color: #1D1D1D;
                    font-weight: 400;
                    font-size: 16px;
                    line-height: 25px;
                }
            }
        }
    }


    @keyframes aurora {
        0% {
            background-position: 0% 50%;
        }

        50% {
            background-position: 100% 50%;
        }

        100% {
            background-position: 0% 50%;
        }
    }

    .animate-aurora {
        animation: aurora 6s ease infinite;
    }

    @keyframes flashText {

        0%,
        100% {
            opacity: 0.9;
            transform: scale(1);
            filter: brightness(100%);
        }

        50% {
            opacity: 1;
            transform: scale(1.05);
            filter: brightness(150%);
        }

    }

    .animate-flash-text {
        animation: flashText 2s infinite ease-in-out;
        display: inline-block;
    }

    @keyframes ctaPulse {
        0% {
            box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
        }

        70% {
            box-shadow: 0 0 0 6px rgba(255, 255, 255, 0);
        }

        100% {
            box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
        }
    }

    .animate-cta-pulse {
        animation: ctaPulse 2s infinite;
    }


    .backdrop-bubble {
        position: fixed;
        height: 100%;
        width: 400px;
        border-radius: 100%;
        right: 90%;
        bottom: 0%;
        background: linear-gradient(135deg, #005c59 0%, #002a28 100%);
        z-index: 999999999;
        transition: right 0.3s ease-in-out;
    }


    .run-once {
        animation: bubble-pop 1s;
    }

    @keyframes bubble-pop {
        0% {
            position: fixed;
            height: 0svh;
            width: 0px;
            border-radius: 100%;
            right: 0px;
            bottom: 0px;
            background: linear-gradient(135deg, #005c59 0%, #002a28 100%);
            z-index: 999999999;
        }

        30% {
            position: fixed;
            height: 120vh;
            width: 120vh;
            border-radius: 100%;
            right: -30vh;
            bottom: -10vh;
            background: linear-gradient(135deg, #005c59 0%, #002a28 100%);
            z-index: 999999999;
        }
    }

    .close-bubble {
        animation: undo-bubble-pop 0.6s forwards;
    }

    @keyframes undo-bubble-pop {
        0% {
            position: fixed;
            height: 100%;
            width: 400px;
            border-radius: 100%;
            right: 90%;
            bottom: 0%;
            background: linear-gradient(135deg, #005c59 0%, #002a28 100%);
            z-index: 999999999;
        }

        30% {
            position: fixed;
            height: 120vh;
            width: 120vh;
            border-radius: 100%;
            right: -30vh;
            bottom: -10vh;
            background: linear-gradient(135deg, #005c59 0%, #002a28 100%);
            z-index: 999999999;
        }

        100% {
            position: fixed;
            height: 0svh;
            width: 0px;
            border-radius: 100%;
            right: 0px;
            bottom: 0px;
            background: linear-gradient(135deg, #005c59 0%, #002a28 100%);
            z-index: 999999999;
        }
    }

    #collections-quicklink-new {
        margin-bottom: 128px;
        display: flex;
        flex-direction: column;
        gap: 20px;

        .collections-quicklink-heading {
            text-align: center;
            display: flex;
            flex-direction: column;
            gap: 8px;

            .p1 {
                font-size: 14px;
                font-weight: 400;
                line-height: 22px;
                letter-spacing: 0.07em;
                vertical-align: middle;
            }

            .p2 {
                font-weight: 400;
                font-size: 28px;
                line-height: 36px;
                letter-spacing: 0;
                text-align: center;
                vertical-align: middle;
            }
        }

        .collections-quicklink-content {
            display: flex;
            gap: 10px;
            align-items: stretch;
            height: 500px;

            .collections-quicklink-name:hover {
                background: none !important;
            }

            .item-wrapper-mb {
                display: none
            }

            .item-1,
            .item-1-hidden-lg {
                width: calc(100% / 4);
                height: 100%;
                transition: all 0.3s ease-in-out;
                animation-duration: 300ms;
                background: #000;

                overflow: hidden;
                position: relative;

                img {
                    width: 100%;
                    height: 100%;
                    object-position: center;
                    object-fit: cover;
                }

                .collections-quicklink-name {
                    position: absolute;
                    bottom: 10px;
                    width: 100%;
                    color: #fff;
                    text-align: center;
                }
            }

            .item-1:hover {
                width: calc(100% / 4 + 50px);
                transition: all 0.3s ease-in-out;
                animation-duration: 300ms;
            }

            .item-wrapper-1 {
                width: 50%;
                height: 500px;
                max-height: 500px;
                display: flex;
                flex-direction: column;
                gap: 10px;

                .item-2 {
                    height: 240px;
                    width: 100%;
                    background: #000;

                    overflow: hidden;
                    position: relative;
                    transition: height 0.3s ease-in-out;

                    img {
                        width: 100%;
                        height: 100%;
                        object-position: center;
                        object-fit: cover;
                    }

                    .collections-quicklink-name {
                        position: absolute;
                        bottom: 10px;
                        width: 100%;
                        color: #fff;
                        text-align: center;
                    }
                }

                .item-2:hover {
                    height: 300px;
                    transition: all 0.3s ease-in-out;
                    animation-duration: 300ms;

                    img {
                        height: 300px;
                    }
                }

                .item-2:hover+.item-wrapper-2 {
                    height: 190px;
                }

                .item-wrapper-2 {
                    width: 100%;
                    display: flex;
                    gap: 10px;
                    height: 250px;
                    transition: height 0.3s ease-in-out;

                    .item-3 {
                        width: calc(100% / 2);
                        height: 100%;
                        background: #000;

                        overflow: hidden;
                        position: relative;

                        img {
                            width: 100%;
                            height: 100%;
                            object-position: center;
                            object-fit: cover;
                        }

                        .collections-quicklink-name {
                            position: absolute;
                            bottom: 10px;
                            width: 100%;
                            color: #fff;
                            text-align: center;
                        }
                    }

                    .item-3:hover {
                        width: calc(100% / 2 + 50px);
                        transition: all 0.3s ease-in-out;
                        animation-duration: 300ms;
                    }
                }
            }

            .item-wrapper-1:hover {
                width: calc(50% + 50px);
                transition: all 0.3s ease-in-out;
                animation-duration: 300ms;
            }
        }
    }

    @media (max-width: 993px) {
        #collections-quicklink-new .collections-quicklink-content {
            height: 350px;
        }

        #collections-quicklink-new {
            & .collections-quicklink-content {
                & .item-wrapper-1 {
                    .item-2 {
                        height: 175px;
                    }
                }
            }
        }

        #collections-quicklink-new {
            & .collections-quicklink-content {
                & .item-wrapper-1 {
                    .item-wrapper-2 {
                        height: 175px;
                    }
                }
            }
        }

        #collections-quicklink-new {
            & .collections-quicklink-content {
                .item-wrapper-1 {
                    height: 350px;
                }
            }
        }
    }

    @media (max-width: 768px) {

        #collections-quicklink-new {
            margin-bottom: 42px;
            display: flex;
            flex-direction: column;
            gap: 20px;
            height: auto;

            .collections-quicklink-heading {
                text-align: center;
                display: flex;
                flex-direction: column;
                gap: 8px;

                .p1 {
                    font-size: 14px;
                    font-weight: 400;
                    line-height: 22px;
                    letter-spacing: 0.07em;
                    vertical-align: middle;
                }

                .p2 {
                    font-weight: 400;
                    font-size: 28px;
                    line-height: 36px;
                    letter-spacing: 0;
                    text-align: center;
                    vertical-align: middle;
                }
            }

            .collections-quicklink-content {
                display: flex;
                gap: 4px;
                align-items: stretch;
                height: auto;


                .item-wrapper-mb {
                    display: flex;
                    width: 100%;
                    height: 290px;
                    gap: 4px;

                    .item-1-hidden-lg {
                        width: calc(100% / 2);
                        min-height: 250px;
                        transition: all 0.3s ease-in-out;
                        animation-duration: 300ms;
                        background: #000;

                        overflow: hidden;
                        position: relative;

                        img {
                            width: 100%;
                            height: 100%;
                            object-position: center;
                            object-fit: cover;
                        }

                        .collections-quicklink-name {
                            position: absolute;
                            bottom: 10px;
                            width: 100%;
                            color: #fff;
                            text-align: center;
                        }
                    }

                    .item-1-hidden-lg:hover {
                        width: calc(100% / 2);
                        transition: all 0.3s ease-in-out;
                        animation-duration: 300ms;
                    }
                }

                .item-1 {
                    display: none;
                    width: calc(100% / 2);
                    min-height: 250px;
                    transition: all 0.3s ease-in-out;
                    animation-duration: 300ms;
                    background: #000;

                    overflow: hidden;
                    position: relative;

                    img {
                        width: 100%;
                        height: 100%;
                        object-position: center;
                        object-fit: cover;
                    }

                    .collections-quicklink-name {
                        position: absolute;
                        bottom: 10px;
                        width: 100%;
                        color: #fff;
                        text-align: center;
                    }

                }

                .item-1:hover {
                    width: calc(100% / 4);
                    transition: all 0.3s ease-in-out;
                    animation-duration: 300ms;
                }

                .item-wrapper-1 {
                    width: 100%;
                    height: fit-content;
                    gap: 4px;

                    .item-2 {
                        height: 140px;
                        width: 100%;
                        background: #000;

                        overflow: hidden;
                        position: relative;
                        transition: height 0.3s ease-in-out;

                        img {
                            width: 100%;
                            height: 100%;
                            object-position: center;
                            object-fit: cover;
                        }

                        .collections-quicklink-name {
                            position: absolute;
                            bottom: 10px;
                            width: 100%;
                            color: #fff;
                            text-align: center;
                        }
                    }

                    .item-2:hover {
                        height: 140px;
                        transition: all 0.3s ease-in-out;
                        animation-duration: 300ms;

                        img {
                            height: 140px;
                        }
                    }

                    .item-2:hover+.item-wrapper-2 {
                        height: 140px;
                    }

                    .item-wrapper-2 {
                        width: 100%;
                        display: flex;
                        gap: 4px;
                        height: 140px;
                        transition: height 0.3s ease-in-out;

                        .item-3 {
                            width: calc(100% / 2);
                            height: 100%;
                            background: #000;

                            overflow: hidden;
                            position: relative;

                            img {
                                width: 100%;
                                height: 100%;
                                object-position: center;
                                object-fit: cover;
                            }

                            .collections-quicklink-name {
                                position: absolute;
                                bottom: 10px;
                                width: 100%;
                                color: #fff;
                                text-align: center;
                            }
                        }

                        .item-3:hover {
                            width: calc(100% / 2);
                            transition: all 0.3s ease-in-out;
                            animation-duration: 300ms;
                        }
                    }
                }

                .item-wrapper-1:hover {
                    width: calc(100%);
                    transition: all 0.3s ease-in-out;
                    animation-duration: 300ms;
                }
            }
        }
    }

    .accordion-icon {
        height: 20px;
        width: 20px;
    }

    .exclusive-collection-section {
        max-width: 100%;
        margin: 0 auto;
        margin-bottom: 128px;
        flex-direction: column;
        gap: 28px;
    }

    .exclusive-collection-header {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: start;
        align-items: start;
        text-align: start;
        gap: 8px;
        margin-bottom: 32px;
    }

    .exclusive-collection-header .exclusive-collection-title {
        font-size: 14px;
        font-weight: 400;
        color: rgba(29, 29, 29, 1);
        line-height: 22px;
        letter-spacing: 0.07em;
        text-align: center;
        vertical-align: middle;
    }

    .exclusive-collection-header .exclusive-collection-subtitle {
        font-weight: 400;
        font-size: 28px;
        line-height: 36px;
        letter-spacing: 0px;
        text-align: start;
        vertical-align: middle;
    }

    .exclusive-collection-header-mobile {
        width: 100%;
        height: 100%;
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        gap: 8px;
    }

    .exclusive-collection-header-mobile .exclusive-collection-title {
        font-size: 14px;
        font-weight: 400;
        color: rgba(29, 29, 29, 1);
        line-height: 22px;
        letter-spacing: 0.07em;
        text-align: center;
        vertical-align: middle;
    }

    .exclusive-collection-header-mobile .exclusive-collection-subtitle {
        font-weight: 400;
        font-size: 24px;
        line-height: 32px;
        letter-spacing: 0px;
        text-align: center;
        vertical-align: middle;
    }

    .exclusive-collection-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-direction: row;
        gap: 28px;
        align-items: flex-start;
    }

    .exclusive-collection-media-wrapper {
        overflow: hidden;
        width: 100%;
        flex: 3.22;
        height: 556px;
        position: relative;
    }

    .exclusive-collection-media-list {
        display: flex;
        flex-direction: column;
        transition: transform 0.5s ease-in-out;
    }

    .exclusive-collection-media {
        width: 100%;
        object-fit: cover;
        height: 556px;
        display: block;
    }

    .exclusive-collection-accordion {
        flex: 1;
        margin-top: auto;
        margin-bottom: auto;
    }

    .accordion-item {
        border-left: 1px solid #e0e0e0;
        padding-top: 20px;
    }

    .accordion-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-left: 16px;
        padding-bottom: 4px;
        cursor: pointer;
    }

    .accordion-title {
        font-size: 16px;
        font-weight: 500;
        margin: 0;
        color: rgba(209, 209, 209, 1);
        line-height: 22px;
        letter-spacing: 0.1px;
        vertical-align: middle;
    }

    .accordion-content {
        display: none;
        padding-left: 16px;
        padding-bottom: 8px;
    }

    .accordion-content-subtitle {
        color: rgba(114, 114, 114, 1);
        size: 14px;
        line-height: 22px;
    }

    .accordion-icon {
        transition: transform 0.3s ease;
        color: rgba(209, 209, 209, 1);
        stroke: rgba(176, 176, 176, 1);
    }

    .accordion-item.active {
        border-left: 2px solid rgba(29, 29, 29, 1);
        padding-top: 0;
        padding-bottom: 0;
    }

    .accordion-item.active .accordion-title {
        color: rgba(29, 29, 29, 1);
    }

    .accordion-item.active .accordion-content {
        display: block;
        color: rgba(114, 114, 114, 1);
        font-size: 14px;
    }

    .accordion-item.active .accordion-icon {
        color: rgba(29, 29, 29, 1);
        stroke: rgba(29, 29, 29, 1);
    }

    .accordion-item.active .accordion-header.open-js .accordion-icon {
        transform: rotate(180deg);
        transform-origin: center center;
    }

    .accordion-item.active .accordion-header:not(.open-js) .accordion-icon {
        transform: rotate(0deg);
        transform-origin: center center;
    }

    .accordion-item:nth-child(2).active~.accordion-item {
        padding-top: 20px;
        padding-bottom: 0;
    }

    .accordion-item:nth-child(3).active,
    .accordion-item:nth-child(4).active {
        padding-top: 0;
        padding-bottom: 0;
    }

    .accordion-item:nth-child(3).active~.accordion-item {
        padding-top: 20px;
        padding-bottom: 0;
    }

    .accordion-item:nth-child(1):not(.active),
    .accordion-item:nth-child(2):not(.active) {
        padding-bottom: 20px;
        padding-top: 0;
    }

    .accordion-item:nth-child(4).active~.accordion-item {
        padding-top: 20px;
        padding-bottom: 0;
    }

    .accordion-item:nth-child(1):not(.active),
    .accordion-item:nth-child(2):not(.active),
    .accordion-item:nth-child(3):not(.active) {
        padding-bottom: 20px;
        padding-top: 0;
    }

    .accordion-item:nth-child(5).active~* {
        padding-top: 0;
        padding-bottom: 0;
    }

    .accordion-item:nth-child(4):not(.active),
    .accordion-item:nth-child(3):not(.active),
    .accordion-item:nth-child(2):not(.active) {
        padding-top: 0;
        padding-bottom: 20px;
    }

    .view-details-link {
        display: inline-block;
        color: rgba(29, 29, 29, 1);
        text-decoration: none;
        margin-top: 8px;
        border-bottom: 1px solid rgba(29, 29, 29, 1);
    }

    /* Mobile styles */
    @media screen and (max-width: 767px) {
        .exclusive-collection-section {
            display: none !important;
        }
    }