#left-side-product-alert {
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.08);
}

/* Product Image Hover */

.image-hover-effect {
    position: relative;
    overflow: hidden;
}

.product-hover-image {
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

.image-hover-effect:hover .product-hover-image {
    opacity: 1;
}

.live-circle-icon {
    animation: blink-1p5 1.5s infinite;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

@keyframes blink-1p5 {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    .blink {
        animation: none;
    }
}

.product-details-page .add-to-cart {
    transition: transform 0.3s ease-in-out;
}

.product-details-page .add-to-cart:hover {
    transform: scale(1.02, 1.1);
}

/* Image Gallery Viewer */


.img-zoom {
    cursor: grab;
}

.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 1050;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    text-align: center;
    overflow: auto;
}

.lightbox-content {
    max-width: 90%;
    max-height: 80%;
    top: 50%;
    transition: transform 0.3s ease;
    cursor: zoom-in;
}

.lightbox-toolbar button {
    font-size: 18px;
    padding: 5px 10px;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    border-radius: 5px;
}

.lightbox-close {
    font-size: 22px;
    background: rgba(0, 0, 0, 0.7);
}


.lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 32px;
    background: rgb(0 0 0 / 25%);
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 50%;
    z-index: 1100;
    transition: background 0.3s ease;
}

.lightbox-arrow:hover {
    background: rgba(0, 0, 0, 0.8);
}

.lightbox-arrow.prev {
    left: 20px;
}

.lightbox-arrow.next {
    right: 20px;
}

.lightbox-toolbar {
    position: absolute;
    top: 10px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    /* left + right */
    align-items: center;
    padding: 0 15px;
    z-index: 1100;
}

.toolbar-left {
    color: white;
    font-size: 16px;
    font-weight: bold;
}

.toolbar-right button {
    margin-left: 4px;
    font-size: 18px;
    padding: 5px 10px;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    border-radius: 5px;
    cursor: pointer;
}

.toolbar-right button:hover {
    background: rgba(0, 0, 0, 0.8);
}


.lightbox-modal img {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;

    max-width: 90% !important;
    max-height: 80% !important;
    margin: 0 !important;
    transition: transform 0.3s ease, opacity 0.3s ease !important;
}

/* Expand Icon */
.carousel-box {
    position: relative;
    overflow: visible;
}

/* Custom hober effect on btn */
.custom-hov-btn:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.custom-hov-btn:active {
    transform: translateY(1px);
}

.border-radius-10px {
    border-radius: 10px;
}

.pb-26px {
    padding-bottom: 1.625rem;
}

.py-19px {
    padding-top: 1.1875rem;
    padding-bottom: 1.1875rem;
}

.py-32px {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.pt-32px {
    padding-top: 2rem;
}

.pb-32px {
    padding-bottom: 2rem;
}

.mb-32px {
    margin-bottom: 2rem;
}

.my-32px {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

/* Extra small devices (xs) <576px */
@media (max-width: 575.98px) {
    .pb-26px {
        padding-bottom: 1rem !important;
    }

    .py-19px {
        padding-top: 0.75rem !important;
        padding-bottom: 0.75rem !important;
    }

    .py-32px {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
    }

    .pt-32px {
        padding-top: 1rem !important;
    }

    .pb-32px {
        padding-bottom: 1rem !important;
    }

    .mb-32px {
        margin-bottom: 1rem !important;
    }

    .my-32px {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important;
    }
}

/* Small devices (sm) ≥576px */
@media (min-width: 576px) and (max-width: 767.98px) {
    .pb-26px {
        padding-bottom: 1.25rem !important;
    }

    .py-19px {
        padding-top: 0.875rem !important;
        padding-bottom: 0.875rem !important;
    }

    .py-32px {
        padding-top: 1.25rem !important;
        padding-bottom: 1.25rem !important;
    }

    .pt-32px {
        padding-top: 1.25rem !important;
    }

    .pb-32px {
        padding-bottom: 1.25rem !important;
    }

    .mb-32px {
        margin-bottom: 1.25rem !important;
    }

    .my-32px {
        margin-top: 1.25rem !important;
        margin-bottom: 1.25rem !important;
    }
}

/* Medium devices (md) ≥768px */
@media (min-width: 768px) and (max-width: 991.98px) {
    .pb-26px {
        padding-bottom: 1.5rem !important;
    }

    .py-19px {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
    }

    .py-32px {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }

    .pt-32px {
        padding-top: 1.5rem !important;
    }

    .pb-32px {
        padding-bottom: 1.5rem !important;
    }

    .mb-32px {
        margin-bottom: 1.5rem !important;
    }

    .my-32px {
        margin-top: 1.5rem !important;
        margin-bottom: 1.5rem !important;
    }
}

/* Large devices (lg) ≥992px */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .pb-26px {
        padding-bottom: 1.625rem !important;
    }

    .py-19px {
        padding-top: 1.1875rem !important;
        padding-bottom: 1.1875rem !important;
    }

    .py-32px {
        padding-top: 1.75rem !important;
        padding-bottom: 1.75rem !important;
    }

    .pt-32px {
        padding-top: 1.75rem !important;
    }

    .pb-32px {
        padding-bottom: 1.75rem !important;
    }

    .mb-32px {
        margin-bottom: 1.75rem !important;
    }

    .my-32px {
        margin-top: 1.75rem !important;
        margin-bottom: 1.75rem !important;
    }
}

/* Extra large devices (xl) ≥1200px */
@media (min-width: 1200px) and (max-width: 1399.98px) {
    .pb-26px {
        padding-bottom: 1.75rem !important;
    }

    .py-19px {
        padding-top: 1.25rem !important;
        padding-bottom: 1.25rem !important;
    }

    .py-32px {
        padding-top: 1.875rem !important;
        padding-bottom: 1.875rem !important;
    }

    .pt-32px {
        padding-top: 1.875rem !important;
    }

    .pb-32px {
        padding-bottom: 1.875rem !important;
    }

    .mb-32px {
        margin-bottom: 1.875rem !important;
    }

    .my-32px {
        margin-top: 1.875rem !important;
        margin-bottom: 1.875rem !important;
    }
}

/* Extra extra large devices (xxl) ≥1400px */
@media (min-width: 1400px) {
    .pb-26px {
        padding-bottom: 1.625rem !important;
    }

    .py-19px {
        padding-top: 1.1875rem !important;
        padding-bottom: 1.1875rem !important;
    }

    .py-32px {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }

    /* max 2rem */
    .pt-32px {
        padding-top: 2rem !important;
    }

    .pb-32px {
        padding-bottom: 2rem !important;
    }

    .mb-32px {
        margin-bottom: 2rem !important;
    }

    .my-32px {
        margin-top: 2rem !important;
        margin-bottom: 2rem !important;
    }
}



/*---All Product Card,Table Start---*/
.table-tabs-container {
    padding-top: 10px;
}



.add-new-btn {
    padding: 13px 40px 13px 32px;
}

.label-text {
    transition: color .4s ease;
    white-space: nowrap;
}

.plus-icon-container {
    transition: width .6s ease;
}

.add-new-btn:hover .plus-icon-container {
    width: 100%;
}

.add-new-btn:hover .label-text {
    color: var(--white) !important;
}

.add-new-btn:hover #plus-icon {
    right: 30px;
}

#plus-icon {
    position: absolute;
    right: 13px;
    transition: all .6s ease;
}

.add-new-btn:hover #filter-icon {
    right: 24px;
}

#filter-icon {
    position: absolute;
    right: 10px;
    transition: all .6s ease;
}


.table-nav-tabs {
    gap: 15px;
}

.table-tabs-container .nav-tabs .nav-item {
    margin-bottom: 0 !important;
}

.table-tabs-container .nav-tabs .nav-link {
    border: none !important;
    border-bottom: 2px solid transparent !important;
    color: var(--gray);
    margin-right: 32px;
    background-color: transparent;
    outline: none !important;
    box-shadow: none !important;
    transition: all .4s ease;
}

.table-tabs-container .nav-tabs .nav-link:hover {
    color: var(--blue);
}

.table-tabs-container {
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    scroll-behavior: smooth;
}

.table-tabs-container .nav-tabs {
    display: inline-flex;
    flex-wrap: nowrap;
}

.table-tabs-container::-webkit-scrollbar {
    height: 2px;
}

.table-tabs-container::-webkit-scrollbar-thumb {
    background-color: var(--light);
    border-radius: 10px;
}


.table-tabs-container .nav-tabs .nav-link.active {
    color: var(--blue);
    border: none !important;
    border-bottom: 2px solid var(--blue) !important;
    background-color: transparent;
    outline: none !important;
    box-shadow: none !important;
}

.tab-filter-bar .input-group {
    transition: all .4s ease;
}

.tab-filter-bar .input-group:hover {
    border: 1px solid color-mix(in srgb, var(--blue), transparent 70%) !important;
    background-color: var(--white) !important;
}

.tab-filter-bar .input-group:focus-within {
    border: 1px solid var(--blue) !important;
    background-color: var(--white) !important;
}

.tab-filter-bar .dropdown button {
    background-color: var(--light);
}

.tab-filter-bar .dropdown button:focus {
    border: 1px solid var(--blue);
}

.tab-filter-bar .dropdown-menu {
    border-radius: 4px;
    z-index: 3;
}

/* .filter-filter-tab-content .dropdown-menu .dropdown-item{
    border-bottom: 1px solid var(--light);
}
.filter-filter-tab-content .dropdown-menu .dropdown-item:last-child{
    border-bottom: none;
} */
.tab-filter-bar .dropdown-menu .dropdown-item:hover {
    color: var(--blue);
}

.tab-filter-bar.dropdown-menu .form-check {
    cursor: pointer;
    /* border-bottom: 1px solid var(--light); */
    transition: all .4s ease;
}

.tab-filter-bar .dropdown-menu .form-check .form-check-label {
    color: var(--gray);
    cursor: pointer;
}

.tab-filter-bar .dropdown-menu .form-check .input-check {
    width: 16px;
    height: 16px;
    appearance: none;
    -webkit-appearance: none;
    background-color: transparent;
    border: 1px solid var(--soft-white);
    border-radius: 4px;
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
}

.tab-filter-bar .dropdown-menu .form-check:last-child {
    border-bottom: none;
}

.tab-filter-bar .dropdown-menu .form-check .input-check:checked {
    background-color: var(--dark);
    border-color: var(--dark);
}

.tab-filter-bar .dropdown-menu .form-check .input-check:checked::after {
    content: url('../img/dropdown-input-checkmark.svg');
    color: var(--white);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 3px;
    margin: auto;
    line-height: 13px;
}

.tab-filter-bar .dropdown-menu .input-check:checked[type="checkbox"]+label {
    color: var(--blue) !important;
}

.filter-filter-tab-content table tr td .rattings {
    gap: 6px;
}

.filter-filter-tab-content table tr td .stock-text:hover {
    color: var(--white);
}

.filter-filter-tab-content .table-options .hov-text-blue:hover span {
    transition: all .4s ease;
}

.filter-filter-tab-content .table-options .hov-text-blue:hover span {
    color: var(--blue) !important;
}

.filter-tab-content .table-options .hov-text-blue:hover span svg path {
    fill: var(--blue);
}

/* .filter-tab-content .table-options a{
    border-bottom: 1px solid var(--light);
}
.filter-tab-content .table-options a:last-child{
    border-bottom: none;
} */
.inner-select button {
    border: 1px solid var(--light) !important;
}

.inner-select .form-control:focus {
    background-color: transparent !important;
}

.filter-tab-content .table th {
    padding-right: 0;
    padding-left: 0;
}

.filter-tab-content .table td {
    padding-left: 0;
    padding-right: 0;
    border-top: 1px dashed #dee2e6;
}

.filter-tab-content .table td .td-see-more {
    transition: all .4s ease;
}

/* .filter-tab-content .table td .td-see-more:hover {
    text-decoration: underline;
} */

.filter-tab-content .table td .td-see-more {
    transition: all 2s ease;
    position: relative;
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
}

.filter-tab-content .table td .td-see-more::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 98%;
    height: 2px;
    background-color: var(--blue);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.filter-tab-content .table td .td-see-more:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}


/*---All Product Card,Table End---*/



/* Right Offcanvas wrapper Start */
#rightOffcanvas {
    box-shadow: rgba(50, 50, 93, 0.16) 0px 0px 40px;
    transition: right 0.4s ease;
    min-height: 100vh;
}

.right-offcanvas-sm {
    width: 240px;
    right: -240px;
}

.right-offcanvas-md {
    width: 450px;
    right: -450px;
}

.right-offcanvas-lg {
    width: 648px;
    right: -648px;
}

.body-no-scroll {
    overflow: hidden;
}

@media (min-width: 320px) and (max-width: 575px) {
    #rightOffcanvas {
        right: -90%;
        width: 90% !important;
    }
}

#closeRightOffcanvas:hover svg path {
    fill: var(--hov-primary);
}

#rightOffcanvas .right-offcanvas-body {
    /* padding-right: 12px; */
    padding-bottom: 120px;
    width: 100%;
    overflow-y: scroll;
}

#rightOffcanvas.active {
    right: 0;
}

#rightOffcanvasOverlay {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(1px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    z-index: 1040;
    cursor: url('../img/cursor-cross.svg') 16 16, crosshair;
}

#rightOffcanvasOverlay.active {
    opacity: 1;
    visibility: visible;
}

#rightOffcanvas .right-offcanvas-body .brand-categories {
    border-width: 3px !important;
}

#rightOffcanvas .right-offcanvas-body .right-offcanvas-table thead tr th {
    border-top: 0;
    border-bottom: 1px solid var(--soft-secondary);
    border-left: 0;
    border-right: 0;
}

#rightOffcanvas .right-offcanvas-body .right-offcanvas-table {
    margin-bottom: 150px;
}

#rightOffcanvas .right-offcanvas-body .right-offcanvas-table tbody tr td {
    border-top: 1px dashed var(--soft-secondary);
    border-bottom: 0;
    border-right: 0;
    border-left: 0;
}

#rightOffcanvas .right-offcanvas-body .right-offcanvas-table tbody {
    border-bottom: 1px solid var(--soft-secondary);
}

.stock-input {
    border: 1px solid var(--soft-secondary);
    max-width: 100px;
}

.stock-input:focus {
    border: 1px solid var(--hov-primary);
}

.right-offcavas-footer {
    border-top: 1px solid var(--light);
}

.right-offcavas-footer .footer-btn button {
    width: 100%;
    border-radius: 8px;
    border: 2px solid var(--soft-secondary);
    background-color: var(--white);
    transition: all .6s ease;
}

.right-offcavas-footer .footer-btn button.cancel {
    color: var(--red);
}

.right-offcavas-footer .footer-btn button.cancel:hover {
    background-color: var(--red);
    border-color: var(--red);
    color: white;
}

.right-offcavas-footer .footer-btn button.save {
    color: var(--teal);
}

.right-offcavas-footer .footer-btn button.save:hover {
    background-color: var(--green);
    border-color: var(--green);
    color: white;
}

#oc_confirm_btn .spinner-border {
    border-right: 2px solid #28a745 !important;
}

/* Right Offcanvas wrapper End */

/* Global Right Offcanvas wrapper Start */
#globalRightOffcanvas {
    box-shadow: rgba(50, 50, 93, 0.16) 0px 0px 40px;
    transition: right 0.4s ease;
    min-height: 100vh;
}

.global-right-offcanvas-sm {
    width: 240px;
    right: -240px;
}

.global-right-offcanvas-md {
    width: 450px;
    right: -450px;
}

.global-right-offcanvas-lg {
    width: 648px;
    right: -648px;
}

.body-no-scroll {
    overflow: hidden;
}

@media (min-width: 320px) and (max-width: 575px) {
    #globalRightOffcanvas {
        right: -90%;
        width: 90% !important;
    }
}

#closeGlobalRightOffcanvas:hover svg path {
    fill: var(--hov-primary);
}

#globalRightOffcanvas .global-right-offcanvas-body {
    /* padding-right: 12px; */
    padding-bottom: 120px;
    width: 100%;
    overflow-y: scroll;
}

#globalRightOffcanvas.active {
    right: 0;
}

#globalRightOffcanvasOverlay {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(1px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    z-index: 1040;
    cursor: url('../img/cursor-cross.svg') 16 16, crosshair;
}

#globalRightOffcanvasOverlay.active {
    opacity: 1;
    visibility: visible;
}

#globalRightOffcanvas .global-right-offcanvas-body .brand-categories {
    border-width: 3px !important;
}

#globalRightOffcanvas .global-right-offcanvas-body .global-right-offcanvas-table thead tr th {
    border-top: 0;
    border-bottom: 1px solid var(--soft-secondary);
    border-left: 0;
    border-right: 0;
}

#globalRightOffcanvas .global-right-offcanvas-body .global-right-offcanvas-table {
    margin-bottom: 150px;
}

#globalRightOffcanvas .global-right-offcanvas-body .global-right-offcanvas-table tbody tr td {
    border-top: 1px dashed var(--soft-secondary);
    border-bottom: 0;
    border-right: 0;
    border-left: 0;
}

#globalRightOffcanvas .global-right-offcanvas-body .global-right-offcanvas-table tbody {
    border-bottom: 1px solid var(--soft-secondary);
}

.stock-input {
    border: 1px solid var(--soft-secondary);
    max-width: 100px;
}

.stock-input:focus {
    border: 1px solid var(--hov-primary);
}

.global-right-offcavas-footer {
    border-top: 1px solid var(--light);
}

.global-right-offcavas-footer .footer-btn button {
    width: 100%;
    border-radius: 8px;
    border: 2px solid var(--soft-secondary);
    background-color: var(--white);
    transition: all .6s ease;
}

.global-right-offcavas-footer .footer-btn button.cancel {
    color: var(--red);
}

.global-right-offcavas-footer .footer-btn button.cancel:hover {
    background-color: var(--red);
    border-color: var(--red);
    color: white;
}

.global-right-offcavas-footer .footer-btn button.save {
    color: var(--teal);
}

.globalright-offcavas-footer .footer-btn button.save:hover {
    background-color: var(--green);
    border-color: var(--green);
    color: white;
}

/* Global Right Offcanvas wrapper End */

/* Delete Popup Modal Start */
#back-btn:hover {
    border-color: var(--green) !important;
    background-color: var(--green) !important;
    color: var(--white) !important;
}

#proceed-btn:hover {
    border-color: var(--red) !important;
    background-color: var(--red) !important;
    color: var(--white) !important;
}

#conform-yes-btn:hover {
    border-color: var(--red) !important;
    background-color: var(--red) !important;
    color: var(--white) !important;
}

#delete-link:hover {
    border-color: var(--red) !important;
    background-color: var(--red) !important;
    color: var(--white) !important;
}

.deleteModal {
    cursor: url('../img/cursor-cross.svg') 16 16, crosshair;
}

.deleteModal .modal-content {
    cursor: default;
}

.deleteModal .form-check .input-check {
    width: 16px;
    height: 16px;
    appearance: none;
    -webkit-appearance: none;
    background-color: var(--soft-light);
    border: 1px solid var(--soft-light);
    border-radius: 4px;
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
}

.deleteModal .form-check .input-check:checked {
    background-color: var(--dark);
    border-color: var(--dark);
}

.deleteModal .form-check .input-check:checked::after {
    content: url('../img/dropdown-input-checkmark.svg');
    color: var(--white);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 3px;
    margin: auto;
    line-height: 13px;
}

.deleteModal .input-check:checked[type="checkbox"]+label {
    color: var(--blue) !important;
}

.deleteModal .input-check:checked[type="checkbox"]+label span {
    color: var(--green) !important;
}

.confirmDeleteModal .modal-content .modal-body p a {
    text-decoration: underline;
}

.confirmDeleteModal {
    cursor: url('../img/cursor-cross.svg') 16 16, crosshair;
}

.confirmDeleteModal .modal-content {
    cursor: default;
}

/* Delete Popup Modal End */


/* auction-bit_btn */
.custom-bit-btn {
    padding: 0.416rem 1rem;
    font-size: 0.8125rem;
}

@media (max-width: 575px) {
    .custom-bit-btn {
        padding: .25rem !important;
        font-size: .75rem;
    }
}

/* auction-bit_btn end */

.toggle-btn {
    color: var(--primary-color);
    font-size: var(--fs-12);
}

.footer-text-control {
    height: auto
}

@media (min-width: 320px) and (max-width: 1199.98px) {
    .footer-text-control {
        max-height: 80px;
        overflow: hidden;
        transition: max-height 0.7s ease;
    }

}


/*======  MY TABLE START =====*/
#aiz-data-table .toggle-plus-minus-btn {
    display: none;
    user-select: none;
    line-height: 17px;
    border-radius: 50%;
    width: 17px;
    height: 17px;
    cursor: pointer;
}

/*Hover & Focus */
.hsn-code:hover,
.gst-value:hover {
    border: 2px solid var(--light);
    background-color: transparent !important;
}

.hsn-code:focus-within,
.gst-value:focus-within {
    border: 2px solid var(--blue) !important;
}

.hsn-code,
.gst-value {
    width: 90%;
}

@media (max-width: 1399px) {

    .hsn-code,
    .gst-value {
        width: 100%;
    }
}

.hsn-code #pen-icon,
.gst-value #pen-icon,
.hsn-code button span,
.gst-value button span,
.hsn-message,
.gst-message {
    display: none;
}

/* Hover: Show pen */
.hsn-code:hover #pen-icon,
.gst-value:hover #pen-icon {
    display: block !important;
    margin-top: 3px;
}

/* Focus: Hide pen, show button & message */
.hsn-code:focus-within #pen-icon,
.gst-value:focus-within #pen-icon {
    display: none !important;
}

.hsn-code:focus-within button span,
.gst-value:focus-within button span,
.hsn-code:focus-within .hsn-message,
.gst-value:focus-within .gst-message {
    display: block !important;
}

/* hide-s */
@media (max-width: 375px) {
    .hide-s {
        display: none !important;
    }
}

/* hide-xs */
@media (max-width: 575px) {
    .hide-xs {
        display: none !important;
    }
}

/* hide-sm */
@media (max-width: 767px) {
    .hide-sm {
        display: none !important;
    }
}

/* hide-md */
@media (max-width: 991px) {
    .hide-md {
        display: none !important;
    }
}

/* hide-lg */
@media (max-width: 1199px) {
    .hide-lg {
        display: none !important;
    }
}

/* hide-xl */
@media (max-width: 1399px) {
    .hide-xl {
        display: none !important;
    }
}

/* hide-xxl */
@media (max-width: 1500px) {
    .hide-xxl {
        display: none !important;
    }
}

/* hide-6xl */
@media (max-width: 1550px) {
    .hide-6xl {
        display: none !important;
    }
}

/* hide-3xl */
@media (max-width: 1750px) {
    .hide-3xl {
        display: none !important;
    }
}

/* hide-4xl */
@media (max-width: 1900px) {
    .hide-4xl {
        display: none !important;
    }
}

/* hide-5xl */
@media (max-width: 2050px) {
    .hide-5xl {
        display: none !important;
    }
}

#aiz-data-table .data-row {
    border-top: 1px dashed var(--soft-light);
    border-bottom: 0 !important;
}

#aiz-data-table .data-row:last-of-type {
    border-bottom: 0 !important;
}

/* #aiz-data-table .data-row:first-of-type {
    border-bottom: 0 !important;
} */

#aiz-data-table .data-row td {
    border: 0 !important;
}



/* Details row */
#aiz-data-table .details-row {
    display: none;
}

#aiz-data-table .details-row td {
    background-color: var(--white);
    padding: 15px 0px !important;
}

#aiz-data-table .detail-item {
    border-bottom: 1px dashed var(--soft-light);
}

#aiz-data-table .detail-item:last-of-type {
    border-bottom: none !important;
}

#aiz-data-table thead th {
    border-bottom: 1px solid var(--soft-light);
    border-top: 0 !important;
}

/*======  MY TABLE END =====*/

#shippingTab .nav-item .nav-link.active {
    color: var(--dark) !important;
}



.choose-address {
    margin-top: -45px;
}

@media (max-width: 700px) {
    .choose-address {
        margin-top: 0 !important;
        justify-content: start !important;
    }
}

#bulk-action-modal {
    z-index: 1050 !important;
}


#request-pickup-btn {
    margin-top: 26px;
    border: 1px solid #ffc700;
}

/* ====================== Product Details Page Start ====================== */
.product-details .product-slider-wrapper {
    width: 100%;
}

.product-details .product-slider-wrapper .thumb-container {
    width: 100%;
    height: 528px;
}

.thumb-slider .swiper-slide {
    width: 100%;
    height: 80px !important;
    transition: all 0.4s ease;
}

.thumb-slider .swiper-slide-thumb-active {
    opacity: 1;
    border: 2px solid var(--blue) !important;
}

.thumb-slider .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.thumb-slider .swiper-slide:hover img {
    transform: scale(1.03);
    opacity: 0.7;
}

.thumb-slider .swiper-slide:hover .la-play-circle {
    color: var(--dark) !important;
}

.thumb-btn-up,
.thumb-btn-down {
    flex: 1;
    height: 30px;
    z-index: 20;
    background-color: #f7f7f7 !important;
}

.thumb-btn-up:hover,
.thumb-btn-down:hover {
    background-color: #f1f1f1 !important;
}

.thumb-btn-up.disabled svg path,
.thumb-btn-down.disabled svg path {
    opacity: 0.6 !important;
}

.thumb-btn-up.disabled,
.thumb-btn-down.disabled {
    cursor: not-allowed !important;
}



/* .thumb-btn-up {
    border-bottom-left-radius: 8px;
}

.thumb-btn-down {
    border-bottom-right-radius: 8px;
} */

/*Product Main Slider*/
.main-slider {
    width: 100%;
    height: 528px;
}

.main-slider .swiper-slide img {
    z-index: 2;
    object-fit: cover;
    object-position: center;
}

.img-preview-btn {
    position: absolute;
    left: 24px;
    bottom: 32px;
    z-index: 3;
    transition: all 0.4s ease;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.08);
    width: 50px;
}

.img-preview-btn:hover {
    width: 170px;
    background-color: var(--white);
}


/* Swipper Button */
.main-slider .swiper-button-next,
.main-slider .swiper-button-prev {
    width: 48px;
    height: 48px;
    background: var(--white);
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.08);
    color: var(--dark) !important;
    transition: all 0.4s ease;
}

.main-slider .swiper-button-next:hover,
.main-slider .swiper-button-prev:hover {
    background-color: var(--soft-light);
}

.main-slider .swiper-button-next:after,
.main-slider .swiper-button-prev:after {
    font-size: 15px;
    font-weight: 600;
}

.main-slider .swiper-button-next {
    right: -60px !important;
    transition: all .4s ease;
}

.main-slider:hover .swiper-button-next {
    right: 15px !important;
}

.main-slider .swiper-button-prev {
    left: -60px !important;
    transition: all .4s ease;
}

.main-slider:hover .swiper-button-prev {
    left: 15px !important;
}

.main-slider .swiper-button-next:after {
    margin-left: 2px;
}

.main-slider .swiper-button-prev:after {
    margin-right: 2px;
}

.main-slider .swiper-button-prev.swiper-button-disabled,
.main-slider .swiper-button-next.swiper-button-disabled {
    cursor: not-allowed !important;
    pointer-events: visible;
}

.product-details .right-side-cws button span.compare,
.product-details .right-side-cws button span.wishlist,
.product-details .right-side-cws button span.share {
    margin-top: 2px;
}

.product-details .rating {
    gap: 5px;
    margin-top: -3px;
}

.product-details .rating-card .rating {
    gap: 4px;
    margin-top: 2px !important;
}

.product-details .total-rating-count {
    margin-top: -5px;
}

.sku-copy-btn svg {
    transition: all 0.4s ease;
}

.sku-copy-btn:hover svg path {
    fill: var(--blue);
}

.people-view svg {
    width: 100%;
    height: 100%;
}

.people-view svg path {
    animation: bluePulse 2s infinite alternate;
}

.order-via-whatsapp a {
    color: var(--green) !important;
}



@keyframes bluePulse {
    0% {
        fill: #D1DBE5;
    }

    100% {
        fill: var(--blue);
    }
}

/* Flash Sale Box */
.flash-sale {
    background-color: var(--red);
    animation: blinkBg 2s infinite alternate;
    transition: opacity 2s ease, height 0.5s ease, padding 0.5s ease;
}

/* Blink animation */
@keyframes blinkBg {
    0% {
        background-color: var(--red);
    }

    25% {
        background-color: var(--orange);
    }

    50% {
        background-color: var(--red);
    }

    75% {
        background-color: var(--orange);
    }

    100% {
        background-color: var(--red);
    }
}

/* Hide flash sale when expired */
.flash-sale.expired {
    opacity: 0;
    pointer-events: none;
    height: 0;
    padding: 0;
    margin: 0 !important;
    overflow: hidden;
}

.discount-badge {
    background-color: var(--orange);
}

.dec-btn,
.inc-btn {
    border: 1px solid var(--light);
    background-color: var(--light);
    transition: all 0.4s ease;
}

.inc-btn:hover,
.dec-btn:hover {
    background-color: transparent !important;
}

.inc-btn:hover svg rect,
.dec-btn:hover svg rect {
    fill: var(--dark) !important;
}

.product-variant {
    height: auto;
    overflow: hidden;
    transition: height .35s ease;
}

.product-variant button .dot {
    transition: all .4s ease;
}

.product-variant .more-toggle-btn {
    background-color: #fafafc !important;
}

.product-variant .more-toggle-btn:hover {
    background-color: var(--light) !important;
}

.product-variant button:hover .dot {
    background-color: var(--blue) !important;
}

.product-variant.collapsed .variant-item {
    border-top: 1px dashed #DFDFE6 !important;
}

.product-variant.collapsed .variant-item-none {
    display: none;
    border-top: 1px dashed #DFDFE6 !important;
}

/* @keyframes variantIconBlink {
  0% {
    fill: var(--light-gray); 
  }
  50% {
    fill: var(--green); 
  }
  100% {
    fill: var(--light-gray);
  }
}

.selected-variant-icon .icon-fill {
  animation: variantIconBlink 1.5s ease-in-out infinite;
} */





/* .product-variant  .dot { display: inline-block; }
.product-variant  .dot.hidden { display: none; }
 */

.product-variant .variant-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 12px;
}

.product-variant .variant-wrapper .variant-item-select {
    transition: all 0.3s ease;
    user-select: none;
    padding-top: 4px;
    padding-bottom: 4px;
}

.product-variant .aiz-megabox .aiz-megabox-elem {
    outline: 1px solid transparent;
}

.product-variant .aiz-megabox>input:checked~.aiz-megabox-elem {
    outline-color: var(--blue);
}

.product-variant .aiz-megabox>input:checked~.aiz-megabox-elem,
.aiz-megabox>input:checked~.aiz-megabox-elem {
    border-width: 1px !important;
}

.bg-orange {
    background-color: var(--orange);
}

.bg-cyen {
    background-color: #027f9d;
}

.product-variant .variant-wrapper .variant-item-select input {
    display: none;
}

.product-variant .variant-wrapper .variant-item-select.active {
    border: 2px solid var(--blue) !important;
    border-width: 2px !important;
}

.warranty-section .yrs {
    margin-top: -6px;
}

.warranty-section ul li {
    line-height: 32px !important;
}

.warranty-section ul li span.warranty-text {
    margin-top: 2px;
}

#login_modal .modal-content {
    border-radius: 8px !important;
}

#warranty-note-modal .modal-content {
    border-radius: 8px !important;
}

#addToCart {
    z-index: 1050 !important;
}

#addToCart .modal-content {
    border-radius: 8px !important;
}

#refund-note-modal .modal-content {
    border-radius: 8px !important;
}

#chat_modal .modal-content {
    border-radius: 8px !important;
}

#social-share-modal .modal-content {
    border-radius: 8px !important;
}

#social-share-modal .modal-header .link-circle-box {
    margin-top: -50px;
}

#social-share-modal .modal-header .close {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

#social-share-modal .modal-body .copy-link-btn svg path {
    transition: all .4s ease;
}

#social-share-modal .modal-body .copy-link-btn:hover svg path {
    fill: var(--blue) !important;
}

#social-share-modal .modal-body .share-link {
    gap: 16px;
}

#social-share-modal .modal-body .share-link:hover span {
    color: var(--dark) !important;
}

#social-share-modal .modal-body .aiz-share .jssocials-shares {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    row-gap: 16px;
    column-gap: 24px;
}

#social-share-modal .modal-body .aiz-share .jssocials-shares .jssocials-share {
    margin: 0 !important;
}

#social-share-modal .modal-body .aiz-share .jssocials-shares .jssocials-share-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all .4s ease;
}

#bid_for_detail_product .modal-content {
    border-radius: 8px !important;
}

/*Product Details Nav Tabs*/
/* .product-details-nav-tab .nav-tab-header {
    position: sticky;
    top: 0;
    z-index: 1045;
} */

.product-details-nav-tab .nav-tab-header ul li:last-child {
    margin-right: 0 !important;
}

.product-details-nav-tab .nav-tab-header .tab-scroll-wrapper {
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none;
    border-bottom: 1px solid var(--light-gray);
}

.product-details-nav-tab .nav-tab-header .tab-scroll-wrapper::-webkit-scrollbar {
    display: none;
}

.product-details-nav-tab .nav-tab-header .tab-underline {
    position: absolute;
    bottom: 0;
    border: 2px solid var(--blue);
    transition: all 0.35s ease;
}

.product-details-nav-tab .container {
    gap: 32px;
}


/* Reviews & Ratings Section */
.reviews-ratings-container .ratings {
    gap: 5px;
}

.reviews-ratings-container button:hover {
    border-color: var(--orange) !important;
}

.reviews-ratings-container button {
    gap: 10px;
}

.reviews-ratings-container .filter-rating-wrapper {
    gap: 12px;
}

.reviews-ratings-container .filter-rating-wrapper .rating-point-select {
    transition: all 0.3s ease;
    user-select: none;
    flex-shrink: 0;
}

.reviews-ratings-container .filter-rating-wrapper .rating-point-select input {
    display: none;
}

.reviews-ratings-container .filter-rating-wrapper .rating-point-select:hover {
    border: 1px solid var(--dark) !important;
}

.reviews-ratings-container .filter-rating-wrapper .rating-point-select.active {
    background-color: var(--dark) !important;
    border: 1px solid var(--dark) !important;
}

.reviews-ratings-container .filter-rating-wrapper .rating-point-select.active svg path {
    fill: var(--white) !important;
}

.reviews-ratings-container .filter-rating-wrapper .rating-point-select.active span {
    color: var(--white) !important;
}

.reviews-ratings-container .custom-select-wrapper select:focus {
    border: 1px solid var(--orange) !important;
}

.reviews-ratings-container .see-more-btn svg path {
    transition: all .4s ease;
}

.reviews-ratings-container .see-more-btn:hover svg path {
    fill: var(--white) !important;
}


.reviews-ratings-container .product-variation-wrapper {
    gap: 16px;
}

.reviews-ratings-container .rating-card-wrapper .review-item {
    border-bottom: 1px solid var(--light-gray) !important;
}

.reviews-ratings-container .rating-card-wrapper .review-item:last-child {
    border: none !important;
}

.reviews-ratings-container .product-variation-wrapper .product-variation-card:hover {
    border-color: var(--blue) !important;
}

.reviews-ratings-container button svg {
    transition: all 0.6s ease;
}

.reviews-ratings-container button.see-more:hover svg path {
    fill: var(--white) !important;
}

/*Product Queries*/
.product-queries-container .product-queries:focus-within {
    border-color: var(--orange) !important;
}

.product-queries-container .product-queries textarea::-webkit-resizer {
    background-color: var(--white) !important;
}

.product-queries-container .other-question {
    gap: 20px;
}

.product-queries-container .other-question:last-child {
    gap: 20px;
}

.product-queries-container .other-question .single-question {
    gap: 23px;
}

@media (max-width: 767px) {
    .thumb-container {
        height: 100px !important;
        margin-top: 20px;
    }

    .thumb-slider .swiper-slide {
        width: 100px !important;
        height: 100% !important;
        margin-right: 12px;
    }

    .thumb-btn-up,
    .thumb-btn-down {
        display: none !important;
    }

    .main-slider {
        height: 400px;
    }

    .main-slider .swiper-button-next {
        right: 15px !important;
    }

    .main-slider .swiper-button-prev {
        left: 15px !important;
    }

}

@media (max-width: 991px) {
    .main-slider .swiper-button-next {
        right: 15px !important;
    }

    .main-slider .swiper-button-prev {
        left: 15px !important;
    }
}

@media (min-width: 992px) {
    .product-slider-wrapper {
        position: sticky;
        top: 160px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .product-details .product-slider-wrapper .thumb-container {
        height: 400px;
    }

    .thumb-slider .swiper-slide {
        height: 90px !important;
    }

    .main-slider {
        height: 400px;
    }

    .main-slider .swiper-button-next {
        right: 15px !important;
    }

    .main-slider .swiper-button-prev {
        left: 15px !important;
    }
}

@media (min-width: 1200px) and (max-width: 1499px) {
    .thumb-slider .swiper-slide {
        height: 65px !important;
    }
}

/* ====================== Product Details Page End ====================== */


/* seller customer panel */

body.verification-lock {
    overflow: hidden;
}

body.verification-lock *:not(.modal):not(.modal *) {
    pointer-events: none;
    filter: blur(5px);
    user-select: none;
}

.customer-verification-form .custom-file-label::after,
.seller-verification-form .custom-file-label::after {
    display: none !important;
}



/* pos */

.custom-height-group .btn {
    height: 42.19px !important;
    line-height: 30px;
}

.btn-outline-yellow {
    color: #FCBA01;
    border: 1px solid #DFDFE6
}

.btn-outline-yellow:hover,
.btn-outline-yellow.active {
    background-color: #FCBA01;
    color: white;
}

.btn-outline-facebook {
    color: #003ABA;
    border: 1px solid #DFDFE6
}

.btn-outline-facebook:hover,
.btn-outline-facebook.active {
    background-color: #003ABA;
    color: white;
}

.btn-outline-whatsapp {
    color: #2EB942;
    border: 1px solid #DFDFE6
}

.btn-outline-whatsapp:hover,
.btn-outline-whatsapp.active {
    background-color: #2EB942;
    color: white;
}

.customer-toggle {
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
}

.customer-toggle i {
    font-size: 1.5rem;
    line-height: 1;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .fs-md-36 {
        font-size: 36px !important;
    }

    .fs-md-20 {
        font-size: 20px !important;
    }

    .fs-md-16 {
        font-size: 16px !important;
    }
}

.coupon-svg-height-mobile {
    height: 60px !important;
}

.pos-list {
    padding: .15rem .25rem !important;
}

#address_walkin::placeholder {
    font-size: .8125rem;
}

.margin-top {
    margin-top: 10px !important;
}

.pos-filter-section .bootstrap-select .filter-option-inner-inner,
.pos-filter-section .bootstrap-select .dropdown-menu.inner>li>a {
    font-size: 12px !important;
}

.pos-filter-section textarea::placeholder,
.pos-filter-section .form-control::placeholder {
    font-size: 12px !important;
}

.pos-filter-section .bootstrap-select.form-control {
    width: 95% !important;
    max-width: 95% !important;
}

.custom-plc-size .bootstrap-select .filter-option-inner-inner,
.custom-plc-size .bootstrap-select .dropdown-menu.inner>li>a {
    font-size: 12px !important;
    padding-top: 4px !important;
}

.custom-plc-size textarea::placeholder,
.custom-plc-size .form-control::placeholder {
    font-size: 12px !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
    .cl-md-w {
        order: 2 !important;
        width: 100% !important;
        margin-top: 20px;
    }
}

.pos-up {
    padding-top: 1rem;
}


/* Social Share Modal */
#social-share-modal .modal-content {
    border-radius: 8px !important;
}

#social-share-modal .modal-header .link-circle-box {
    margin-top: -50px;
}

#social-share-modal .modal-header .close {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

#social-share-modal .modal-body .copy-link-btn svg path {
    transition: all .4s ease;
}

#social-share-modal .modal-body .copy-link-btn:hover svg path {
    fill: var(--blue) !important;
}

#social-share-modal .modal-body .share-link {
    gap: 16px;
}

#social-share-modal .modal-body .share-link:hover span {
    color: var(--dark) !important;
}

#social-share-modal .modal-body .aiz-share .jssocials-shares {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    row-gap: 16px;
    column-gap: 24px;
}

#social-share-modal .modal-body .aiz-share .jssocials-shares .jssocials-share {
    margin: 0 !important;
}

#social-share-modal .modal-body .aiz-share .jssocials-shares .jssocials-share-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all .4s ease;
}

/* add to cart */

.adding {
    pointer-events: none;
    opacity: .7;
}

.added-success {
    background-color: #28a745 !important;
    color: #fff !important;
}

/* circle Arrow icon */
.view-more-slide-btn {
    overflow: hidden;
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    flex-direction: row-reverse;
    transition: width 0.3s ease-in-out;
    width: 32px !important;
    height: 32px !important;
    white-space: nowrap;
    border-radius: 20px;
    background-color: #000;
    color: #fff;
    padding: 0;
}

.view-more-slide-btn .text {
    opacity: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.view-more-slide-btn:hover .text {
    opacity: 1;
    margin-right: 0.1rem;
    display: inline-block;
}

.view-more-slide-btn:hover {
    width: 90px !important;
    justify-content: space-between;
    padding-left: 10px;
    padding-right: 10px;
}

.view-more-slide-btn:active .text {
    text-decoration: underline;
}

.view-more-slide-btn i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.view-more-slide-btn:hover i {
    left: 75%;
}

/* minimum height */
.min-h-200px {
    min-height: 200px;
}


.list-group-item {
    border-style: dashed !important;
}

.order-confirm-modal-left-side {
    max-height: 500px;
    overflow-y: auto;
}


.truck-icon-btn,
.truck-icon-btn:focus {
    box-shadow: none !important;
    outline: none !important;
}

.uploadModal {
    z-index: 1060 !important;
}

.stack-container {
    position: relative;
    max-width: 600px;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* The Card Wrapper (Allows X to overflow) */
.card-wrapper {
    position: absolute;
    width: 100%;
    height: 560px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 991px) {
    .card-wrapper {
        width: 90% !important;
    }
}

/* The actual card with the content */
.mirror-card {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background: white;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Stacking Logic - Showing sections behind */
.card-pos-0 {
    z-index: 50;
    transform: translateY(0) scale(1);
    opacity: 1;
}

.card-pos-1 {
    z-index: 45;
    transform: translateY(-30px) scale(0.94);
    opacity: 0.9;
}

.card-pos-2 {
    z-index: 40;
    transform: translateY(-60px) scale(0.88);
    opacity: 0.8;
}

.card-pos-3 {
    z-index: 35;
    transform: translateY(-90px) scale(0.82);
    opacity: 0.7;
}

.card-pos-4 {
    z-index: 30;
    transform: translateY(-120px) scale(0.76);
    opacity: 0.6;
}

.card-pos-5 {
    z-index: 25;
    transform: translateY(-150px) scale(0.7);
    opacity: 0.5;
}

.card-pos-6 {
    z-index: 20;
    transform: translateY(-180px) scale(0.64);
    opacity: 0.4;
}

.card-pos-7 {
    z-index: 15;
    transform: translateY(-210px) scale(0.58);
    opacity: 0.3;
}

.card-pos-8 {
    z-index: 10;
    transform: translateY(-240px) scale(0.52);
    opacity: 0.2;
}

.card-pos-9 {
    z-index: 5;
    transform: translateY(-270px) scale(0.46);
    opacity: 0.1;
}

.card-pos-10 {
    z-index: 0;
    transform: translateY(-300px) scale(0.4);
    opacity: 0;
}

/* Exit effect */
.exit-now {
    transform: translateY(150px) scale(0.9) !important;
    opacity: 0 !important;
    pointer-events: none;
}

.card-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

/* X Button - Positioned relative to card-wrapper to ignore overflow:hidden */
.btn-close-stack {
    position: absolute;
    top: -12px;
    right: -12px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    cursor: pointer;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    color: #333;
    outline: none !important;
}

.btn-close-stack i {
    font-size: 18px;
    font-weight: bold;
}

/* Progress Bar (Loader) */
.loader-container {
    width: 100%;
    height: 4px;
    background: var(--white);
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;

}

.loader-fill {
    height: 100%;
    width: 0%;
    background: #007bff;
    transition: width 0.05s linear;
}

.vote-btn {
    background: #000;
    color: #fff;
    font-size: 14px;
    padding: 10px;
    border-radius: 5px;
    width: 100%;
    border: none;
}

.pos-selected-tr {
    background-color: #007bff26;
}

.customer-form.collapse.pos-filter-section {
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(2px);
}

.customer-form.collapsing.pos-filter-section {
    background-color: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(2px) !important;
}



/* Smooth Alert Transitions CSS  Start*/
.aiz-custom-alert {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    /* matches mb-3 class */
    transition: all 0.6s ease-in-out;
    position: fixed;
    z-index: 9999;
    max-width: 350px;
    width: 100%;
}

.aiz-custom-alert.top-left {
    top: 20px;
    left: 20px;
}

.aiz-custom-alert.top-right {
    top: 20px;
    right: 20px;
}

.aiz-custom-alert.bottom-left {
    bottom: 20px;
    left: 20px;
}

.aiz-custom-alert.bottom-right {
    bottom: 20px;
    right: 20px;
}

.aiz-custom-alert>div {
    transition: all 0.6s ease-in-out !important;
    overflow: hidden;
    margin-bottom: 0 !important;
    /* Override mb-3 */
    opacity: 1;
    transform: translateY(0);
    max-height: 500px;
}

.aiz-custom-alert>div.removing {
    opacity: 0;
    transform: translateY(-100px);
    margin-bottom: 0 !important;
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    border-width: 0;
}

/* For bottom positions, slide down instead of up */
.aiz-custom-alert.bottom-left>div.removing,
.aiz-custom-alert.bottom-right>div.removing {
    transition: all 0.6s ease-in-out !important;
    transform: translateY(100px);
}

/* Ensure images and content scale properly during transition */
.aiz-custom-alert>div.removing img,
.aiz-custom-alert>div.removing .p-3,
.aiz-custom-alert>div.removing .p-2rem {
    opacity: 0;
}



.aiz-custom-alert .alert.removing {
    opacity: 0;
    transform: translateY(-100px);
    margin-bottom: 0 !important;
    max-height: 0;
    padding: 0 !important;
    border: none;
}

/* Smooth Alert Transitions CSS  End */



/* Fix for the whats app transparent space issue */
div[id^="gb-widget-"] {
    display: block !important;
    width: auto !important;
    height: auto !important;
    pointer-events: none !important;
}

div[id^="gb-widget-"] .sc-q8c6tt-1,
div[id^="gb-widget-"] a[href*="wa.me"] {
    pointer-events: auto !important;
    display: inline-block !important;
}

div[id^="gb-widget-"] .sc-q8c6tt-3 {
    position: relative !important;
    z-index: 16000162 !important;
}

div[id^="gb-widget-"]>div:not(.sc-q8c6tt-3) {
    display: none !important;
}



/*border hover dark */
.hover-border-dark:hover {
    border-color: #0b0b0c !important;
    transition: ease-in-out 0.3;
}

.review-sort-by-images {
    margin-top: 30px;
}



/*  Google Analytics Dashboard Start
-------------------------------------------*/
@media (min-width: 992px) {

    .h-lg-510px,
    .size-lg-510px {
        height: 510px;
    }
}

.g-analytics-card .card-body {
    overflow-y: auto;
    overflow-x: hidden;
}

.g-analytics-card .card-header {
    min-height: 20px !important;
}

.g-analytics-card .card-body table thead th {
    border: none !important;
}

.g-analytics-card .card-body table tbody tr td {
    border: none !important;
}

.g-analytics-card .card-body table tbody tr {
    border-top: 1px dashed #ebedf2 !important;
}

.g-analytics-card .card-body table tbody tr:first-child {
    border-top: 1px solid #ebedf2 !important;
}

/*  Google Analytics Dashboard End
-------------------------------------------*/




/*  Add Product Page Content Start
-------------------------------------------*/

.gutters-4 {
    margin-right: -4px;
    margin-left: -4px;
}

.gutters-4>.col,
.gutters-4>[class*="col-"] {
    padding-right: 4px;
    padding-left: 4px;
}

.gutters-4 {
    margin-right: -4px;
    margin-left: -4px;
}

.gutters-4>.col,
.gutters-4>[class*="col-"] {
    padding-right: 4px;
    padding-left: 4px;
}

.generate-gradient-text {
    background: linear-gradient(90deg,
            #ff4d4d,
            #f9cb28,
            #4cd137,
            #00a8ff,
            #9c88ff,
            #ff4d4d);

    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    animation: textGradientMove 4s linear infinite;
}

@keyframes textGradientMove {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 100% 50%;
    }
}


.animated-gradient-border {
    position: relative;
    background: #fff;
    border-radius: 8px;

    z-index: 1;
}

.animated-gradient-border.border {
    border: none !important;
}

.animated-gradient-border::before {
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    z-index: -1;
    background: linear-gradient(90deg,
            #ff4d4d, #f9cb28, #4cd137, #00a8ff, #9c88ff, #ff4d4d);
    background-size: 300% 300%;
    border-radius: 11px;
    animation: animatedGradientBorder 2s linear infinite;
}

@keyframes animatedGradientBorder {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.text-decoration-underline {
    text-decoration: underline !important;
}


.add-product-page-content .img-upload-container {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: start;
}

.add-product-page-content .img-upload-container>[data-toggle="aizuploader"] {
    width: 120px;
    height: 120px;
    order: 999;
}

.add-product-page-content .img-upload-container .file-preview {
    display: contents;
}

.add-product-page-content .file-preview-item {
    width: 120px !important;
    height: 120px !important;
}

.add-product-page-content .img-upload-container .file-preview-item {
    margin: 0 !important;
}

.add-product-page-content .img-upload-container .file-preview-item img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
}


.add-product-page-content .img-upload-container .file-preview:empty {
    display: none !important;
}

.add-product-page-content .file-upload-input {
    transition: all 0.4s ease;
}

.add-product-page-content .file-upload-input:hover {
    border-color: #007bff !important;
}

.add-product-page-content .file-upload-input .form-control img {
    transition: all 0.4s ease;
}

.add-product-page-content .file-upload-input:hover .form-control img {
    filter: brightness(0) saturate(100%) invert(34%) sepia(94%) saturate(1873%) hue-rotate(198deg) brightness(96%) contrast(101%);
}

.add-product-page-content .refundable-notes .aiz-carousel .carousel-box .refund-notes:hover,
.add-product-page-content .warranty-notes .aiz-carousel .carousel-box .single-warranty-notes:hover,
.add-product-page-content .shipping-notes .aiz-carousel .carousel-box .shp-notes:hover,
.add-product-page-content .cash-on-delivery-notes .aiz-carousel .carousel-box .delivery-notes:hover {
    border-color: var(--blue) !important;
}

.add-product-page-content .club-point-container {
    border: 1px solid #FFF4D6;
    background-color: #FFF4D6;
}


.add-product-page-content .tagify__tag>div {
    border-radius: 999px !important;
}

.add-product-page-content .tagify__tag__removeBtn:hover {
    background: transparent;
    color: #dc3545;
}

/*  Add Product Page Content End
-------------------------------------------*/

/* new image uploader  */

.bypass-img-upload-container {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: start;
}

.bypass-img-upload-container .direct-uploader {
    width: 120px;
    height: 120px;
    order: 999;
    border: 1px dashed #cbd5e0;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    margin-left: -8px;
}

.direct-uploader input {
    display: none;
}

.direct-uploader .upload-icon {
    width: 40px;
    height: 40px;
}

.bypass-img-upload-container .direct-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    display: contents;
}

.direct-file-preview-item {
    width: 120px !important;
    height: 120px !important;
    border: 1px solid #ebedf2;
    border-radius: 6px;
    padding: 4px;
    position: relative;
    display: flex;
    flex-direction: column;
}

.direct-file-preview-item .thumb {
    width: 100%;
    height: 80px;
    background: #f1f2f4;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 4px;
}

.direct-file-preview-item img,
.direct-file-preview-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.direct-file-preview-item .body {
    margin-top: 4px;
    flex: 1;
}

.direct-file-preview-item .body h6 {
    font-size: 12px;
    margin: 0;
}

.direct-file-preview-item .body p {
    font-size: 10px;
    color: #6c757d;
    margin: 0;
}

.direct-file-preview-item .remove {
    position: absolute;
    top: -6px;
    right: -6px;
}

.direct-file-preview-item .remove .btn {
    padding: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #eaeaea;
    text-align: center;
    line-height: 22px;
}

/* new image uploader end  */


.refund-days-code:hover {
    border: 2px solid var(--light);
    background-color: transparent !important;
}

.refund-days-code:focus-within {
    border: 2px solid var(--blue) !important;
}

.refund-days-code {
    width: 90%;
}

@media (max-width: 1399px) {
    .refund-days-code {
        width: 100%;
    }
}

.refund-days-code #pen-icon,
.refund-days-code button span,
.refund-days-message {
    display: none;
}

/* Hover: Show pen */
.refund-days-code:hover #pen-icon {
    display: block !important;
    margin-top: 3px;
}

/* Focus: Hide pen, show button & message */
.refund-days-code:focus-within #pen-icon {
    display: none !important;
}

.refund-days-code:focus-within button span,
.refund-days-code:focus-within .refund-days-message {
    display: block !important;
}

.refund-reason-code:hover {
    border: 2px solid var(--light);
    background-color: transparent !important;
}

.refund-reason-code:focus-within {
    border: 2px solid var(--blue) !important;
}

.refund-reason-code {
    width: 100%;
}

@media (max-width: 1399px) {
    .refund-reason-code {
        width: 100%;
    }
}

.refund-reason-code #pen-icon,
.refund-reason-code button span,
.refund-reason-message {
    display: none;
}

/* Hover: Show pen */
.refund-reason-code:hover #pen-icon {
    display: block !important;
    margin-top: 3px;
}

/* Focus: Hide pen, show button & message */
.refund-reason-code:focus-within #pen-icon {
    display: none !important;
}

.refund-reason-code:focus-within button span,
.refund-reason-code:focus-within .refund-reason-message {
    display: block !important;
}

body::-webkit-scrollbar {
    /* width: 5px!important; */
    display: none !important;
}

/*-------------------- Custom Input with Pen and Clear Field Start --------------*/
/*Hover & Focus */
.custom-input-pen-clear-field:hover {
    border: 2px solid var(--light);
    background-color: transparent !important;
}

.custom-input-pen-clear-field:focus-within {
    border: 2px solid var(--blue) !important;
}


.custom-input-pen-clear-field #pen-icon,
.custom-input-pen-clear-field button span,
.input-field-message {
    display: none;
}

/* Hover: Show pen */
.custom-input-pen-clear-field:hover #pen-icon {
    display: block !important;
    margin-top: 3px;
}

/* Focus: Hide pen, show button & message */
.custom-input-pen-clear-field:focus-within #pen-icon {
    display: none !important;
}

.custom-input-pen-clear-field:focus-within button span,
.custom-input-pen-clear-field:focus-within .input-field-message {
    display: block !important;
    z-index: 1000 !important;
}

/*-------------------- Custom Input with Pen and Clear Field End --------------*/


/*-------------------- Aiz Table border (Left Right borderless Start --------------*/
@media (min-width: 991.98px) {

    .aiz-table.aiz-border-rl-borderless-table td:first-child,
    .aiz-table.aiz-border-rl-borderless-table th:first-child,
    .aiz-border-rl-borderless-table {
        border-left: 0 !important;
    }

    [dir="rtl"] .aiz-table.aiz-border-rl-borderless-table td:first-child,
    .aiz-table.aiz-border-rl-borderless-table th:first-child,
    .aiz-border-rl-borderless-table {
        border-right: 0 !important;
    }

    .aiz-table.aiz-border-rl-borderless-table td:last-child,
    .aiz-table.aiz-border-rl-borderless-table th:last-child,
    .aiz-border-rl-borderless-table {
        border-right: 0 !important;
    }

    [dir="rtl"] .aiz-table.aiz-border-rl-borderless-table td:last-child,
    .aiz-table.aiz-border-rl-borderless-table th:last-child,
    .aiz-border-rl-borderless-table {
        border-left: 0 !important;
    }

}

/*-------------------- Aiz Table border (Left Right borderless End --------------*/


/*-------------------- Promotion & Offers Start --------------*/

.dashboard-content-wrapper {
    background: linear-gradient(180deg, #F2DCEB 0%, #ffffff 30%);
    margin-top: -20px;
    margin-left: -30px;
    margin-right: -30px;

}

@media (max-width: 1200px) {
    .dashboard-content-wrapper {
        margin-left: -15px;
        margin-right: -15px;
    }
}

@media (max-width: 1400px) {
    .dashboard-content-wrapper {
        margin-left: -25px;
        margin-right: -25px;
    }
}

.dashboard-content-wrapper .gap-12 {
    gap: 12px;
}

.dashboard-content-wrapper .gap-16 {
    gap: 16px;
}

.dashboard-content-wrapper .mt-m-6px {
    margin-top: -6px;
}

.dashboard-content-wrapper .min-w-0 {
    min-width: 0;
}

.coming-soon-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.dashboard-content-wrapper .card {
    transition: all 0.6s ease;
    min-height: 218px;
}

.dashboard-content-wrapper .card .sub-title {
    min-height: 34px;
}

.dashboard-content-wrapper .card:hover {
    border-color: var(--blue) !important;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12) !important;
}

.dashboard-content-wrapper .card .la-arrow-right {
    opacity: 0;
    transform: translateX(-10px);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.dashboard-content-wrapper .card:hover .la-arrow-right {
    opacity: 1 !important;
    transform: translateX(0);
}


@media (min-width: 768px) and (max-width: 991px) {
    .todays-deals-number-box {
        height: 188px;
    }
}


@media (min-width: 767px) {
    .fs-md-30 {
        font-size: 30px !important;
    }
}



/*BOGO Start*/
.bogo-card-input {
    display: none;
}

.bogo-card {
    transition: all 0.3s ease;
}

.bogo-card-input:checked+.bogo-card {
    border-color: var(--blue) !important;
    background-color: #f8f9ff !important;
}

.bogo-card-input:checked+.bogo-card .radio-circle {
    border-color: var(--blue) !important;
}

.bogo-card-input:checked+.bogo-card .radio-circle::after {
    content: '';
    width: 12px;
    height: 12px;
    background: var(--blue) !important;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Tab Content Animation */
.custom-tab-pane {
    display: none;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.custom-tab-pane.d-show {
    display: block;
}

.custom-tab-pane.animate-in {
    opacity: 1;
    transform: translateY(0);
}


/*-------------------- Promotion & Offers End --------------*/



/*-------------------- aiz-border-bottom-dashed-table Start (tr only bottom border-dashed) Start --------------*/

.aiz-border-bottom-dashed-table td {
    border: 0 !important;
}

.aiz-border-bottom-dashed-table tr {
    border-bottom: 1px dashed #dee2e6 !important;
}

.aiz-border-bottom-dashed-table tr:last-child {
    border-bottom: 0 !important;
}

/*-------------------- aiz-border-bottom-dashed-table Start (tr only bottom border-dashed) End --------------*/

/* manage order modal dropdown */
select.form-control.mo-custom-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("../img/icons/keyboard-arrow-down.svg") !important;
    background-repeat: no-repeat !important;
    background-position: calc(100% - 15px) center !important;
    background-size: 24px !important;
    padding-right: 40px !important;
}


/*-------------------- Order Tracking Progress Start --------------*/
.timeline-item {
    gap: 15px;
}

.connector-line {
    width: 2px;
    flex-grow: 1;
    min-height: 60px;
}

.line-dashed {
    border-left: 2px dashed #cbd5e1;
}

.order-tracking-pulse-ring {
    animation: timeline-pulse 1.8s infinite;
}

@keyframes timeline-pulse {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }

    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

/*-------------------- Order Tracking Progress End --------------*/



/*-------------------- Design Studio Start --------------*/
.design-studio-wrapper {
    background: linear-gradient(180deg, #FFF6E4 0%, #ffffff 256px);
    margin-top: -20px;
    margin-left: -30px;
    margin-right: -30px;
}

@media (max-width: 1400px) {
    .design-studio-wrapper {
        margin-left: -25px;
        margin-right: -25px;
    }
}

@media (max-width: 1200px) {
    .design-studio-wrapper {
        margin-left: -15px;
        margin-right: -15px;
    }
}

.design-studio-wrapper .design-studio-input {
    display: none;
}

.design-studio-wrapper .design-studio-card:hover {
    border-color: #a8c8f0 !important;
    background: #f5f9ff;
}

.design-studio-input:checked+.design-studio-card {
    border-color: var(--blue) !important;
    background: #EAF4FE !important;
}

.design-studio-tab-pane {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.design-studio-tab-pane .setting-link-wrapper {
    gap: 12px;
}

.design-studio-tab-pane.d-show {
    display: block;
}

.design-studio-tab-pane.animate-in {
    opacity: 1;
}

.design-studio-tab-pane .tab-content-inner {
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.10),
        0 1px 4px 0 rgba(0, 0, 0, 0.05);
}

.tab-content-close-btn {
    position: absolute;
    top: 18px;
    right: 20px;
}

.tab-content-close-btn:hover {
    color: #333;
}

/*-------------------- Design Studio End --------------*/



/*------------------------------------------------------ 
  1. Product Management, 
  2. Marketing Dashboard, 
  3. Business Setting ,
  4. Feature Activation,
  5. Marketing Analytics Dashboard
  ---- START ------------------------------------------*/

.product-managment-wrapper {
    background: linear-gradient(180deg, #FFE5E5 0%, #ffffff 256px);
}

.marketing-dashboard-content-wrapper {
    background: linear-gradient(180deg, #E2EFF0 0%, #ffffff 256px);
}

.business-setting-wrapper {
    background: linear-gradient(180deg, #daeeff 0%, #ffffff 30%);
}

.feature-activation-wrapper {
    background: linear-gradient(180deg, #ECD6FA 0%, #ffffff 256px);
}

.marketing-analytics-dashboard-content-wrapper {
    background: linear-gradient(180deg, #E1EEEF 0%, #ffffff 256px)
}


.marketing-dashboard-content-wrapper .card span,
.business-setting-wrapper .card span,
.feature-activation-wrapper .card .sub-title,
.marketing-analytics-dashboard-content-wrapper .card span {
    min-height: 35px;
}

.product-managment-wrapper,
.marketing-dashboard-content-wrapper,
.business-setting-wrapper,
.feature-activation-wrapper,
.marketing-analytics-dashboard-content-wrapper {
    margin-top: -20px;
    margin-left: -30px;
    margin-right: -30px;
}


@media (max-width: 1400px) {

    .product-managment-wrapper,
    .marketing-dashboard-content-wrapper,
    .business-setting-wrapper,
    .feature-activation-wrapper,
    .marketing-analytics-dashboard-content-wrapper {
        margin-left: -25px;
        margin-right: -25px;
    }
}

@media (min-width: 1200px) {

    .product-managment-wrapper,
    .marketing-dashboard-content-wrapper,
    .business-setting-wrapper,
    .feature-activation-wrapper,
    .marketing-analytics-dashboard-content-wrapper {
        padding-right: 16px;
        padding-left: 16px;
    }
}

@media (min-width: 992px) and (max-width: 1200px) {

    .product-managment-wrapper,
    .marketing-dashboard-content-wrapper,
    .business-setting-wrapper,
    .feature-activation-wrapper,
    .marketing-analytics-dashboard-content-wrapper {
        padding-right: 12px;
        padding-left: 12px;
    }
}

@media (max-width: 991px) {

    .product-managment-wrapper,
    .marketing-dashboard-content-wrapper,
    .business-setting-wrapper,
    .feature-activation-wrapper,
    .marketing-analytics-dashboard-content-wrapper {
        margin-left: -15px;
        margin-right: -15px;
    }
}

@media (max-width: 576px) {

    .product-managment-wrapper,
    .marketing-dashboard-content-wrapper,
    .business-setting-wrapper,
    .feature-activation-wrapper,
    .marketing-analytics-dashboard-content-wrapper {
        padding-right: 0;
        padding-left: 0;
    }
}

.product-managment-wrapper .card:hover,
.marketing-dashboard-content-wrapper .card:hover,
.business-setting-wrapper .card:hover,
.feature-activation-wrapper .card:hover,
.marketing-analytics-dashboard-content-wrapper .card:hover {
    border-color: var(--blue) !important;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12) !important;
}


/* Product Management Card Height Responsive */
@media (min-width: 1201px) and (max-width: 1575px) {
    .product-managment-wrapper .card {
        min-height: 150px;
    }
}

@media (min-width: 1024px) and (max-width: 1200px) {
    .product-managment-wrapper .card {
        min-height: 120px;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .product-managment-wrapper .card {
        min-height: 105px;
    }
}

/* Feature Activation Card Height Responsive */
@media (min-width: 1665px) {
    .feature-activation-wrapper .card {
        min-height: 170px;
    }
}

@media (min-width: 1025px) and (max-width: 1664px) {
    .feature-activation-wrapper .card {
        min-height: 200px;
    }
}

@media (min-width: 767px) and (max-width: 1024px) {
    .feature-activation-wrapper .card {
        min-height: 180px;
    }
}

/*------------------------------------------------------ 
  1. Product Management, 
  2. Marketing Dashboard, 
  3. Business Setting ,
  4. Feature Activation,
  5. Marketing Analytics Dashboard
  ---- END ------------------------------------------*/




/*-------------------- Home Page 7 Demo Start  --------------*/
.layout-container {
    width: 100%;
    max-width: 2560px;
}

.img-container-aspt-ratio {
    width: 100%;
    aspect-ratio: 1 / 1;
    max-width: 266px;
    max-height: 266px;
}

.img-aspect-ratio-200px {
    width: 100%;
    aspect-ratio: 1 / 1;
    max-width: 200px;
    max-height: 200px;
}

.img-aspect-ratio-250px {
    width: 100%;
    aspect-ratio: 1 / 1;
    max-width: 250px;
    max-height: 250px;
}

.img-aspect-ratio-300px {
    width: 100%;
    aspect-ratio: 1 / 1;
    max-width: 300px;
    max-height: 300px;
}

.img-aspect-ratio-320px {
    width: 100%;
    aspect-ratio: 1 / 1;
    max-width: 320px;
    max-height: 320px;
}

.td-product-slider {
    margin-top: 24px;
}


.hero-banner-carousel:not(.slick-initialized) .hero-banner-wrapper:not(:first-child) {
    display: none !important;
}

.hero-banner-carousel:not(.slick-initialized) .hero-banner-wrapper:first-child {
    display: block !important;
    width: 100%;
}



.fd-product-slider .slick-slide,
.td-product-slider .slick-slide,
.featured-categories-slider .slick-slide,
.custom-product-slider .slick-slide {
    padding: 0 10px;
}

.fd-product-slider .slick-list,
.td-product-slider .slick-list,
.featured-categories-slider .slick-list,
.custom-product-slider .slick-list {
    margin: 0 -10px;
    overflow: hidden;
}

#auction-product-slider .slick-slide>div {
    margin-bottom: 24px;
}

#auction-product-slider .slick-slide>div:last-child {
    margin-bottom: 0;
}

.hero-banner-wrapper,
.mega-banner-wrapper {
    background-color: #E8E8E7;

}

.hero-banner-container,
.mega-banner-container {
    aspect-ratio: 6 /1;
    width: 100%;
    height: 320px;
    margin: 0 auto;
}

.banner-lg-container {
    aspect-ratio: 3 /1;
    width: 100%;
}

.banner-lg-container-two {
    aspect-ratio: 2 /1;
    width: 100%;
}

.feactured-best-selling-product-section {
    margin-top: -4px;
}

.featured-products-wrapper .aiz-carousel .product-title,
.best-selling-products-wrapper .aiz-carousel .product-title,
.pre-order-product-wrapper .aiz-carousel .product-title,
.products-wrapper-grid .grid-item .product-title {
    min-height: 40px;
    display: -webkit-box !important;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.5;
    max-height: 3em;
    white-space: normal !important;
}

.custom-border-right {
    border-right: 1px solid #dee2e6;
}

.mf-w-wf-bc .mf-w-wf-bc-grid>div {
    border-right: 1px solid #dee2e6;
    padding-top: 30px;
    padding-bottom: 30px;
}


.products-wrapper-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(272px, 1fr));
    gap: 16px;
    grid-auto-flow: dense;
    width: 100%;
    box-sizing: border-box;
}


/* Image Hover Effect */
.single-product-item .product-main-image {
    opacity: 1;
    transition: opacity 0.8s ease;
}

.single-product-item .product-hover-image {
    opacity: 0;
    top: 0;
    left: 0;
    transition: opacity 0.8s ease;
}

.product-card-wrapper:hover .product-main-image {
    opacity: 0;
    transition: 0.8s ease;
}

.product-card-wrapper:hover .product-hover-image {
    opacity: 1;
    transition: 0.8s ease;
}

.single-product-item .product-card-wrapper .badges-wrapper {
    top: 8px;
    left: 8px;
    gap: 8px;
    z-index: 2;
}

/* Action Icons  */
.single-product-item .product-card-wrapper .product-action-icons {
    opacity: 0;
    transform: translateX(15px);
    transition: all 0.4s ease;
    top: 8px;
    right: 8px;
    gap: 8px;
    z-index: 3;
}

.single-product-item:hover .product-action-icons {
    opacity: 1;
    transform: translateX(0);
}

/* Cart Button */
.single-product-item .product-card-wrapper .product-cart-btn {
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.4s ease;
    overflow: hidden;
    gap: 8px;
}

.single-product-item:hover .product-cart-btn {
    opacity: 1;
    transform: translateY(0);
    border-bottom-right-radius: 8px;
    border-bottom-left-radius: 8px;

}

/* Cart button text & icon transition */
.single-product-item .product-card-wrapper .cart-btn-text {
    display: inline-block;
    transition: all 0.4s ease;
    transform: translateY(0);
    opacity: 1;
    white-space: nowrap;
}

.single-product-item .product-card-wrapper .cart-btn-icon {
    display: inline-flex;
    align-items: center;
    transition: all 0.4s ease;
    transform: translateY(20px);
    opacity: 0;
    position: absolute;
}

.single-product-item .product-card-wrapper .product-cart-btn:hover .cart-btn-text {
    transform: translateY(-20px);
    opacity: 0;
}

.single-product-item .product-card-wrapper .product-cart-btn:hover .cart-btn-icon {
    transform: translateY(0);
    opacity: 1;
}

.single-product-item .product-card-wrapper .action-icon-btn {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    transition: all 0.2s ease;
}



@media (min-width: 1200px) and (max-width: 1400px) {

    .mf-w-wf-bc .mf-w-wf-bc-grid>div:nth-child(4),
    .mf-w-wf-bc .mf-w-wf-bc-grid>div:nth-child(5),
    .mf-w-wf-bc .mf-w-wf-bc-grid>div:nth-child(6) {
        padding-top: 0 !important;
    }
}

@media (min-width: 769px) and (max-width: 1199px) {

    .mf-w-wf-bc .mf-w-wf-bc-grid>div:nth-child(3),
    .mf-w-wf-bc .mf-w-wf-bc-grid>div:nth-child(4) {
        padding-top: 0 !important;
    }
}

@media (min-width: 2200px) {
    .category-card {
        min-height: 140px;
    }
}

@media (min-width: 1920px) {
    .layout-container {
        padding-left: 64px !important;
        padding-right: 64px !important;
    }

    .banner-lg-container {
        aspect-ratio: 4 /1 !important;
    }
}

@media (min-width: 1400px) {
    .td-product-slider {
        margin-top: 33px !important;
    }

    .flash-deals-border-right {
        border-right: 1px solid #dee2e6;
    }

    .mf-w-wf-bc .mf-w-wf-bc-grid>div:last-child {
        border: 0 !important;
    }

    .products-wrapper-grid {
        grid-template-columns: repeat(auto-fill, minmax(272px, 1fr)) !important;
        gap: 16px !important;
    }
}

@media (min-width: 992px) {
    .featured-products-wrapper {
        border-right: 1px solid #dee2e6;
    }

    .products-wrapper-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 16px;
    }
}


@media (max-width: 991px) {
    .mf-w-wf-bc-grid .img-container-lg {
        height: 200px !important;
    }

    .products-wrapper-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 16px;
    }
}

@media (max-width: 768px) {

    .hero-banner-container,
    .mega-banner-container,
    .banner-lg-container {
        aspect-ratio: 2 /1;
        width: 100%;
    }

    .fd-banner-container,
    .auction-banner-main,
    .classified-banner-main,
    .preorder-banner-main {
        height: 400px !important;
    }

    .auction-banner-main,
    .classified-banner-main,
    .preorder-banner-main {
        width: 100% !important;
    }

    .fd-product-slider .slick-slide,
    .td-product-slider .slick-slide,
    .featured-categories-slider .slick-slide,
    .custom-product-slider .slick-slide {
        padding: 0 8px !important;
    }

    .fd-product-slider .slick-list,
    .td-product-slider .slick-list,
    .featured-categories-slider .slick-list,
    .custom-product-slider .slick-list {
        margin: 0 -8px !important;
    }

    .mf-w-wf-bc-grid .img-container-lg {
        height: 244px !important;
    }

    .mf-w-wf-bc .mf-w-wf-bc-grid>div:nth-child(3),
    .mf-w-wf-bc .mf-w-wf-bc-grid>div:nth-child(4) {
        padding-top: 0 !important;
    }

    .products-wrapper-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 16px;
    }

}

@media (max-width: 576px) {

    .mf-w-wf-bc .mf-w-wf-bc-grid>div:nth-child(2),
    .mf-w-wf-bc .mf-w-wf-bc-grid>div:nth-child(3) {
        padding-top: 0 !important;
    }

    .mf-w-wf-bc-grid .img-container-lg {
        height: 200px !important;
    }

    .mf-w-wf-bc-grid .child-cate-title {
        font-weight: 400 !important;
    }

    .mf-w-wf-bc-grid .img-container-col-6 {
        padding-right: 0 !important;
    }

    .products-wrapper-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 16px;
    }

    .single-product-item .product-card-wrapper .product-action-icons {
        top: auto !important;
        bottom: 10px !important;
        right: 0 !important;
        left: 0 !important;
        justify-content: center;
        gap: 2px;
        border-radius: 2px !important;
        transform: translateX(0);
        opacity: 1;
    }

    .single-product-item .product-card-wrapper .product-action-icons .action-icon-btn {
        width: 30px;
        height: 30px;
    }

    .single-product-item .product-card-wrapper .product-action-icons .action-icon-btn i {
        font-size: 17px !important;
    }
}

/*-------------------- Home Page 7 Demo End --------------*/


/*-------------------- Header 7 New Start --------------*/
/*  For Desktop Start */
.header-content-wrapper {
    z-index: 1050;
}

.header-content-wrapper .navbar-logo {
    max-width: 198px;
    max-height: 40px;
}

.header-content-wrapper .dropdown-toggle::after {
    padding-left: 4px !important;
}

.header-content-wrapper .nav-menu-list .nav-item {
    flex-shrink: 0;
}

.header-content-wrapper .nav-menu-list .nav-item .nav-link {
    transition: all .4s ease;
    padding-right: 12px !important;
    padding-left: 12px !important;
}

/* .header-content-wrapper .nav-menu-list .nav-item .nav-link:hover,
    .header-content-wrapper .add-to-cart:hover{
        color: var(--blue)!important;
    } */

.header-content-wrapper .nav-menu-list .switcher-dropdown-menu,
.header-content-wrapper .nav-menu-list .profile-dropdown-menu {
    margin-top: 19px !important;
}

.header-content-wrapper .nav-cart-box .mt-cart-dropdown-menu {
    margin-top: 24px !important;
}

.header-content-wrapper .notification-dropdownmenu {
    margin-top: 24px !important;
}

.header-content-wrapper .header-right-content {
    gap: 24px;
}

.header-content-wrapper .profile-dropdown-menu {
    padding: 0 !important;
    margin-top: 19px !important;
}

.header-content-wrapper .switcher-dropdown-menu {
    margin-top: 25px !important
}

.header-content-wrapper .profile-dropdown-menu .dropdown-item {
    padding-top: 12px !important;
    padding-bottom: 12px !important;
    border-bottom: 1px solid var(--soft-light);
}

.header-content-wrapper .profile-dropdown-menu .dropdown-item:hover {
    background-color: var(--light) !important;
}

.header-content-wrapper .profile-dropdown-menu .dropdown-item span {
    margin-left: 10px;
}

.header-content-wrapper .profile-dropdown-menu .dropdown-item:hover span {
    padding-left: 6px;
}

.header-content-wrapper .search-input-group,
.header-content-wrapper .search-suggestion-wrapper {
    max-width: 800px;
}

.header-content-wrapper .search-suggestion-wrapper {
    max-height: 70vh;
    overflow-y: auto;
}

.header-content-wrapper .search-input-group .form-control {
    border: 2px solid #e2d5ff !important;
    padding: 25px 30px;
    transition: all .4s ease;
}

.header-content-wrapper .search-input-group .form-control:hover {
    border: 2px solid #8351ee !important;
}

.header-content-wrapper .search-input-group .form-control:focus {
    border-color: #6c2cf5;
    box-shadow: none;
}

.header-content-wrapper .nav-item {
    position: static !important;
}

.header-content-wrapper .mega-dropdown-menu {
    width: 100% !important;
    left: 0 !important;
    right: 0 !important;
    top: 0 !important;
    transform: translate3d(0px, 56px, 0px) !important;
    max-height: 70vh;
    overflow-y: auto;

}

.mega-dropdown-menu.global-megamenu {
    width: 100% !important;
    left: 0 !important;
    right: 0 !important;
    top: 0 !important;
    transform: translate3d(0px, 50px, 0px) !important;
    max-height: 70vh;
    overflow-y: auto;

}

/* For Header 5 */
.mega-menu-wrapper-header-5 {
    position: static !important;
}

.mega-menu-wrapper-header-5 .dropdown-menu.mega-dropdown-menu {
    width: 100vw !important;
    left: 0 !important;
    right: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    top: 100% !important;
    transform: translate(0px, 6px) !important;
    will-change: auto !important;
}


@media (min-width: 1200px) {

    .header-content-wrapper .mega-dropdown-menu,
    .header-content-wrapper .dropdown-menu-mt {
        margin-top: 17px !important;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .header-content-wrapper .mega-dropdown-menu {
        /* margin-top: 73px!important; */
        margin-top: 17px !important;
    }

    .header-content-wrapper .dropdown-menu-mt {
        margin-top: 17px !important;
    }
}

@media (max-width: 991px) {
    .header-content-wrapper .mega-dropdown-menu {
        margin-top: 16px !important;
    }
}

@media (max-width: 576px) {
    .header-content-wrapper .search-input-group .form-control {
        padding: 20px 25px;
    }
}

/*-------------------- Header 7 New End --------------*/


/*-------------------- Left Offcanvas wrapper Start --------------*/
#leftOffcanvas {
    box-shadow: rgba(50, 50, 93, 0.16) 0px 0px 40px;
    transition: left 0.4s ease;
    min-height: 100vh;
    z-index: 9999 !important;
}

.left-offcanvas-sm {
    width: 240px;
    left: -240px;
}

.left-offcanvas-md {
    width: 450px;
    left: -450px;
}

.left-offcanvas-lg {
    width: 648px;
    left: -648px;
}

.body-no-scroll {
    overflow: hidden;
}

@media (min-width: 320px) and (max-width: 575px) {
    #leftOffcanvas {
        left: -90%;
        width: 90% !important;
    }
}


#leftOffcanvas .left-offcanvas-body {
    /* padding-left: 12px; */
    padding-bottom: 120px;
    width: 100%;
    overflow-y: scroll;
    height: 100vh;
}

#leftOffcanvas.active {
    left: 0;
}

#leftOffcanvasOverlay {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(1px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    z-index: 1060;
    cursor: url('../img/cursor-cross.svg') 16 16, crosshair;
}

#leftOffcanvasOverlay.active {
    opacity: 1;
    visibility: visible;
}

/*-------------------- Left Offcanvas wrapper End --------------*/

/* ========== BACK TO TOP BUTTON Start ========== */
#backToTop {
    position: fixed;
    bottom: 30px;
    right: 25px;
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 50%;
    background-color: var(--dark);
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s linear 0.3s;
    z-index: 1100;
    will-change: transform, opacity;
    transition: all .6s ease;
}

#backToTop.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s linear 0s;
}

#backToTop:hover {
    transform: translateY(-3px);
    background-color: var(--blue);
}

/* ========== BACK TO TOP BUTTON End ========== */

.seller-sidenav-search {
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all .4s ease;
}

.seller-sidenav-search:focus-within {
    border: 1px solid rgba(255, 255, 255, 0.8);
}

/* Little Bitch Bakes brand direction */
.aiz-thecore {
    background: #fffaf7;
}

.aiz-thecore .text-blue,
.aiz-thecore .hov-text-primary:hover,
.aiz-thecore .hov-text-blue:hover {
    color: var(--lbb-hot-pink) !important;
}

.aiz-thecore .bg-blue,
.aiz-thecore .hov-bg-blue:hover,
.aiz-thecore .btn-primary,
.aiz-thecore .cart-btn,
.aiz-thecore .discount-badge {
    background-color: var(--lbb-hot-pink) !important;
    border-color: var(--lbb-hot-pink) !important;
}

.aiz-thecore .bg-soft-blue {
    background-color: var(--lbb-blush) !important;
}

.aiz-thecore .border-soft-light,
.aiz-thecore .border-light-gray {
    border-color: #f4c7d9 !important;
}

.lbb-hero {
    background: linear-gradient(135deg, #fff8ef 0%, #ffe4f0 48%, #ff5ebc 100%);
    color: var(--lbb-black);
    padding: 54px 0 34px;
    overflow: hidden;
}

.lbb-kicker,
.lbb-product-kicker {
    color: var(--lbb-hot-pink);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.lbb-hero h1 {
    color: var(--lbb-black);
    font-size: clamp(42px, 6vw, 82px);
    font-weight: 900;
    line-height: 0.92;
    margin: 0 0 18px;
    max-width: 650px;
}

.lbb-lede {
    color: #33242b;
    font-size: 18px;
    line-height: 1.55;
    max-width: 590px;
}

.lbb-hero-actions,
.lbb-proof-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.lbb-btn,
.lbb-link {
    align-items: center;
    border-radius: 6px;
    display: inline-flex;
    font-size: 14px;
    font-weight: 800;
    justify-content: center;
    min-height: 48px;
    padding: 0 20px;
    text-decoration: none;
}

.lbb-btn-primary {
    background: var(--lbb-black);
    color: #ffffff !important;
}

.lbb-btn-outline {
    background: #ffffff;
    border: 2px solid var(--lbb-black);
    color: var(--lbb-black) !important;
}

.lbb-link {
    color: var(--lbb-hot-pink) !important;
    min-height: auto;
    padding: 0;
}

.lbb-proof-row span {
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(17, 17, 17, 0.12);
    border-radius: 999px;
    color: #241820;
    font-size: 13px;
    font-weight: 700;
    padding: 8px 12px;
}

.lbb-hero-media {
    aspect-ratio: 1 / 1;
    background: #ffffff;
    border: 3px solid var(--lbb-black);
    border-radius: 8px;
    box-shadow: 18px 18px 0 var(--lbb-black);
    min-height: 320px;
    overflow: hidden;
    position: relative;
}

.lbb-hero-media img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.lbb-message-card {
    background: #ffffff;
    border: 2px solid var(--lbb-black);
    border-radius: 6px;
    box-shadow: 8px 8px 0 rgba(17, 17, 17, 0.9);
    color: var(--lbb-black);
    font-size: 15px;
    font-weight: 900;
    max-width: 220px;
    padding: 14px;
    position: absolute;
}

.lbb-card-one {
    left: 20px;
    top: 22px;
    transform: rotate(-4deg);
}

.lbb-card-two {
    bottom: 28px;
    right: 24px;
    transform: rotate(3deg);
}

.lbb-builder-band,
.lbb-featured-products,
.lbb-occasion-band,
.lbb-topper-band,
.lbb-social-proof-band {
    padding: 42px 0;
}

.lbb-builder-band {
    background: #ffffff;
}

.lbb-featured-products {
    background: var(--lbb-cream);
}

.lbb-occasion-band {
    background: var(--lbb-black);
    color: #ffffff;
}

.lbb-topper-band {
    background: #ffffff;
}

.lbb-social-proof-band {
    background: var(--lbb-blush);
}

.lbb-section-head {
    margin-bottom: 22px;
}

.lbb-section-head-row {
    align-items: end;
    display: flex;
    justify-content: space-between;
    gap: 18px;
}

.lbb-section-head h2 {
    color: inherit;
    font-size: clamp(25px, 3vw, 40px);
    font-weight: 900;
    line-height: 1.05;
    margin: 0;
    max-width: 780px;
}

.lbb-builder-grid,
.lbb-occasion-grid {
    display: grid;
    gap: 14px;
}

.lbb-builder-studio {
    align-items: stretch;
    background: var(--lbb-black);
    border-radius: 8px;
    color: #ffffff;
    display: grid;
    gap: 18px;
    grid-template-columns: 0.9fr 1.4fr;
    margin-bottom: 18px;
    padding: 22px;
}

.lbb-studio-copy span {
    color: var(--lbb-hot-pink);
    display: block;
    font-size: 12px;
    font-weight: 900;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.lbb-studio-copy strong {
    display: block;
    font-size: 26px;
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 10px;
}

.lbb-studio-copy p {
    color: rgba(255, 255, 255, 0.78);
    margin: 0;
}

.lbb-studio-form {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(4, minmax(0, 1fr)) auto;
}

.lbb-studio-form label span {
    color: rgba(255, 255, 255, 0.74);
    display: block;
    font-size: 11px;
    font-weight: 800;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.lbb-studio-form select,
.lbb-studio-form button {
    border: 0;
    border-radius: 6px;
    font-weight: 800;
    min-height: 48px;
    width: 100%;
}

.lbb-studio-form select {
    background: #ffffff;
    color: var(--lbb-black);
    padding: 0 10px;
}

.lbb-studio-form button {
    align-self: end;
    background: var(--lbb-hot-pink);
    color: #ffffff;
    padding: 0 16px;
}

.lbb-builder-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.lbb-step {
    background: var(--lbb-blush);
    border: 2px solid var(--lbb-black);
    border-radius: 8px;
    color: var(--lbb-black) !important;
    display: block;
    min-height: 190px;
    padding: 20px;
}

.lbb-step span {
    color: var(--lbb-hot-pink);
    display: block;
    font-size: 12px;
    font-weight: 900;
    margin-bottom: 36px;
}

.lbb-step strong {
    display: block;
    font-size: 19px;
    font-weight: 900;
    margin-bottom: 8px;
}

.lbb-step p {
    color: #4a3941;
    font-size: 14px;
    line-height: 1.45;
    margin: 0;
}

.lbb-occasion-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

.lbb-occasion-grid a,
.lbb-social-grid span {
    background: #ffffff;
    border-radius: 6px;
    color: var(--lbb-black) !important;
    font-weight: 900;
    padding: 18px 14px;
    text-align: center;
}

.lbb-topper-grid,
.lbb-social-grid {
    display: grid;
    gap: 14px;
}

.lbb-topper-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.lbb-social-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.lbb-topper-card {
    align-items: center;
    background: var(--lbb-black);
    border: 2px solid var(--lbb-hot-pink);
    border-radius: 8px;
    color: #ffffff;
    display: flex;
    font-size: 20px;
    font-weight: 900;
    justify-content: center;
    min-height: 150px;
    padding: 18px;
    text-align: center;
}

.lbb-gift-tile {
    background: #ffffff;
    border: 2px solid var(--lbb-black);
    border-radius: 8px;
    color: var(--lbb-black) !important;
    display: grid;
    grid-template-columns: 42% 58%;
    min-height: 230px;
    overflow: hidden;
}

.lbb-gift-tile-image {
    background: var(--lbb-blush);
    display: block;
    min-height: 100%;
}

.lbb-gift-tile-image img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.lbb-gift-tile-body {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 16px;
}

.lbb-gift-tile-body small {
    color: var(--lbb-hot-pink);
    font-size: 11px;
    font-style: normal;
    font-weight: 900;
    text-transform: uppercase;
}

.lbb-gift-tile-body strong {
    font-size: 20px;
    font-weight: 900;
    line-height: 1.05;
}

.lbb-gift-tile-body em {
    color: #5d4a50;
    font-size: 14px;
    font-style: normal;
    line-height: 1.4;
}

.lbb-gift-tile-footer {
    align-items: center;
    display: flex;
    gap: 8px;
    justify-content: space-between;
    margin-top: auto;
}

.lbb-gift-tile-footer span {
    font-weight: 900;
}

.lbb-gift-tile-footer b {
    background: var(--lbb-black);
    border-radius: 999px;
    color: #ffffff;
    font-size: 12px;
    padding: 8px 10px;
}

.lbb-product-promise,
.lbb-product-gift-panel {
    background: var(--lbb-cream);
    border: 2px solid var(--lbb-black);
    border-radius: 8px;
}

.lbb-product-context {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 18px;
}

.lbb-product-context span {
    background: var(--lbb-blush);
    border: 1px solid #f2bfd4;
    border-radius: 999px;
    color: var(--lbb-black);
    font-size: 12px;
    font-weight: 800;
    padding: 8px 10px;
}

.lbb-choice-header h5::before {
    background: var(--lbb-hot-pink);
    border-radius: 999px;
    color: #ffffff;
    content: "01";
    display: inline-flex;
    font-size: 11px;
    height: 26px;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    width: 26px;
}

.lbb-product-builder {
    background: #ffffff;
    border: 2px solid var(--lbb-black) !important;
}

.lbb-product-story {
    background: var(--lbb-cream);
    padding: 28px 0 48px;
}

.lbb-product-story-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-bottom: 18px;
}

.lbb-product-story-grid>div,
.lbb-product-description {
    background: #ffffff;
    border: 2px solid var(--lbb-black);
    border-radius: 8px;
    padding: 22px;
}

.lbb-product-story-grid h3 {
    color: var(--lbb-black);
    font-size: 22px;
    font-weight: 900;
    line-height: 1.1;
}

.lbb-product-story-grid p {
    color: #5d4a50;
}

.lbb-product-promise {
    padding: 14px 16px;
}

.lbb-product-promise strong,
.lbb-product-promise span {
    display: block;
}

.lbb-product-promise strong {
    color: var(--lbb-black);
    font-size: 15px;
    font-weight: 900;
}

.lbb-product-promise span {
    color: #5d4a50;
    font-size: 13px;
    margin-top: 3px;
}

.lbb-product-gift-panel {
    display: grid;
    gap: 16px;
    grid-template-columns: 1.2fr 1fr;
    margin-top: 18px;
    padding: 18px;
}

.lbb-product-gift-panel h5 {
    color: var(--lbb-black);
    font-size: 15px;
    font-weight: 900;
    margin-bottom: 12px;
}

.lbb-product-gift-panel ul {
    display: grid;
    gap: 8px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    list-style: none;
    margin: 0;
    padding: 0;
}

.lbb-product-gift-panel li,
.lbb-product-gift-panel p {
    background: #ffffff;
    border: 1px solid #f2bfd4;
    border-radius: 999px;
    color: #241820;
    font-size: 13px;
    font-weight: 700;
    margin: 0 0 8px;
    padding: 8px 10px;
}

.lbb-cart-note {
    color: #4a3941;
    font-size: 14px;
    font-weight: 800;
    margin: 0 0 12px;
}

@media (max-width: 991px) {

    .lbb-builder-grid,
    .lbb-occasion-grid,
    .lbb-topper-grid,
    .lbb-social-grid,
    .lbb-builder-studio,
    .lbb-product-story-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .lbb-studio-form {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .lbb-section-head-row {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 575px) {
    .lbb-hero {
        padding-top: 34px;
    }

    .lbb-hero h1 {
        font-size: 44px;
    }

    .lbb-hero-media {
        box-shadow: 10px 10px 0 var(--lbb-black);
        min-height: 280px;
    }

    .lbb-builder-grid,
    .lbb-occasion-grid,
    .lbb-topper-grid,
    .lbb-social-grid,
    .lbb-product-gift-panel,
    .lbb-product-gift-panel ul,
    .lbb-builder-studio,
    .lbb-studio-form,
    .lbb-gift-tile,
    .lbb-product-story-grid {
        grid-template-columns: 1fr;
    }
}

/* Little Bitch Bakes premium compact pass */
.aiz-thecore {
    background: #fff9f6;
}

.aiz-thecore,
.aiz-thecore p,
.aiz-thecore a,
.aiz-thecore button,
.aiz-thecore input,
.aiz-thecore select {
    letter-spacing: 0;
}

.aiz-thecore .top-navbar,
.aiz-thecore .top-navbar .container,
.aiz-thecore .top-navbar .layout-container {
    min-height: 38px;
}

.aiz-thecore .main-header {
    border-bottom: 1px solid rgba(17, 17, 17, 0.06);
}

.aiz-thecore .main-header .py-20px {
    padding-bottom: 18px !important;
    padding-top: 18px !important;
}

.aiz-thecore .logo-bar-area,
.aiz-thecore .header-logo,
.aiz-thecore .logo {
    max-height: 46px;
}

.aiz-thecore .logo img,
.aiz-thecore .header-logo img {
    max-height: 38px;
    width: auto;
}

.aiz-thecore .search {
    border-color: rgba(255, 47, 146, 0.22) !important;
    border-radius: 999px !important;
    box-shadow: 0 10px 28px rgba(185, 34, 102, 0.06);
    height: 44px !important;
}

.aiz-thecore .search input,
.aiz-thecore .search .form-control {
    font-size: 14px !important;
    height: 42px !important;
}

.aiz-thecore .bottom-background-color-visibility {
    box-shadow: 0 12px 28px rgba(230, 36, 131, 0.14);
}

.aiz-thecore .h-50px {
    height: 44px !important;
}

.aiz-thecore .all-category>.px-3,
.aiz-thecore .header_menu_links {
    padding-bottom: 10px !important;
    padding-top: 10px !important;
}

.aiz-thecore .all-category span,
.aiz-thecore .header_menu_links,
.aiz-thecore .nav-cart-box {
    font-size: 13px !important;
    font-weight: 700 !important;
}

.lbb-hero {
    background:
        radial-gradient(circle at 86% 12%, rgba(255, 47, 146, 0.16) 0, rgba(255, 47, 146, 0) 34%),
        linear-gradient(135deg, #fff8f4 0%, #ffeaf3 58%, #ffd6ea 100%);
    padding: 42px 0 46px;
}

.lbb-hero .row {
    min-height: 520px;
}

.lbb-kicker,
.lbb-product-kicker {
    color: #ed2b88;
    font-size: 11px;
    font-weight: 800;
    margin-bottom: 12px;
}

.lbb-hero h1 {
    font-size: 58px;
    font-weight: 850;
    line-height: 1;
    max-width: 520px;
}

.lbb-lede {
    color: #413039;
    font-size: 16px;
    line-height: 1.62;
    max-width: 510px;
}

.lbb-btn,
.lbb-link {
    border-radius: 5px;
    font-size: 13px;
    min-height: 42px;
    padding: 0 18px;
}

.lbb-btn-primary,
.lbb-gift-tile-footer b,
.lbb-studio-form button {
    box-shadow: 0 10px 22px rgba(17, 17, 17, 0.12);
}

.lbb-btn-outline {
    border: 1px solid rgba(17, 17, 17, 0.35);
}

.lbb-proof-row {
    gap: 8px;
    margin-top: 18px;
}

.lbb-proof-row span {
    background: rgba(255, 255, 255, 0.82);
    border-color: rgba(17, 17, 17, 0.08);
    box-shadow: 0 8px 22px rgba(185, 34, 102, 0.06);
    font-size: 12px;
    padding: 7px 11px;
}

.lbb-hero-media {
    aspect-ratio: 1.12 / 1;
    border: 1px solid rgba(17, 17, 17, 0.78);
    border-radius: 12px;
    box-shadow: 0 26px 54px rgba(82, 16, 45, 0.18);
    min-height: 0;
}

.lbb-message-card {
    border: 1px solid rgba(17, 17, 17, 0.72);
    border-radius: 7px;
    box-shadow: 0 12px 24px rgba(17, 17, 17, 0.18);
    font-size: 13px;
    font-weight: 850;
    max-width: 205px;
    padding: 11px 13px;
}

.lbb-builder-band,
.lbb-featured-products,
.lbb-occasion-band,
.lbb-topper-band,
.lbb-social-proof-band {
    padding: 56px 0;
}

.lbb-builder-band {
    background: #ffffff;
}

.lbb-featured-products {
    background: #fff8f1;
}

.lbb-social-proof-band {
    background: #ffe5f0;
}

.lbb-section-head {
    margin-bottom: 20px;
}

.lbb-section-head h2 {
    font-size: 36px;
    font-weight: 850;
    line-height: 1.08;
    max-width: 720px;
}

.lbb-section-head-row {
    align-items: flex-end;
}

.lbb-builder-studio {
    background: #151214;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    box-shadow: 0 22px 48px rgba(17, 17, 17, 0.12);
    grid-template-columns: 0.72fr 1.6fr;
    margin-bottom: 18px;
    padding: 18px;
}

.lbb-studio-copy span {
    font-size: 11px;
    margin-bottom: 7px;
}

.lbb-studio-copy strong {
    font-size: 22px;
    font-weight: 850;
    line-height: 1.12;
    max-width: 360px;
}

.lbb-studio-copy p {
    font-size: 13px;
    line-height: 1.55;
    max-width: 420px;
}

.lbb-studio-form {
    align-items: end;
    gap: 8px;
}

.lbb-studio-form label span {
    font-size: 10px;
    margin-bottom: 5px;
}

.lbb-studio-form select,
.lbb-studio-form button {
    border-radius: 5px;
    font-size: 13px;
    min-height: 42px;
}

.lbb-step {
    background: #fff1f7;
    border: 1px solid rgba(17, 17, 17, 0.22);
    border-radius: 10px;
    box-shadow: 0 14px 34px rgba(185, 34, 102, 0.07);
    min-height: 150px;
    padding: 18px;
}

.lbb-step span {
    font-size: 11px;
    margin-bottom: 28px;
}

.lbb-step strong {
    font-size: 17px;
    font-weight: 850;
}

.lbb-step p {
    font-size: 13px;
}

.lbb-gift-tile {
    border: 1px solid rgba(17, 17, 17, 0.22);
    border-radius: 10px;
    box-shadow: 0 16px 38px rgba(76, 28, 48, 0.08);
    grid-template-columns: 45% 55%;
    min-height: 196px;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.lbb-gift-tile:hover {
    border-color: rgba(255, 47, 146, 0.48);
    box-shadow: 0 20px 46px rgba(76, 28, 48, 0.12);
    transform: translateY(-2px);
}

.lbb-gift-tile-body {
    gap: 7px;
    padding: 15px;
}

.lbb-gift-tile-body small {
    font-size: 10px;
}

.lbb-gift-tile-body strong {
    font-size: 18px;
    font-weight: 850;
    line-height: 1.08;
}

.lbb-gift-tile-body em {
    font-size: 13px;
    line-height: 1.38;
}

.lbb-gift-tile-footer {
    gap: 6px;
}

.lbb-gift-tile-footer span {
    font-size: 13px;
}

.lbb-gift-tile-footer b {
    border-radius: 6px;
    font-size: 11px;
    max-width: 102px;
    overflow: hidden;
    padding: 7px 9px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.lbb-topper-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.lbb-topper-card {
    background: #151214;
    border: 1px solid rgba(255, 47, 146, 0.42);
    border-radius: 10px;
    box-shadow: 0 18px 42px rgba(17, 17, 17, 0.1);
    font-size: 17px;
    font-weight: 850;
    min-height: 112px;
    padding: 18px;
}

.lbb-social-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.lbb-occasion-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.lbb-occasion-grid a,
.lbb-social-grid span {
    border: 1px solid rgba(17, 17, 17, 0.08);
    border-radius: 10px;
    box-shadow: 0 12px 30px rgba(76, 28, 48, 0.06);
    font-size: 14px;
    font-weight: 800;
    padding: 15px 14px;
}

.lbb-product-promise,
.lbb-product-gift-panel,
.lbb-product-builder,
.lbb-product-story-grid>div,
.lbb-product-description {
    border: 1px solid rgba(17, 17, 17, 0.18) !important;
    border-radius: 10px;
    box-shadow: 0 14px 34px rgba(76, 28, 48, 0.06);
}

.lbb-product-story {
    background: #fff8f1;
}

.lbb-product-story-grid h3 {
    font-size: 18px;
    font-weight: 850;
}

@media (max-width: 1199px) {
    .lbb-hero .row {
        min-height: 460px;
    }

    .lbb-hero h1 {
        font-size: 50px;
    }

    .lbb-section-head h2 {
        font-size: 32px;
    }

    .lbb-builder-studio {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991px) {
    .lbb-hero .row {
        min-height: 0;
    }

    .lbb-hero h1 {
        font-size: 44px;
    }

    .lbb-hero-media {
        aspect-ratio: 1.25 / 1;
    }

    .lbb-builder-grid,
    .lbb-topper-grid,
    .lbb-social-grid,
    .lbb-occasion-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575px) {
    .lbb-hero {
        padding: 30px 0 34px;
    }

    .lbb-hero h1 {
        font-size: 38px;
    }

    .lbb-lede {
        font-size: 15px;
    }

    .lbb-builder-band,
    .lbb-featured-products,
    .lbb-occasion-band,
    .lbb-topper-band,
    .lbb-social-proof-band {
        padding: 38px 0;
    }

    .lbb-section-head h2 {
        font-size: 27px;
    }

    .lbb-builder-grid,
    .lbb-topper-grid,
    .lbb-social-grid,
    .lbb-occasion-grid {
        grid-template-columns: 1fr;
    }

    .lbb-gift-tile {
        grid-template-columns: 40% 60%;
        min-height: 176px;
    }

    .lbb-gift-tile-body strong {
        font-size: 16px;
    }
}

/* Little Bitch Bakes product page refinement */
.aiz-thecore .product-details-page .bg-light,
.aiz-thecore .product-details-page .border-dashed {
    background: #fff9f6 !important;
    border: 1px solid rgba(17, 17, 17, 0.1) !important;
    border-radius: 10px !important;
}

.aiz-thecore .product-details-page .bg-light.px-20px.py-20px {
    padding: 14px 16px !important;
}

.aiz-thecore .product-details-page .border-dashed {
    padding: 14px 16px 16px !important;
}

.aiz-thecore .product-details-page .buy-now,
.aiz-thecore .product-details-page .add-to-cart {
    border-radius: 6px !important;
    font-size: 13px !important;
    min-height: 44px !important;
    padding: 12px 16px !important;
}

.aiz-thecore .product-details-page .buy-now {
    background: #151214 !important;
    box-shadow: 0 12px 26px rgba(17, 17, 17, 0.14);
}

.aiz-thecore .product-details-page .add-to-cart {
    background: #fff0f7 !important;
    border: 1px solid rgba(255, 47, 146, 0.24) !important;
    color: #151214 !important;
}

.aiz-thecore .product-details-page .variant-wrapper {
    gap: 8px;
}

.aiz-thecore .product-details-page .aiz-megabox {
    margin-right: 6px;
}

.aiz-thecore .product-details-page .variant-item-select {
    border-radius: 999px !important;
    min-height: 38px;
}

.aiz-thecore .product-details-page .aiz-megabox-elem {
    border-color: rgba(17, 17, 17, 0.12) !important;
}

.aiz-thecore .product-details-page .aiz-megabox>input:checked~.aiz-megabox-elem {
    border-color: rgba(255, 47, 146, 0.8) !important;
    box-shadow: 0 0 0 3px rgba(255, 47, 146, 0.12);
}

.aiz-thecore .product-details-page .variant-item-select span {
    font-size: 13px !important;
    font-weight: 700 !important;
}

.lbb-choice-header {
    align-items: center;
    display: flex;
    justify-content: space-between;
}

.lbb-choice-header h5 {
    color: #2b2228 !important;
    font-size: 14px !important;
    font-weight: 850 !important;
}

.lbb-choice-header h5::before {
    height: 22px;
    width: 22px;
}

.lbb-product-builder {
    background: #ffffff !important;
    padding: 12px 14px !important;
}

.lbb-product-context {
    gap: 7px;
    margin-bottom: 14px;
}

.lbb-product-context span,
.lbb-product-gift-panel li,
.lbb-product-gift-panel p {
    font-size: 12px;
    padding: 7px 10px;
}

.lbb-product-gift-panel {
    gap: 12px;
    margin-top: 14px;
    padding: 14px;
}

.lbb-product-gift-panel h5 {
    font-size: 13px;
    margin-bottom: 9px;
}

.lbb-product-promise {
    padding: 12px 14px;
}

.lbb-product-promise strong {
    font-size: 14px;
}

.lbb-product-promise span {
    font-size: 12px;
}

.lbb-product-story {
    padding: 42px 0;
}

.lbb-product-description,
.lbb-product-story-grid>div {
    padding: 18px;
}

/* Little Bitch Bakes header cleanup after logged-in QA */
.aiz-thecore header.middle-background-color-visibility {
    position: relative;
    z-index: 1040;
}

.aiz-thecore .logo-bar-area {
    background: #ffffff;
    border-bottom: 1px solid rgba(17, 17, 17, 0.06) !important;
    overflow: visible;
}

.aiz-thecore .logo-bar-area>.container>.d-flex,
.aiz-thecore .logo-bar-area>.layout-container>.d-flex {
    min-height: 66px;
}

.aiz-thecore #header-logo-preview {
    background: transparent !important;
    height: auto !important;
    max-height: 31px !important;
    max-width: 170px !important;
    object-fit: contain;
}

.aiz-thecore .logo-bar-area a.py-20px {
    padding-bottom: 0 !important;
    padding-top: 0 !important;
}

.aiz-thecore .front-header-search {
    background: transparent !important;
    flex: 0 1 760px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    max-width: 760px;
}

.aiz-thecore .search-input-box {
    width: 100%;
}

.aiz-thecore .search-input-box input {
    border-radius: 999px !important;
    box-shadow: 0 12px 30px rgba(185, 34, 102, 0.07);
    height: 42px !important;
    padding-left: 22px !important;
}

.aiz-thecore .search-input-box svg {
    right: 18px;
}

.aiz-thecore .lbb-nav-user-info {
    background: rgba(17, 17, 17, 0.035);
    border: 1px solid rgba(17, 17, 17, 0.08);
    border-radius: 999px;
    cursor: pointer;
    gap: 8px;
    height: 38px;
    padding: 4px 12px 4px 5px !important;
}

.aiz-thecore .lbb-nav-user-info .nav-user-img {
    height: 28px !important;
    width: 28px !important;
}

.aiz-thecore .lbb-nav-user-info h4 {
    color: #231b20 !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    margin-left: 0 !important;
    max-width: 72px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.aiz-thecore .hover-user-top-menu {
    top: calc(100% - 1px) !important;
}

.aiz-thecore .hover-user-top-menu .aiz-user-top-menu {
    border: 1px solid rgba(17, 17, 17, 0.08) !important;
    border-radius: 10px !important;
    box-shadow: 0 22px 48px rgba(17, 17, 17, 0.12) !important;
    overflow: hidden;
}

.aiz-thecore .bottom-background-color-visibility {
    position: relative;
    z-index: 1030;
}

.aiz-thecore #category-menu-bar {
    width: 270px;
}

.aiz-thecore .nav-cart-box svg {
    width: 20px;
}

@media (max-width: 1199px) {
    .aiz-thecore .front-header-search {
        flex-basis: 560px !important;
    }
}

/* Little Bitch Bakes editorial boutique homepage */
.aiz-thecore {
    background: #fffaf7;
    color: #171317;
}

.aiz-thecore,
.aiz-thecore h1,
.aiz-thecore h2,
.aiz-thecore h3,
.aiz-thecore h4,
.aiz-thecore p,
.aiz-thecore a,
.aiz-thecore button,
.aiz-thecore input,
.aiz-thecore textarea,
.aiz-thecore select {
    letter-spacing: 0;
}

.aiz-thecore .logo-bar-area {
    background: #fffaf7 !important;
    border-bottom: 1px solid rgba(23, 19, 23, 0.08) !important;
}

.aiz-thecore .logo-bar-area>.container>.d-flex,
.aiz-thecore .logo-bar-area>.layout-container>.d-flex {
    min-height: 70px;
}

.aiz-thecore #header-logo-preview {
    max-height: 28px !important;
    max-width: 190px !important;
}

.aiz-thecore .front-header-search {
    flex: 0 1 480px !important;
    max-width: 480px !important;
}

.aiz-thecore .front-header-search .px-3 {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.aiz-thecore .search-input-box input {
    background: #ffffff !important;
    border: 1px solid rgba(23, 19, 23, 0.14) !important;
    border-radius: 999px !important;
    box-shadow: none !important;
    color: #171317;
    font-size: 13px !important;
    height: 38px !important;
    padding-left: 18px !important;
    padding-right: 46px !important;
}

.aiz-thecore .search-input-box svg {
    height: 17px;
    right: 17px;
    width: 17px;
}

.aiz-thecore .bottom-background-color-visibility {
    background: #171317 !important;
    box-shadow: none !important;
    height: 44px !important;
}

.aiz-thecore .bottom-background-color-visibility .ml-xl-4 {
    margin-left: 0 !important;
}

.aiz-thecore .bottom-background-color-visibility .header_menu_links {
    color: #fffaf7 !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    padding: 13px 16px !important;
}

.aiz-thecore .bottom-background-color-visibility .header_menu_links:hover,
.aiz-thecore .bottom-background-color-visibility .header_menu_links.active {
    background: transparent !important;
    color: #ff2f92 !important;
}

.aiz-thecore .nav-cart-box,
.aiz-thecore .nav-cart-box span,
.aiz-thecore .nav-cart-box a {
    font-size: 12px !important;
    font-weight: 800 !important;
}

.aiz-thecore .nav-cart-box svg {
    width: 18px !important;
}

.aiz-thecore .lbb-nav-user-info {
    background: transparent !important;
    border: 0 !important;
    border-radius: 0;
    height: 34px;
    padding: 0 !important;
}

.aiz-thecore .lbb-nav-user-info .nav-user-img {
    height: 26px !important;
    width: 26px !important;
}

.aiz-thecore .lbb-nav-user-info h4 {
    font-size: 12px !important;
    max-width: 92px;
}

.lbb-editorial-hero {
    background: #fff4f8 !important;
    color: #171317;
    overflow: hidden;
    padding: 0 !important;
}

.lbb-hero-inner {
    align-items: center;
    display: grid;
    gap: 54px;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    min-height: 620px;
    padding: 72px 0 68px;
}

.lbb-hero-copy {
    min-width: 0;
}

.lbb-kicker,
.lbb-product-kicker {
    color: #ff2f92 !important;
    display: block;
    font-size: 12px !important;
    font-weight: 900 !important;
    line-height: 1.2;
    margin: 0 0 14px !important;
    text-transform: uppercase;
}

.lbb-editorial-hero h1 {
    color: #0f0d10;
    font-size: 68px !important;
    font-weight: 900;
    line-height: 0.96;
    margin: 0 0 22px;
    max-width: 590px;
}

.lbb-lede {
    color: #493942;
    font-size: 18px !important;
    line-height: 1.62;
    margin: 0;
    max-width: 560px;
}

.lbb-hero-actions {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 30px !important;
}

.lbb-btn {
    align-items: center;
    border-radius: 6px !important;
    display: inline-flex;
    font-size: 14px !important;
    font-weight: 900;
    justify-content: center;
    min-height: 46px !important;
    padding: 0 22px !important;
    text-decoration: none;
}

.lbb-btn-primary {
    background: #171317 !important;
    border: 1px solid #171317;
    box-shadow: none !important;
    color: #ffffff !important;
}

.lbb-text-link {
    color: #171317 !important;
    display: inline-flex;
    font-size: 14px;
    font-weight: 900;
    line-height: 1.2;
    text-decoration: underline;
    text-decoration-color: #ff2f92;
    text-decoration-thickness: 2px;
    text-underline-offset: 5px;
}

.lbb-hero-media {
    aspect-ratio: 1.12 / 1;
    background: #ffffff;
    border: 1px solid rgba(23, 19, 23, 0.36) !important;
    border-radius: 8px !important;
    box-shadow: 0 28px 70px rgba(69, 34, 49, 0.16) !important;
    display: block;
    margin: 0;
    min-height: 0 !important;
    overflow: hidden;
    position: relative;
}

.lbb-hero-media img {
    display: block;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.lbb-message-card {
    background: #fffaf7 !important;
    border: 1px solid rgba(23, 19, 23, 0.56) !important;
    border-radius: 6px !important;
    box-shadow: 0 14px 30px rgba(23, 19, 23, 0.2) !important;
    color: #171317 !important;
    font-size: 13px !important;
    font-weight: 900;
    left: 30px;
    max-width: 250px;
    padding: 12px 15px !important;
    position: absolute;
    top: 30px;
    transform: rotate(-3deg);
}

.lbb-builder-band,
.lbb-featured-products,
.lbb-topper-band,
.lbb-social-proof-band,
.lbb-occasion-band {
    padding: 70px 0 !important;
}

.lbb-builder-band {
    background: #ffffff !important;
}

.lbb-featured-products {
    background: #fffaf7 !important;
}

.lbb-topper-band {
    background: #ffffff !important;
}

.lbb-social-proof-band {
    background: #ffe7f0 !important;
}

.lbb-occasion-band {
    background: #171317 !important;
    color: #ffffff;
}

.lbb-section-head {
    margin-bottom: 30px !important;
}

.lbb-section-head-row {
    align-items: flex-end;
    display: flex;
    gap: 24px;
    justify-content: space-between;
}

.lbb-section-head h2 {
    color: inherit;
    font-size: 42px !important;
    font-weight: 900;
    line-height: 1.06;
    margin: 0;
    max-width: 760px;
}

.lbb-builder-caption {
    color: #6b555f;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.lbb-builder-experience {
    align-items: stretch;
    display: grid;
    gap: 24px;
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
}

.lbb-builder-main,
.lbb-builder-preview {
    border-radius: 8px;
}

.lbb-builder-main {
    background: #fff7fa;
    border: 1px solid rgba(23, 19, 23, 0.12);
    padding: 26px;
}

.lbb-builder-intro {
    border-bottom: 1px solid rgba(23, 19, 23, 0.1);
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.lbb-builder-intro h3,
.lbb-builder-preview-copy h3 {
    color: #171317;
    font-size: 28px;
    font-weight: 900;
    line-height: 1.12;
    margin: 0 0 10px;
}

.lbb-builder-intro p {
    color: #5d4952;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    max-width: 620px;
}

.lbb-builder-steps {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-bottom: 20px;
}

.lbb-builder-steps span {
    background: #ffffff;
    border: 1px solid rgba(23, 19, 23, 0.1);
    border-radius: 6px;
    color: #5d4952;
    display: block;
    font-size: 12px;
    font-weight: 800;
    min-height: 50px;
    padding: 10px 12px;
}

.lbb-builder-steps b {
    color: #ff2f92;
    display: block;
    font-size: 11px;
    margin-bottom: 3px;
}

.lbb-choice-panel {
    background: #ffffff;
    border: 1px solid rgba(23, 19, 23, 0.12);
    border-radius: 8px;
    margin-top: 14px;
    padding: 18px;
}

.lbb-choice-heading {
    align-items: flex-start;
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
}

.lbb-choice-heading>span {
    align-items: center;
    background: #171317;
    border-radius: 999px;
    color: #ffffff;
    display: inline-flex;
    flex: 0 0 30px;
    font-size: 11px;
    font-weight: 900;
    height: 30px;
    justify-content: center;
    width: 30px;
}

.lbb-choice-heading strong {
    color: #171317;
    display: block;
    font-size: 17px;
    font-weight: 900;
    line-height: 1.2;
}

.lbb-choice-heading p {
    color: #6b555f;
    font-size: 13px;
    line-height: 1.45;
    margin: 3px 0 0;
}

.lbb-choice-grid {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.lbb-choice-grid-compact {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.lbb-builder-split {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lbb-choice-card {
    cursor: pointer;
    display: block;
    margin: 0;
    min-width: 0;
}

.lbb-choice-card input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.lbb-choice-card>span {
    background: #fffaf7;
    border: 1px solid rgba(23, 19, 23, 0.13);
    border-radius: 6px;
    color: #171317;
    display: block;
    min-height: 78px;
    padding: 13px;
    transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.lbb-choice-card input:checked+span {
    border-color: #ff2f92;
    box-shadow: inset 0 0 0 1px #ff2f92, 0 10px 22px rgba(255, 47, 146, 0.1);
}

.lbb-choice-card small {
    color: #ff2f92;
    display: block;
    font-size: 10px;
    font-weight: 900;
    margin-bottom: 10px;
}

.lbb-choice-card strong {
    color: #171317;
    display: block;
    font-size: 14px;
    font-weight: 900;
    line-height: 1.25;
    overflow-wrap: anywhere;
}

.lbb-flavour-card>span {
    align-items: center;
    display: flex;
    gap: 10px;
    min-height: 62px;
}

.lbb-flavour-card i {
    border: 1px solid rgba(23, 19, 23, 0.16);
    border-radius: 999px;
    display: inline-block;
    flex: 0 0 24px;
    height: 24px;
    width: 24px;
}

.lbb-note-panel {
    margin-top: 14px;
}

.lbb-note-panel label {
    color: #171317;
    display: block;
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 8px;
}

.lbb-note-panel textarea {
    background: #ffffff;
    border: 1px solid rgba(23, 19, 23, 0.14);
    border-radius: 6px;
    color: #171317;
    font-size: 14px;
    line-height: 1.5;
    min-height: 96px;
    padding: 13px 14px;
    resize: vertical;
    width: 100%;
}

.lbb-builder-preview {
    align-self: stretch;
    background: #171317;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.lbb-builder-preview-image {
    aspect-ratio: 1 / 1;
    background: #fff0f6;
    overflow: hidden;
}

.lbb-builder-preview-image img {
    display: block;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.lbb-builder-preview-copy {
    padding: 22px;
}

.lbb-builder-preview-copy h3 {
    color: #ffffff;
}

.lbb-builder-preview-copy ul {
    display: grid;
    gap: 8px;
    list-style: none;
    margin: 18px 0;
    padding: 0;
}

.lbb-builder-preview-copy li {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 13px;
    font-weight: 800;
    padding: 9px 11px;
}

.lbb-builder-preview-copy button {
    background: #ff2f92;
    border: 0;
    border-radius: 6px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 900;
    min-height: 46px;
    padding: 0 18px;
    width: 100%;
}

.lbb-product-grid {
    display: grid;
    gap: 28px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.lbb-gift-tile {
    background: #ffffff !important;
    border: 1px solid rgba(23, 19, 23, 0.14) !important;
    border-radius: 8px !important;
    box-shadow: none !important;
    color: #171317 !important;
    display: flex !important;
    flex-direction: column;
    min-height: 100% !important;
    overflow: hidden;
    text-decoration: none !important;
    transform: none !important;
}

.lbb-gift-tile:hover {
    border-color: rgba(255, 47, 146, 0.55) !important;
    box-shadow: 0 18px 36px rgba(69, 34, 49, 0.09) !important;
    transform: translateY(-2px) !important;
}

.lbb-gift-tile-image {
    aspect-ratio: 1 / 1.02;
    background: #ffe7f0;
    display: block;
    overflow: hidden;
}

.lbb-gift-tile-image img {
    display: block;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.lbb-gift-tile-body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    gap: 10px !important;
    padding: 18px !important;
}

.lbb-gift-tile-body small {
    color: #ff2f92 !important;
    font-size: 11px !important;
    font-style: normal;
    font-weight: 900;
    line-height: 1.2;
    text-transform: uppercase;
}

.lbb-gift-tile-body strong {
    color: #171317;
    font-size: 22px !important;
    font-weight: 900 !important;
    line-height: 1.12 !important;
    overflow-wrap: anywhere;
}

.lbb-gift-tile-body em {
    color: #5d4952;
    font-size: 14px !important;
    font-style: normal;
    line-height: 1.48 !important;
}

.lbb-gift-tile-footer {
    align-items: center;
    display: flex;
    gap: 12px !important;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 6px;
}

.lbb-gift-tile-footer span {
    color: #171317;
    font-size: 15px !important;
    font-weight: 900;
    white-space: nowrap;
}

.lbb-gift-tile-footer b {
    background: #171317 !important;
    border-radius: 6px !important;
    color: #ffffff;
    flex: 0 0 auto;
    font-size: 12px !important;
    font-weight: 900;
    max-width: none !important;
    overflow: visible !important;
    padding: 10px 13px !important;
    text-overflow: clip !important;
    white-space: normal !important;
}

.lbb-topper-editorial-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.lbb-topper-product-card {
    background: #fffaf7;
    border: 1px solid rgba(23, 19, 23, 0.14);
    border-radius: 8px;
    color: #171317 !important;
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
    text-decoration: none !important;
}

.lbb-topper-product-media {
    aspect-ratio: 1 / 0.76;
    background: #ffe7f0;
    display: block;
    overflow: hidden;
}

.lbb-topper-product-media img {
    display: block;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.lbb-topper-product-body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    gap: 8px;
    padding: 17px;
}

.lbb-topper-product-body small {
    color: #ff2f92;
    font-size: 12px;
    font-weight: 900;
    line-height: 1.35;
}

.lbb-topper-product-body strong {
    color: #171317;
    font-size: 18px;
    font-weight: 900;
    line-height: 1.15;
}

.lbb-topper-product-body em {
    color: #5d4952;
    font-size: 13px;
    font-style: normal;
    font-weight: 900;
    margin-top: auto;
}

.lbb-social-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.lbb-social-grid span {
    background: #ffffff;
    border: 1px solid rgba(23, 19, 23, 0.1);
    border-radius: 8px;
    color: #171317 !important;
    font-size: 14px;
    font-weight: 900;
    padding: 16px;
    text-align: center;
}

.lbb-occasion-editorial-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.lbb-occasion-card {
    background: #fffaf7;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    color: #171317 !important;
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
    text-decoration: none !important;
}

.lbb-occasion-media {
    aspect-ratio: 1 / 0.62;
    background: #ffe7f0;
    display: block;
    overflow: hidden;
}

.lbb-occasion-media img {
    display: block;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.lbb-occasion-body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    gap: 10px;
    padding: 18px;
}

.lbb-occasion-body strong {
    color: #171317;
    font-size: 21px;
    font-weight: 900;
    line-height: 1.14;
}

.lbb-occasion-body em {
    color: #5d4952;
    font-size: 14px;
    font-style: normal;
    line-height: 1.5;
}

.lbb-occasion-body b {
    color: #ff2f92;
    font-size: 13px;
    font-weight: 900;
    margin-top: auto;
}

@media (max-width: 1199px) {
    .lbb-hero-inner {
        gap: 38px;
        min-height: 540px;
        padding: 62px 0;
    }

    .lbb-editorial-hero h1 {
        font-size: 56px !important;
    }

    .lbb-section-head h2 {
        font-size: 36px !important;
    }

    .lbb-builder-experience {
        grid-template-columns: 1fr;
    }

    .lbb-builder-preview {
        display: grid;
        grid-template-columns: minmax(0, 0.75fr) minmax(0, 1fr);
    }

    .lbb-builder-preview-image {
        aspect-ratio: auto;
        min-height: 320px;
    }

    .lbb-product-grid,
    .lbb-topper-editorial-grid {
        gap: 22px;
    }
}

@media (max-width: 991px) {
    .aiz-thecore .front-header-search {
        max-width: none !important;
    }

    .lbb-hero-inner {
        grid-template-columns: 1fr;
        min-height: 0;
        padding: 54px 0 58px;
    }

    .lbb-hero-media {
        aspect-ratio: 1.25 / 1;
    }

    .lbb-product-grid,
    .lbb-topper-editorial-grid,
    .lbb-occasion-editorial-grid,
    .lbb-social-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .lbb-builder-steps,
    .lbb-choice-grid,
    .lbb-choice-grid-compact,
    .lbb-builder-split {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .lbb-section-head-row {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 767px) {

    .aiz-thecore .logo-bar-area>.container>.d-flex,
    .aiz-thecore .logo-bar-area>.layout-container>.d-flex {
        min-height: 58px;
    }

    .lbb-editorial-hero h1 {
        font-size: 44px !important;
        max-width: 430px;
    }

    .lbb-lede {
        font-size: 16px !important;
    }

    .lbb-builder-band,
    .lbb-featured-products,
    .lbb-topper-band,
    .lbb-social-proof-band,
    .lbb-occasion-band {
        padding: 50px 0 !important;
    }

    .lbb-section-head h2 {
        font-size: 30px !important;
    }

    .lbb-builder-main {
        padding: 18px;
    }

    .lbb-builder-preview {
        display: flex;
    }

    .lbb-builder-preview-image {
        aspect-ratio: 1 / 0.74;
        min-height: 0;
    }

    .lbb-product-grid,
    .lbb-topper-editorial-grid,
    .lbb-occasion-editorial-grid,
    .lbb-social-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 430px) {
    .lbb-hero-inner {
        gap: 28px;
        padding: 42px 0 46px;
    }

    .lbb-editorial-hero h1 {
        font-size: 38px !important;
    }

    .lbb-hero-actions {
        align-items: stretch;
        flex-direction: column;
        gap: 14px;
    }

    .lbb-btn,
    .lbb-text-link {
        width: 100%;
    }

    .lbb-text-link {
        justify-content: center;
    }

    .lbb-message-card {
        font-size: 12px !important;
        left: 16px;
        max-width: 210px;
        top: 16px;
    }

    .lbb-builder-steps,
    .lbb-choice-grid,
    .lbb-choice-grid-compact,
    .lbb-builder-split {
        grid-template-columns: 1fr;
    }

    .lbb-choice-card>span {
        min-height: 64px;
    }

    .lbb-gift-tile-footer {
        align-items: stretch;
        flex-direction: column;
    }

    .lbb-gift-tile-footer b {
        text-align: center;
        width: 100%;
    }
}

@media (max-width: 360px) {
    .lbb-editorial-hero h1 {
        font-size: 34px !important;
    }

    .lbb-section-head h2 {
        font-size: 27px !important;
    }

    .lbb-gift-tile-body strong,
    .lbb-occasion-body strong {
        font-size: 19px !important;
    }
}

/* LBB boutique catalog, conversion-first product summary and footer */
.lbb-product-purchase-panel>h1 {
    font-size: 34px;
}

.lbb-product-promise {
    margin-bottom: 16px;
}

.lbb-product-form {
    padding-top: 14px;
}

.lbb-selected-gift {
    margin: 0 0 12px;
    padding: 10px 0;
}

.lbb-product-trust {
    margin-top: 14px;
}

.lbb-product-personalise {
    border-bottom: 1px solid rgba(17, 17, 17, .12);
    border-top: 1px solid rgba(17, 17, 17, .12);
    margin-top: 18px;
}

.lbb-product-personalise summary {
    align-items: center;
    color: var(--lbb-black);
    cursor: pointer;
    display: flex;
    font-size: 13px;
    font-weight: 650;
    justify-content: space-between;
    list-style: none;
    min-height: 48px;
}

.lbb-product-personalise summary::-webkit-details-marker {
    display: none;
}

.lbb-product-personalise summary i {
    color: var(--lbb-hot-pink);
    transition: transform .2s ease;
}

.lbb-product-personalise[open] summary i {
    transform: rotate(180deg);
}

.lbb-product-personalise-fields {
    padding: 12px 0 4px;
}

.lbb-product-personalise-fields .lbb-product-note {
    margin-bottom: 14px;
}

.lbb-occasion-copy>i {
    color: var(--lbb-hot-pink);
    font-size: 22px;
    margin-bottom: 2px;
}

.lbb-category-catalog {
    background: var(--lbb-cream, #fffaf7);
    padding: 62px 0 78px;
}

.lbb-category-catalog-head {
    max-width: 720px;
    padding-bottom: 34px;
}

.lbb-category-catalog-head h1 {
    color: var(--lbb-black, #151215);
    font-size: 44px;
    font-weight: 750;
    line-height: 1.08;
    margin: 0 0 14px;
}

.lbb-category-catalog-head>p:last-child {
    color: #6d6066;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    max-width: 620px;
}

.lbb-category-catalog-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.lbb-category-catalog-card {
    background: #fff;
    border: 1px solid rgba(17, 17, 17, .1);
    border-radius: 5px;
    color: var(--lbb-black, #151215) !important;
    display: grid;
    grid-template-rows: auto 1fr;
    min-width: 0;
    overflow: hidden;
    transition: border-color .2s ease, transform .2s ease;
}

.lbb-category-catalog-card:hover {
    border-color: var(--lbb-hot-pink, #ff2f92);
    transform: translateY(-2px);
}

.lbb-category-catalog-media {
    aspect-ratio: 1.45 / 1;
    display: block;
    overflow: hidden;
}

.lbb-category-catalog-media img {
    height: 100%;
    object-fit: cover;
    transition: transform .25s ease;
    width: 100%;
}

.lbb-category-catalog-card:hover img {
    transform: scale(1.025);
}

.lbb-category-catalog-copy {
    display: flex;
    flex-direction: column;
    min-height: 148px;
    padding: 20px;
}

.lbb-category-catalog-copy strong {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.15;
}

.lbb-category-catalog-copy em {
    color: #756970;
    font-size: 12px;
    font-style: normal;
    line-height: 1.55;
    margin-top: 8px;
}

.lbb-category-catalog-copy b {
    color: var(--lbb-hot-pink, #ff2f92);
    font-size: 11px;
    font-weight: 650;
    margin-top: auto;
    padding-top: 18px;
}

.lbb-category-catalog-copy b i {
    margin-left: 4px;
}

.lbb-footer {
    background: #151215;
    color: #fff;
    padding: 48px 0 22px;
}

.lbb-footer-main {
    display: grid;
    gap: 44px;
    grid-template-columns: minmax(250px, 1.5fr) repeat(3, minmax(150px, 1fr));
}

.lbb-footer-brand img {
    background: #fff;
    height: 48px;
    max-width: 220px;
    object-fit: contain;
    padding: 8px 12px;
    width: auto;
}

.lbb-footer-brand p {
    color: rgba(255, 255, 255, .64);
    font-size: 12px;
    line-height: 1.65;
    margin: 18px 0 0;
    max-width: 330px;
}

.lbb-footer-nav,
.lbb-footer-contact {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    font-style: normal;
    gap: 9px;
}

.lbb-footer-nav strong,
.lbb-footer-contact strong {
    color: var(--lbb-hot-pink, #ff2f92);
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.lbb-footer-nav a,
.lbb-footer-contact a,
.lbb-footer-contact span {
    color: rgba(255, 255, 255, .72) !important;
    font-size: 12px;
    line-height: 1.45;
}

.lbb-footer-nav a:hover,
.lbb-footer-contact a:hover {
    color: #fff !important;
}

.lbb-footer-bottom {
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, .12);
    color: rgba(255, 255, 255, .5);
    display: flex;
    font-size: 11px;
    justify-content: space-between;
    margin-top: 36px;
    padding-top: 20px;
}

.lbb-footer-social {
    display: flex;
    gap: 9px;
}

.lbb-footer-social a {
    align-items: center;
    border: 1px solid rgba(255, 255, 255, .18);
    color: #fff !important;
    display: inline-flex;
    height: 32px;
    justify-content: center;
    width: 32px;
}

@media (max-width: 991px) {
    .lbb-category-catalog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .lbb-footer-main {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .lbb-product-purchase-panel {
        padding-top: 28px;
    }

    .lbb-product-purchase-panel>h1 {
        font-size: 28px;
    }

    .lbb-product-cta-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .lbb-category-catalog {
        padding: 42px 0 58px;
    }

    .lbb-category-catalog-head h1 {
        font-size: 32px;
    }
}

@media (max-width: 575px) {

    .lbb-category-catalog-grid,
    .lbb-footer-main {
        grid-template-columns: 1fr;
    }

    .lbb-category-catalog-card {
        grid-template-columns: 128px 1fr;
        grid-template-rows: 1fr;
    }

    .lbb-category-catalog-media {
        aspect-ratio: auto;
        min-height: 156px;
    }

    .lbb-category-catalog-copy {
        min-height: 156px;
        padding: 18px;
    }

    .lbb-footer {
        padding-bottom: 92px;
    }

    .lbb-footer-main {
        gap: 28px;
    }

    .lbb-footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
    }
}

/* LBB premium boutique experience */
.aiz-thecore {
    background: var(--lbb-cream) !important;
    color: var(--lbb-black);
    overflow-x: clip;
}

.aiz-thecore .container {
    max-width: 1320px;
}

.aiz-thecore header.middle-background-color-visibility,
.aiz-thecore .logo-bar-area {
    background: #fff !important;
}

.aiz-thecore .logo-bar-area>.container>.d-flex,
.aiz-thecore .logo-bar-area>.layout-container>.d-flex {
    min-height: 74px;
}

.aiz-thecore #header-logo-preview {
    max-height: 34px !important;
    max-width: 210px !important;
}

.aiz-thecore .bottom-background-color-visibility {
    background: #fff !important;
    border-bottom: 1px solid rgba(17, 17, 17, .11);
    border-top: 1px solid rgba(17, 17, 17, .06);
    height: 52px !important;
}

.aiz-thecore .bottom-background-color-visibility .header_menu_links {
    color: var(--lbb-black) !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    padding: 16px 18px !important;
}

.aiz-thecore .bottom-background-color-visibility .header_menu_links:hover,
.aiz-thecore .bottom-background-color-visibility .header_menu_links.active {
    background: transparent !important;
    color: var(--lbb-hot-pink) !important;
}

.aiz-thecore .bottom-background-color-visibility li:first-child .header_menu_links {
    color: var(--lbb-hot-pink) !important;
}

.aiz-thecore .bottom-background-color-visibility .bg-black-10,
.aiz-thecore .bottom-background-color-visibility .nav-cart-box {
    background: transparent !important;
}

.aiz-thecore .bottom-background-color-visibility .nav-cart-box>a {
    border-left: 1px solid rgba(17, 17, 17, .1);
    color: var(--lbb-black) !important;
    min-width: 74px;
    padding: 0 18px !important;
}

.aiz-thecore .bottom-background-color-visibility .nav-cart-box>a,
.aiz-thecore .bottom-background-color-visibility .nav-cart-box>a span,
.aiz-thecore .bottom-background-color-visibility .nav-cart-box>a svg {
    color: var(--lbb-black) !important;
}

.aiz-thecore .nav-cart-box>a>span:nth-of-type(2) {
    display: none !important;
}

.aiz-thecore .nav-cart-box>a>.nav-box-text {
    display: block !important;
    font-size: 0 !important;
    margin-left: 4px !important;
}

.aiz-thecore .nav-cart-box>a .cart-count {
    background: var(--lbb-hot-pink);
    border-radius: 999px;
    color: #fff !important;
    display: inline-flex;
    font-size: 11px !important;
    height: 20px;
    justify-content: center;
    line-height: 20px;
    min-width: 20px;
    padding: 0 5px;
}

.aiz-thecore .lbb-nav-user-info h4 {
    font-size: 12px !important;
    font-weight: 600 !important;
}

.lbb-editorial-hero {
    background: var(--lbb-cream) !important;
}

.lbb-hero-inner {
    gap: clamp(40px, 6vw, 86px);
    grid-template-columns: minmax(0, .84fr) minmax(520px, 1.16fr);
    min-height: 570px;
    padding: 58px 0 62px;
}

.lbb-kicker,
.lbb-product-kicker {
    color: var(--lbb-hot-pink) !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    margin-bottom: 12px !important;
}

.lbb-editorial-hero h1 {
    color: var(--lbb-black);
    font-size: 58px !important;
    font-weight: 800;
    line-height: 1.01;
    margin-bottom: 14px;
    max-width: 540px;
}

.lbb-hero-punchline {
    color: var(--lbb-black);
    font-size: 22px !important;
    font-weight: 600;
    line-height: 1.3;
    margin: 0 0 12px;
}

.lbb-lede {
    color: #5c5055;
    font-size: 16px !important;
    line-height: 1.65;
    max-width: 500px;
}

.lbb-hero-actions {
    gap: 22px;
    margin-top: 26px !important;
}

.lbb-btn,
.lbb-btn-primary,
.lbb-btn-secondary {
    border-radius: 4px !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    min-height: 46px;
}

.lbb-btn-primary {
    background: var(--lbb-black) !important;
    border-color: var(--lbb-black) !important;
}

.lbb-btn-primary:hover {
    background: var(--lbb-hot-pink) !important;
    border-color: var(--lbb-hot-pink) !important;
}

.lbb-text-link {
    color: var(--lbb-black) !important;
    font-size: 13px;
    font-weight: 600;
    text-decoration-color: var(--lbb-hot-pink);
}

.lbb-hero-media {
    aspect-ratio: 1.2 / 1;
    border: 0 !important;
    border-radius: 6px !important;
    box-shadow: 0 24px 60px rgba(53, 35, 43, .12) !important;
}

.lbb-message-card {
    border-color: rgba(17, 17, 17, .52) !important;
    border-radius: 4px !important;
    box-shadow: 6px 7px 0 var(--lbb-black) !important;
    font-size: 12px !important;
    font-weight: 700;
    left: 24px;
    top: 24px;
}

.lbb-how-band,
.lbb-builder-band,
.lbb-featured-products,
.lbb-topper-band,
.lbb-social-proof-band,
.lbb-occasion-band {
    padding: 76px 0 !important;
}

.lbb-how-band {
    background: #fff;
    border-bottom: 1px solid rgba(17, 17, 17, .08);
    border-top: 1px solid rgba(17, 17, 17, .08);
}

.lbb-section-head {
    margin-bottom: 38px !important;
}

.lbb-section-head-row {
    align-items: flex-end;
}

.lbb-section-head h2 {
    font-size: 38px !important;
    font-weight: 700;
    line-height: 1.13;
    max-width: 740px;
}

.lbb-section-note {
    color: #6d6066;
    font-size: 13px;
    line-height: 1.5;
    max-width: 280px;
    text-align: right;
}

.lbb-how-grid {
    border-top: 1px solid rgba(17, 17, 17, .16);
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.lbb-how-step {
    padding: 28px 42px 8px 0;
}

.lbb-how-step+.lbb-how-step {
    border-left: 1px solid rgba(17, 17, 17, .12);
    padding-left: 42px;
}

.lbb-how-step>span {
    color: var(--lbb-hot-pink);
    display: block;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 38px;
}

.lbb-how-step h3 {
    color: var(--lbb-black);
    font-size: 19px;
    font-weight: 650;
    margin: 0 0 9px;
}

.lbb-how-step p {
    color: #6d6066;
    font-size: 14px;
    line-height: 1.65;
    margin: 0;
    max-width: 310px;
}

.lbb-builder-band {
    background: #f8f2f3 !important;
}

.lbb-form-alert {
    background: #fff;
    border-left: 3px solid var(--lbb-hot-pink);
    color: var(--lbb-black);
    margin-bottom: 18px;
    padding: 13px 16px;
}

.lbb-builder-experience {
    background: #fff;
    border: 1px solid rgba(17, 17, 17, .12);
    border-radius: 6px;
    display: grid;
    gap: 0;
    grid-template-columns: minmax(330px, .72fr) minmax(0, 1.28fr);
    overflow: hidden;
}

.lbb-builder-preview {
    background: var(--lbb-black);
    border-radius: 0;
    color: #fff;
    display: flex;
    flex-direction: column;
}

.lbb-builder-preview-image {
    aspect-ratio: 1.12 / 1;
    min-height: 0;
    position: relative;
}

.lbb-builder-preview-image>span {
    background: #fff;
    bottom: 16px;
    color: var(--lbb-black);
    font-size: 10px;
    font-weight: 700;
    left: 16px;
    padding: 8px 10px;
    position: absolute;
    text-transform: uppercase;
}

.lbb-builder-preview-copy {
    padding: 24px;
}

.lbb-builder-preview-copy h3 {
    color: #fff;
    font-size: 24px;
    font-weight: 650;
    margin-bottom: 6px;
}

.lbb-builder-price {
    color: var(--lbb-barbie);
    font-size: 18px;
    font-weight: 700;
}

.lbb-builder-preview-copy dl,
.lbb-builder-review dl {
    margin: 20px 0 0;
}

.lbb-builder-preview-copy dl>div,
.lbb-builder-review dl>div {
    align-items: baseline;
    border-top: 1px solid rgba(255, 255, 255, .15);
    display: flex;
    gap: 16px;
    justify-content: space-between;
    padding: 10px 0;
}

.lbb-builder-preview-copy dt,
.lbb-builder-preview-copy dd {
    color: rgba(255, 255, 255, .72);
    font-size: 12px;
    margin: 0;
}

.lbb-builder-preview-copy dd {
    color: #fff;
    font-weight: 600;
    text-align: right;
}

.lbb-preview-note {
    color: rgba(255, 255, 255, .72);
    font-size: 12px;
    font-style: italic;
    line-height: 1.55;
    margin: 16px 0 0;
}

.lbb-builder-main {
    background: #fff;
    border: 0;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    min-height: 580px;
    padding: 34px 38px;
}

.lbb-builder-progress {
    align-items: center;
    display: flex;
    gap: 16px;
    margin-bottom: 44px;
}

.lbb-builder-progress>span {
    color: #6d6066;
    flex: 0 0 auto;
    font-size: 11px;
    font-weight: 600;
}

.lbb-builder-progress>i {
    background: #e8e1e3;
    display: block;
    height: 2px;
    overflow: hidden;
    width: 100%;
}

.lbb-builder-progress>i>b {
    background: var(--lbb-hot-pink);
    display: block;
    height: 100%;
    transition: width .2s ease;
    width: 0;
}

.lbb-builder-fields {
    flex: 1 1 auto;
}

.lbb-builder-step {
    border: 0;
    margin: 0;
    min-width: 0;
    padding: 0;
}

.lbb-builder-experience.is-enhanced .lbb-builder-step[hidden] {
    display: none !important;
}

.lbb-builder-step legend {
    color: var(--lbb-black);
    display: grid;
    font-size: 30px;
    font-weight: 700;
    grid-template-columns: auto 1fr;
    line-height: 1.15;
    margin-bottom: 12px;
    width: 100%;
}

.lbb-builder-step legend>span {
    color: var(--lbb-hot-pink);
    font-size: 11px;
    grid-row: 1 / span 2;
    margin-right: 14px;
    padding-top: 4px;
}

.lbb-builder-step legend>small {
    color: #776970;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
}

.lbb-builder-step>p {
    color: #6d6066;
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 26px 29px;
}

.lbb-builder-options {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.lbb-builder-options-occasion {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lbb-builder-options label {
    cursor: pointer;
    margin: 0;
}

.lbb-builder-options input {
    opacity: 0;
    position: absolute;
    pointer-events: none;
}

.lbb-builder-options label>span {
    align-items: center;
    background: #fcfaf9;
    border: 1px solid rgba(17, 17, 17, .16);
    border-radius: 4px;
    color: var(--lbb-black);
    display: flex;
    font-size: 13px;
    font-weight: 550;
    justify-content: center;
    min-height: 60px;
    padding: 12px;
    text-align: center;
    transition: border-color .15s ease, background .15s ease;
}

.lbb-builder-options input:checked+span {
    background: var(--lbb-black);
    border-color: var(--lbb-black);
    color: #fff;
}

.lbb-builder-note {
    display: block;
    margin: 0;
    position: relative;
}

.lbb-builder-note textarea {
    border: 1px solid rgba(17, 17, 17, .18);
    border-radius: 4px;
    color: var(--lbb-black);
    font-size: 14px;
    line-height: 1.6;
    min-height: 150px;
    padding: 16px 18px 32px;
    resize: vertical;
    width: 100%;
}

.lbb-builder-note>span {
    bottom: 10px;
    color: #8a7e83;
    font-size: 10px;
    position: absolute;
    right: 12px;
}

.lbb-builder-review dl {
    background: #fcfaf9;
    border: 1px solid rgba(17, 17, 17, .12);
    border-radius: 4px;
    padding: 6px 18px;
}

.lbb-builder-review dl>div {
    border-color: rgba(17, 17, 17, .1);
}

.lbb-builder-review dt,
.lbb-builder-review dd {
    color: #766970;
    font-size: 12px;
    margin: 0;
}

.lbb-builder-review dd {
    color: var(--lbb-black);
    font-weight: 600;
    text-align: right;
}

.lbb-builder-actions {
    align-items: center;
    display: flex;
    gap: 12px;
    justify-content: space-between;
    margin-top: 34px;
}

.lbb-builder-back,
.lbb-builder-next,
.lbb-builder-submit button {
    align-items: center;
    border-radius: 4px;
    display: inline-flex;
    font-size: 13px;
    font-weight: 650;
    gap: 8px;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
}

.lbb-builder-back {
    background: transparent;
    border: 0;
    color: #6d6066;
    padding-left: 0;
}

.lbb-builder-back:disabled {
    opacity: .35;
}

.lbb-builder-next,
.lbb-builder-submit .lbb-btn-primary {
    background: var(--lbb-hot-pink);
    border: 1px solid var(--lbb-hot-pink);
    color: #fff;
}

.lbb-builder-submit {
    display: flex;
    gap: 10px;
    margin-left: auto;
}

.lbb-builder-next[hidden],
.lbb-builder-submit[hidden] {
    display: none !important;
}

.lbb-builder-submit .lbb-btn-secondary {
    background: #fff;
    border: 1px solid rgba(17, 17, 17, .3);
    color: var(--lbb-black);
}

.lbb-featured-products {
    background: var(--lbb-cream) !important;
}

.lbb-product-grid {
    gap: 28px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.lbb-gift-tile {
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    overflow: visible;
}

.lbb-gift-tile:hover {
    border: 0 !important;
    box-shadow: none !important;
    transform: translateY(-3px) !important;
}

.lbb-gift-tile-image {
    aspect-ratio: 1 / 1.08;
    border-radius: 5px;
}

.lbb-gift-tile-body {
    gap: 7px !important;
    padding: 17px 2px 0 !important;
}

.lbb-gift-tile-body strong {
    font-size: 20px !important;
    font-weight: 650 !important;
    line-height: 1.25 !important;
}

.lbb-gift-tile-body em {
    color: #6d6066;
    font-size: 13px !important;
    line-height: 1.5 !important;
}

.lbb-gift-tile-footer {
    border-top: 1px solid rgba(17, 17, 17, .12);
    margin-top: 10px;
    padding-top: 13px;
}

.lbb-gift-tile-footer span {
    font-size: 14px !important;
    font-weight: 700;
}

.lbb-gift-tile-footer b {
    background: transparent !important;
    color: var(--lbb-hot-pink);
    font-size: 12px !important;
    font-weight: 650;
    padding: 0 !important;
}

.lbb-topper-band {
    background: #fff !important;
}

.lbb-topper-editorial-grid {
    gap: 26px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lbb-topper-product-card {
    background: #f8f2f3;
    border: 0;
    border-radius: 5px;
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(210px, .88fr);
}

.lbb-topper-product-card:nth-child(3n) {
    grid-template-columns: minmax(210px, .88fr) minmax(0, 1.12fr);
}

.lbb-topper-product-card:nth-child(3n) .lbb-topper-product-media {
    order: 2;
}

.lbb-topper-product-media {
    aspect-ratio: 1.15 / 1;
}

.lbb-topper-product-body {
    justify-content: center;
    padding: 28px;
}

.lbb-topper-product-body strong {
    font-size: 22px;
    font-weight: 650;
    line-height: 1.25;
}

.lbb-topper-product-body small,
.lbb-topper-product-body em {
    font-size: 11px;
    font-weight: 600;
}

.lbb-social-proof-band {
    background: #f2e7ea !important;
}

.lbb-social-gallery {
    display: grid;
    gap: 18px;
    grid-template-columns: 1.25fr .85fr .85fr;
}

.lbb-social-card {
    background: #fff;
    border-radius: 5px;
    color: var(--lbb-black) !important;
    display: block;
    overflow: hidden;
    position: relative;
}

.lbb-social-card img {
    aspect-ratio: .82 / 1;
    display: block;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.lbb-social-card:first-child img {
    aspect-ratio: 1.2 / 1;
}

.lbb-social-card span {
    background: rgba(17, 17, 17, .86);
    bottom: 12px;
    color: #fff;
    font-size: 11px;
    left: 12px;
    max-width: calc(100% - 24px);
    padding: 9px 11px;
    position: absolute;
}

.lbb-occasion-band {
    background: var(--lbb-black) !important;
}

.lbb-occasion-editorial-grid {
    gap: 1px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.lbb-occasion-card {
    background: #1b191a;
    border: 0;
    border-radius: 0;
    color: #fff !important;
    display: grid;
    gap: 20px;
    grid-template-columns: auto 1fr;
    padding: 28px;
}

.lbb-occasion-card>i {
    color: var(--lbb-hot-pink);
    font-size: 27px;
    margin-top: 2px;
}

.lbb-occasion-card>span {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.lbb-occasion-card strong {
    color: #fff;
    font-size: 18px;
    font-weight: 650;
}

.lbb-occasion-card em {
    color: rgba(255, 255, 255, .62);
    font-size: 13px;
    font-style: normal;
    line-height: 1.55;
}

.lbb-occasion-card b {
    color: var(--lbb-barbie);
    font-size: 11px;
    font-weight: 600;
    margin-top: 8px;
}

.lbb-occasion-card.has-image {
    background: #fff;
    display: flex;
    padding: 0;
}

.lbb-occasion-visual {
    aspect-ratio: 1.35 / 1;
    display: block;
    overflow: hidden;
}

.lbb-occasion-visual img {
    height: 100%;
    object-fit: cover;
    transition: transform .25s ease;
    width: 100%;
}

.lbb-occasion-card.has-image:hover .lbb-occasion-visual img {
    transform: scale(1.025);
}

.lbb-occasion-card.has-image .lbb-occasion-copy {
    padding: 22px;
}

.lbb-occasion-card.has-image strong {
    color: var(--lbb-black);
}

.lbb-occasion-card.has-image em {
    color: #6d6066;
}

.lbb-boutique-product {
    background: var(--lbb-cream);
}

.lbb-boutique-product>.container>div {
    padding-bottom: 72px !important;
    padding-top: 36px !important;
}

.lbb-boutique-product .breadcrumb {
    margin-bottom: 14px;
}

.lbb-product-gallery-main {
    aspect-ratio: 1 / 1.04;
    background: #f2e7ea;
    border-radius: 5px;
    margin: 0;
    overflow: hidden;
    position: relative;
}

.lbb-product-gallery-main img {
    display: block;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.lbb-product-gallery-main figcaption {
    background: #fff;
    bottom: 16px;
    color: var(--lbb-black);
    font-size: 10px;
    font-weight: 650;
    left: 16px;
    padding: 9px 12px;
    position: absolute;
    text-transform: uppercase;
}

.lbb-product-thumbnails {
    display: flex;
    gap: 9px;
    margin-top: 10px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.lbb-product-thumbnails button {
    background: transparent;
    border: 1px solid transparent;
    border-radius: 3px;
    flex: 0 0 72px;
    height: 72px;
    overflow: hidden;
    padding: 2px;
}

.lbb-product-thumbnails button.is-active {
    border-color: var(--lbb-hot-pink);
}

.lbb-product-thumbnails img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.lbb-product-purchase-panel {
    padding: 12px 0 0 42px;
}

.lbb-product-price-row {
    align-items: center;
    border-bottom: 1px solid rgba(17, 17, 17, .12);
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 12px;
}

.lbb-product-price-row span {
    color: #756970;
    font-size: 11px;
    text-transform: uppercase;
}

.lbb-product-price-row strong {
    color: var(--lbb-black);
    font-size: 18px;
}

.lbb-product-purchase-panel>h1 {
    color: var(--lbb-black);
    font-size: 42px;
    font-weight: 750;
    line-height: 1.08;
    margin: 0 0 14px;
}

.lbb-product-promise {
    background: transparent;
    border: 0;
    margin-bottom: 26px;
    padding: 0;
}

.lbb-product-promise strong {
    color: var(--lbb-hot-pink);
    display: block;
    font-size: 16px;
    font-weight: 650;
    margin-bottom: 7px;
}

.lbb-product-promise span {
    color: #6d6066;
    font-size: 13px;
}

.lbb-product-form {
    border-top: 1px solid rgba(17, 17, 17, .12);
    padding-top: 22px;
}

.lbb-product-choice-stack {
    display: grid;
    gap: 20px;
    margin-bottom: 20px;
}

.lbb-product-choice {
    border: 0;
    margin: 0;
    padding: 0;
}

.lbb-product-choice legend {
    color: var(--lbb-black);
    font-size: 13px;
    font-weight: 650;
    margin-bottom: 9px;
}

.lbb-product-choice legend span {
    color: var(--lbb-hot-pink);
    font-size: 10px;
    margin-right: 8px;
}

.lbb-product-choice>div {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.lbb-product-choice label {
    cursor: pointer;
    margin: 0;
}

.lbb-product-choice input {
    opacity: 0;
    position: absolute;
}

.lbb-product-choice label span {
    background: #fff;
    border: 1px solid rgba(17, 17, 17, .18);
    border-radius: 3px;
    color: var(--lbb-black);
    display: block;
    font-size: 12px;
    min-height: 40px;
    padding: 11px 14px;
}

.lbb-product-choice input:checked+span {
    background: var(--lbb-black);
    border-color: var(--lbb-black);
    color: #fff;
}

.lbb-product-note {
    display: block;
    margin: 24px 0;
}

.lbb-product-note>span {
    color: var(--lbb-black);
    display: block;
    font-size: 13px;
    font-weight: 650;
    margin-bottom: 8px;
}

.lbb-product-note textarea {
    border: 1px solid rgba(17, 17, 17, .18);
    border-radius: 3px;
    font-size: 13px;
    line-height: 1.55;
    min-height: 92px;
    padding: 12px 14px;
    resize: vertical;
    width: 100%;
}

.lbb-product-note small {
    color: #857980;
    display: block;
    font-size: 10px;
    margin-top: 6px;
}

.lbb-selected-gift {
    align-items: center;
    border-bottom: 1px solid rgba(17, 17, 17, .12);
    border-top: 1px solid rgba(17, 17, 17, .12);
    display: flex;
    justify-content: space-between;
    margin: 22px 0;
    padding: 13px 0;
}

.lbb-selected-gift #chosen_price_div {
    align-items: baseline;
    display: flex;
    gap: 10px;
}

.lbb-selected-gift span,
.lbb-selected-gift p {
    color: #756970;
    font-size: 11px;
    margin: 0;
}

.lbb-selected-gift strong {
    color: var(--lbb-black);
    font-size: 17px;
}

.lbb-product-cta-row {
    display: grid;
    gap: 9px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lbb-product-cta-row button {
    border-radius: 4px;
    font-size: 13px;
    font-weight: 650;
    min-height: 48px;
    padding: 0 12px;
}

.lbb-buy-now {
    background: var(--lbb-hot-pink);
    border: 1px solid var(--lbb-hot-pink);
    color: #fff;
}

.lbb-add-to-cart {
    background: var(--lbb-black);
    border: 1px solid var(--lbb-black);
    color: #fff;
}

.lbb-product-trust {
    display: grid;
    gap: 8px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 18px;
}

.lbb-product-trust span {
    color: #756970;
    font-size: 10px;
    line-height: 1.4;
    text-align: center;
}

.lbb-product-trust i {
    color: var(--lbb-rose);
    display: block;
    font-size: 18px;
    margin-bottom: 5px;
}

.lbb-product-included,
.lbb-product-topper-copy {
    border-top: 1px solid rgba(17, 17, 17, .12);
    margin-top: 34px;
    padding-top: 28px;
}

.lbb-product-included h2,
.lbb-product-topper-copy h2 {
    color: var(--lbb-black);
    font-size: 24px;
    font-weight: 650;
    margin: 0 0 18px;
}

.lbb-product-included ul {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    list-style: none;
    margin: 0;
    padding: 0;
}

.lbb-product-included li {
    color: #5f5359;
    font-size: 12px;
}

.lbb-product-included i {
    color: var(--lbb-hot-pink);
    margin-right: 7px;
}

.lbb-product-topper-copy>div {
    display: grid;
    gap: 8px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lbb-product-topper-copy blockquote {
    background: var(--lbb-black);
    border: 0;
    border-radius: 3px;
    color: #fff;
    font-size: 12px;
    line-height: 1.45;
    margin: 0;
    padding: 14px;
}

.lbb-product-story {
    background: #fff;
    padding: 72px 0;
}

.lbb-product-story-grid {
    display: grid;
    gap: 1px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.lbb-product-story-grid>div {
    background: #f8f2f3;
    border: 0;
    padding: 30px;
}

.lbb-product-story-grid h3 {
    font-size: 20px;
    font-weight: 650;
    line-height: 1.3;
}

.lbb-product-story-grid p,
.lbb-product-description {
    color: #665a60;
    font-size: 13px;
    line-height: 1.7;
}

.lbb-product-description {
    border: 0;
    margin-top: 36px;
    max-width: 860px;
    padding: 0;
}

.lbb-cart-shell {
    padding-bottom: 76px;
    padding-top: 58px;
}

.lbb-cart-heading {
    align-items: flex-end;
    border-bottom: 1px solid rgba(17, 17, 17, .14);
    display: flex;
    justify-content: space-between;
    margin-bottom: 34px;
    padding-bottom: 20px;
}

.lbb-cart-heading h1,
.lbb-empty-cart h1 {
    color: var(--lbb-black);
    font-size: 38px;
    font-weight: 700;
    margin: 0;
}

.lbb-cart-heading>span {
    color: #756970;
    font-size: 12px;
}

.lbb-cart-list {
    display: grid;
    gap: 1px;
}

.lbb-cart-item {
    background: #fff;
    display: grid;
    gap: 22px;
    grid-template-columns: 150px 1fr;
    padding: 20px;
}

.lbb-cart-item-image {
    aspect-ratio: 1 / 1;
    border-radius: 4px;
    overflow: hidden;
}

.lbb-cart-item-image img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.lbb-cart-item-copy {
    min-width: 0;
}

.lbb-cart-item-title {
    align-items: flex-start;
    display: flex;
    gap: 18px;
    justify-content: space-between;
}

.lbb-cart-item-title h2 {
    font-size: 18px;
    font-weight: 650;
    line-height: 1.3;
    margin: 0;
}

.lbb-cart-item-title strong {
    color: var(--lbb-black);
    flex: 0 0 auto;
    font-size: 15px;
}

.lbb-line-personalisation {
    margin-top: 14px;
}

.lbb-line-options {
    display: flex;
    flex-wrap: wrap;
    gap: 7px 16px;
}

.lbb-line-options span,
.lbb-line-personalisation p {
    color: #6f6268;
    font-size: 11px;
    line-height: 1.5;
    margin: 0;
}

.lbb-line-options b,
.lbb-line-personalisation p b {
    color: var(--lbb-black);
    font-weight: 650;
    margin-right: 5px;
}

.lbb-line-personalisation p {
    border-left: 2px solid var(--lbb-hot-pink);
    margin-top: 9px;
    padding-left: 9px;
}

.lbb-cart-item-actions {
    align-items: center;
    display: flex;
    gap: 18px;
    margin-top: 18px;
}

.lbb-cart-quantity {
    border: 1px solid rgba(17, 17, 17, .14);
    display: grid;
    grid-template-columns: 34px 42px 34px;
}

.lbb-cart-quantity button,
.lbb-cart-quantity input {
    background: #fff;
    border: 0;
    color: var(--lbb-black);
    height: 34px;
    min-width: 0;
    text-align: center;
    width: 100%;
}

.lbb-cart-edit,
.lbb-cart-remove,
.lbb-continue-link {
    background: transparent;
    border: 0;
    color: #6d6066 !important;
    font-size: 11px;
    padding: 0;
}

.lbb-cart-edit i,
.lbb-cart-remove i,
.lbb-continue-link i {
    margin-right: 5px;
}

.lbb-continue-link {
    display: inline-block;
    margin-top: 24px;
}

.lbb-cart-shell #cart_summary .card,
.lbb-checkout-page #cart_summary .card {
    background: #fff;
    border: 0 !important;
    border-radius: 4px !important;
    box-shadow: none;
}

.lbb-checkout-gifts {
    display: grid;
    gap: 14px;
    margin-bottom: 20px;
}

.lbb-checkout-gifts article {
    display: grid;
    gap: 11px;
    grid-template-columns: 54px 1fr;
}

.lbb-checkout-gifts img {
    border-radius: 3px;
    height: 54px;
    object-fit: cover;
    width: 54px;
}

.lbb-checkout-gifts strong {
    color: var(--lbb-black);
    display: block;
    font-size: 12px;
    line-height: 1.35;
}

.lbb-empty-cart {
    margin: 40px auto;
    max-width: 640px;
    padding: 76px 20px;
    text-align: center;
}

.lbb-empty-cart>i {
    color: var(--lbb-hot-pink);
    font-size: 36px;
    margin-bottom: 18px;
}

.lbb-empty-cart>p:not(.lbb-kicker) {
    color: #6d6066;
    margin: 14px auto 24px;
}

.lbb-checkout-page {
    background: var(--lbb-cream) !important;
    margin: 0 !important;
    padding: 58px 0 76px;
}

.lbb-checkout-page .accordion>.card {
    background: #fff;
    border: 1px solid rgba(17, 17, 17, .11) !important;
    border-radius: 4px !important;
    margin-bottom: 14px !important;
}

.lbb-checkout-page .card-header {
    background: #fff;
}

.lbb-checkout-page .card-header span {
    color: var(--lbb-black);
    font-size: 17px !important;
    font-weight: 650 !important;
}

.lbb-checkout-page .form-control {
    border-color: rgba(17, 17, 17, .16);
    border-radius: 3px !important;
}

.lbb-checkout-page .btn-primary,
.lbb-cart-shell .btn-primary {
    background: var(--lbb-hot-pink) !important;
    border-color: var(--lbb-hot-pink) !important;
    border-radius: 4px !important;
    min-height: 44px;
}

.lbb-order-confirmed {
    background: var(--lbb-cream);
    padding: 46px 0 76px !important;
}

.lbb-order-confirmed-hero {
    margin-bottom: 24px !important;
}

.lbb-order-confirmed-hero>svg {
    display: none;
}

.lbb-order-confirmed-hero h1 {
    color: var(--lbb-black);
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 auto 10px;
    max-width: 640px;
}

.lbb-order-confirmed-hero>p:not(.lbb-kicker) {
    color: #6d6066;
    margin: 0 auto 12px;
    max-width: 620px;
}

.lbb-order-confirmed-hero small {
    color: #82767c;
}

.lbb-order-confirmed .bg-white,
.lbb-order-confirmed .card {
    border-color: rgba(17, 17, 17, .11) !important;
    border-radius: 4px !important;
}

.aiz-thecore :where(a, button, input, textarea, select):focus-visible {
    outline: 2px solid var(--lbb-hot-pink) !important;
    outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {

    .aiz-thecore *,
    .aiz-thecore *::before,
    .aiz-thecore *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }
}

@media (max-width: 1199px) {
    .lbb-hero-inner {
        grid-template-columns: minmax(0, .9fr) minmax(460px, 1.1fr);
        min-height: 520px;
    }

    .lbb-editorial-hero h1 {
        font-size: 50px !important;
    }

    .lbb-builder-experience {
        grid-template-columns: minmax(300px, .8fr) minmax(0, 1.2fr);
    }

    .lbb-product-purchase-panel {
        padding-left: 24px;
    }
}

@media (max-width: 991px) {
    .lbb-hero-inner {
        gap: 38px;
        grid-template-columns: 1fr;
        padding: 48px 0 56px;
    }

    .lbb-hero-copy {
        max-width: 620px;
    }

    .lbb-hero-media {
        aspect-ratio: 1.38 / 1;
    }

    .lbb-builder-experience {
        grid-template-columns: 1fr;
    }

    .lbb-builder-preview {
        display: grid;
        grid-template-columns: .8fr 1.2fr;
    }

    .lbb-builder-preview-image {
        aspect-ratio: auto;
        min-height: 340px;
    }

    .lbb-builder-main {
        min-height: 540px;
    }

    .lbb-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .lbb-topper-product-card,
    .lbb-topper-product-card:nth-child(3n) {
        display: flex;
    }

    .lbb-topper-product-card:nth-child(3n) .lbb-topper-product-media {
        order: 0;
    }

    .lbb-social-gallery {
        grid-template-columns: 1.15fr .85fr;
    }

    .lbb-social-card:last-child {
        grid-column: 1 / -1;
    }

    .lbb-social-card:last-child img {
        aspect-ratio: 1.6 / 1;
    }

    .lbb-occasion-editorial-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .lbb-product-purchase-panel {
        padding: 40px 0 0;
    }

    .lbb-product-story-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {

    .aiz-thecore .logo-bar-area>.container>.d-flex,
    .aiz-thecore .logo-bar-area>.layout-container>.d-flex {
        min-height: 62px;
    }

    .aiz-thecore #header-logo-preview {
        max-height: 27px !important;
        max-width: 170px !important;
    }

    .lbb-editorial-hero h1 {
        font-size: 42px !important;
    }

    .lbb-hero-punchline {
        font-size: 19px !important;
    }

    .lbb-how-band,
    .lbb-builder-band,
    .lbb-featured-products,
    .lbb-topper-band,
    .lbb-social-proof-band,
    .lbb-occasion-band {
        padding: 56px 0 !important;
    }

    .lbb-section-head-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .lbb-section-head h2 {
        font-size: 31px !important;
    }

    .lbb-section-note {
        text-align: left;
    }

    .lbb-how-grid {
        grid-template-columns: 1fr;
    }

    .lbb-how-step,
    .lbb-how-step+.lbb-how-step {
        border-left: 0;
        border-top: 1px solid rgba(17, 17, 17, .1);
        padding: 22px 0;
    }

    .lbb-how-step:first-child {
        border-top: 0;
    }

    .lbb-how-step>span {
        margin-bottom: 12px;
    }

    .lbb-builder-preview {
        display: block;
    }

    .lbb-builder-preview-image {
        aspect-ratio: 1.25 / 1;
        min-height: 0;
    }

    .lbb-builder-main {
        min-height: 500px;
        padding: 26px 22px;
    }

    .lbb-builder-progress {
        margin-bottom: 34px;
    }

    .lbb-builder-step legend {
        font-size: 26px;
    }

    .lbb-builder-options,
    .lbb-builder-options-occasion {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .lbb-builder-submit {
        flex: 1 1 auto;
        flex-direction: column-reverse;
    }

    .lbb-builder-submit button {
        width: 100%;
    }

    .lbb-product-grid,
    .lbb-topper-editorial-grid,
    .lbb-social-gallery,
    .lbb-occasion-editorial-grid {
        grid-template-columns: 1fr;
    }

    .lbb-social-card,
    .lbb-social-card:last-child {
        grid-column: auto;
    }

    .lbb-social-card img,
    .lbb-social-card:first-child img,
    .lbb-social-card:last-child img {
        aspect-ratio: 1.2 / 1;
    }

    .lbb-topper-product-media {
        aspect-ratio: 1.3 / 1;
    }

    .lbb-product-purchase-panel>h1 {
        font-size: 34px;
    }

    .lbb-product-cta-row,
    .lbb-product-trust,
    .lbb-product-included ul,
    .lbb-product-topper-copy>div {
        grid-template-columns: 1fr;
    }

    .lbb-product-trust {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .lbb-cart-shell {
        padding-bottom: 54px;
        padding-top: 40px;
    }

    .lbb-cart-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .lbb-cart-heading h1,
    .lbb-empty-cart h1 {
        font-size: 32px;
    }

    .lbb-cart-item {
        gap: 16px;
        grid-template-columns: 104px 1fr;
        padding: 14px;
    }

    .lbb-cart-item-title {
        display: block;
    }

    .lbb-cart-item-title>strong {
        display: block;
        margin-top: 7px;
    }

    .lbb-cart-item-actions {
        align-items: flex-start;
        flex-wrap: wrap;
        gap: 12px;
    }

    .lbb-checkout-page {
        padding: 38px 0 56px;
    }

    .lbb-order-confirmed-hero h1 {
        font-size: 30px;
    }
}

@media (max-width: 430px) {
    .lbb-hero-inner {
        gap: 30px;
        padding: 38px 0 46px;
    }

    .lbb-editorial-hero h1 {
        font-size: 37px !important;
    }

    .lbb-hero-actions {
        align-items: stretch;
    }

    .lbb-btn,
    .lbb-text-link {
        width: auto;
    }

    .lbb-hero-media {
        aspect-ratio: 1 / 1.05;
    }

    .lbb-message-card {
        left: 14px;
        max-width: 205px;
        top: 14px;
    }

    .lbb-section-head h2 {
        font-size: 28px !important;
    }

    .lbb-builder-options,
    .lbb-builder-options-occasion {
        grid-template-columns: 1fr;
    }

    .lbb-builder-options label>span {
        min-height: 52px;
    }

    .lbb-builder-actions {
        align-items: stretch;
    }

    .lbb-builder-next {
        flex: 1 1 auto;
    }

    .lbb-cart-item {
        grid-template-columns: 82px 1fr;
    }

    .lbb-cart-edit,
    .lbb-cart-remove {
        font-size: 10px;
    }
}

@media (max-width: 360px) {
    .lbb-editorial-hero h1 {
        font-size: 33px !important;
    }

    .lbb-builder-main {
        padding-left: 16px;
        padding-right: 16px;
    }

    .lbb-builder-step legend {
        font-size: 23px;
    }

    .lbb-product-purchase-panel>h1 {
        font-size: 30px;
    }

    .lbb-cart-item {
        grid-template-columns: 1fr;
    }

    .lbb-cart-item-image {
        max-width: 130px;
    }
}

/* LBB compact editorial scale */
.aiz-thecore .container {
    max-width: 1140px !important;
    width: calc(100% - 40px) !important;
}

.lbb-hero-inner {
    gap: 54px;
    grid-template-columns: minmax(0, .88fr) minmax(470px, 1.12fr);
    min-height: 500px;
    padding: 46px 0 50px;
}

.lbb-editorial-hero h1 {
    font-size: 48px !important;
    max-width: 470px;
}

.lbb-hero-punchline {
    font-size: 19px !important;
}

.lbb-lede {
    font-size: 14px !important;
    line-height: 1.6;
    max-width: 450px;
}

.lbb-hero-actions {
    margin-top: 22px !important;
}

.lbb-hero-media {
    aspect-ratio: 1.18 / 1;
}

.lbb-how-band,
.lbb-builder-band,
.lbb-featured-products,
.lbb-topper-band,
.lbb-social-proof-band,
.lbb-occasion-band {
    padding: 56px 0 !important;
}

.lbb-section-head {
    margin-bottom: 28px !important;
}

.lbb-section-head h2 {
    font-size: 32px !important;
    max-width: 650px;
}

.lbb-how-step {
    padding: 22px 30px 4px 0;
}

.lbb-how-step+.lbb-how-step {
    padding-left: 30px;
}

.lbb-how-step>span {
    margin-bottom: 22px;
}

.lbb-how-step h3 {
    font-size: 17px;
}

.lbb-how-step p {
    font-size: 13px;
    line-height: 1.55;
}

.lbb-builder-experience {
    grid-template-columns: minmax(300px, .7fr) minmax(0, 1.3fr);
}

.lbb-builder-preview-image {
    aspect-ratio: 1.25 / 1;
}

.lbb-builder-preview-copy {
    padding: 19px 20px;
}

.lbb-builder-preview-copy h3 {
    font-size: 20px;
}

.lbb-builder-main {
    min-height: 470px;
    padding: 28px 32px;
}

.lbb-builder-progress {
    margin-bottom: 30px;
}

.lbb-builder-step legend {
    font-size: 25px;
}

.lbb-builder-step>p {
    font-size: 13px;
    margin-bottom: 20px;
}

.lbb-builder-options label>span {
    min-height: 50px;
    padding: 10px;
}

.lbb-builder-actions {
    margin-top: 24px;
}

.lbb-gift-tile-image {
    aspect-ratio: 4 / 3;
}

.lbb-gift-tile-body strong {
    font-size: 18px !important;
}

.lbb-topper-editorial-grid {
    gap: 18px;
}

.lbb-topper-product-card,
.lbb-topper-product-card:nth-child(3n) {
    grid-template-columns: minmax(0, 1.08fr) minmax(180px, .92fr);
}

.lbb-topper-product-media {
    aspect-ratio: 1.25 / 1;
}

.lbb-topper-product-body {
    padding: 22px;
}

.lbb-topper-product-body strong {
    font-size: 18px;
}

.lbb-occasion-card.has-image .lbb-occasion-copy {
    padding: 18px;
}

.lbb-product-purchase-panel>h1 {
    font-size: 36px;
}

.lbb-product-story {
    padding: 56px 0;
}

@media (max-width: 1199px) {
    .lbb-hero-inner {
        gap: 42px;
        grid-template-columns: minmax(0, .9fr) minmax(430px, 1.1fr);
        min-height: 460px;
    }

    .lbb-editorial-hero h1 {
        font-size: 43px !important;
    }
}

@media (max-width: 991px) {
    .aiz-thecore .container {
        width: calc(100% - 32px) !important;
    }

    .lbb-hero-inner {
        grid-template-columns: 1fr;
    }

    .lbb-builder-experience {
        grid-template-columns: minmax(0, 1fr) !important;
    }

    .lbb-builder-preview-image {
        min-height: 270px;
    }

    .lbb-builder-main {
        min-height: 450px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .lbb-hero-inner {
        gap: 28px;
        grid-template-columns: minmax(0, .85fr) minmax(360px, 1.15fr);
        min-height: 430px;
        padding: 34px 0 38px;
    }

    .lbb-editorial-hero h1 {
        font-size: 36px !important;
    }

    .lbb-hero-punchline {
        font-size: 17px !important;
    }

    .lbb-lede {
        font-size: 13px !important;
    }
}

@media (max-width: 767px) {
    .lbb-editorial-hero h1 {
        font-size: 36px !important;
    }

    .lbb-hero-punchline {
        font-size: 17px !important;
    }

    .lbb-how-band,
    .lbb-builder-band,
    .lbb-featured-products,
    .lbb-topper-band,
    .lbb-social-proof-band,
    .lbb-occasion-band {
        padding: 44px 0 !important;
    }

    .lbb-section-head h2 {
        font-size: 27px !important;
    }

    .lbb-builder-main {
        min-height: 430px;
        padding: 24px 20px;
    }

    .lbb-builder-preview-image {
        min-height: 0;
    }

    .lbb-builder-step legend {
        font-size: 23px;
    }

    .lbb-gift-tile-image {
        aspect-ratio: 1.12 / 1;
    }
}

@media (max-width: 430px) {
    .lbb-editorial-hero h1 {
        font-size: 33px !important;
    }

    .lbb-section-head h2 {
        font-size: 25px !important;
    }
}

@media (max-width: 360px) {
    .aiz-thecore .container {
        width: calc(100% - 24px) !important;
    }

    .lbb-editorial-hero h1 {
        font-size: 30px !important;
    }
}

/* Final compact overrides must stay after the legacy theme rules. */
.lbb-product-purchase-panel>h1 {
    font-size: 34px;
}

@media (max-width: 767px) {
    .lbb-product-purchase-panel>h1 {
        font-size: 28px;
    }

    .lbb-product-cta-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.lbb-product-promise {
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
}

@media (max-width: 767px) {
    .lbb-boutique-product>.container>div {
        padding-top: 16px !important;
    }

    .lbb-boutique-product .breadcrumb {
        display: none !important;
    }

    .lbb-product-gallery-main {
        aspect-ratio: 1.2 / 1;
    }

    .lbb-product-thumbnails {
        margin-top: -58px;
        min-height: 58px;
        padding: 7px 10px;
        position: relative;
        z-index: 2;
    }

    .lbb-product-thumbnails button {
        background: rgba(255, 255, 255, .94);
        flex-basis: 44px;
        height: 44px;
    }

    .lbb-product-gallery-main figcaption {
        bottom: auto;
        font-size: 8px;
        left: 10px;
        max-width: calc(100% - 20px);
        padding: 6px 8px;
        top: 10px;
    }

    .lbb-product-purchase-panel {
        padding-top: 20px;
    }

    .lbb-product-price-row {
        margin-bottom: 12px;
        padding-bottom: 8px;
    }

    .lbb-product-promise {
        margin-bottom: 12px;
    }

    .lbb-product-promise strong {
        font-size: 14px;
        margin-bottom: 4px;
    }

    .lbb-product-form {
        padding-top: 10px;
    }

    .lbb-selected-gift {
        padding: 8px 0;
    }

    .lbb-product-trust {
        display: none;
    }
}

/* Boutique collection pages */
.lbb-collection {
    background: #fffaf8;
    min-height: 70vh;
    padding: 64px 0 72px;
}

.lbb-collection-head {
    align-items: end;
    border-bottom: 1px solid rgba(23, 19, 23, .14);
    display: flex;
    gap: 32px;
    justify-content: space-between;
    padding-bottom: 28px;
}

.lbb-collection-head h1 {
    color: #171317;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.06;
    margin: 8px 0 10px;
}

.lbb-collection-head>div>p:last-child {
    color: #6d6066;
    font-size: 15px;
    line-height: 1.55;
    margin: 0;
    max-width: 620px;
}

.lbb-collection-head>span,
.lbb-collection-toolbar>strong {
    color: #6d6066;
    font-size: 12px;
    font-weight: 650;
    white-space: nowrap;
}

.lbb-collection-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 22px 0;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: thin;
}

.lbb-collection-nav a {
    background: #fff;
    border: 1px solid rgba(23, 19, 23, .14);
    border-radius: 999px;
    color: #171317;
    flex: 0 0 auto;
    font-size: 12px;
    font-weight: 650;
    padding: 9px 13px;
}

.lbb-collection-nav a:hover,
.lbb-collection-nav a.is-active {
    background: #171317;
    border-color: #171317;
    color: #fff;
}

.lbb-collection-toolbar {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin-bottom: 22px;
}

.lbb-collection-toolbar>strong {
    display: none;
}

.lbb-collection-toolbar form {
    align-items: center;
    display: flex;
    gap: 10px;
    margin-left: auto;
}

.lbb-collection-toolbar label {
    color: #6d6066;
    font-size: 12px;
    font-weight: 650;
    margin: 0;
}

.lbb-collection-toolbar select {
    background: #fff;
    border: 1px solid rgba(23, 19, 23, .18);
    border-radius: 4px;
    color: #171317;
    font-size: 12px;
    height: 38px;
    min-width: 170px;
    padding: 0 34px 0 11px;
}

.lbb-collection-grid {
    display: grid;
    gap: 30px 22px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.lbb-collection-grid .lbb-gift-tile-image {
    aspect-ratio: 1 / 1;
    flex: 0 0 auto;
    min-height: 0;
}

.lbb-collection-grid .lbb-gift-tile {
    min-height: 0 !important;
}

.lbb-collection-grid .lbb-gift-tile-body {
    padding: 14px 2px 0 !important;
}

.lbb-collection-grid .lbb-gift-tile-body strong {
    font-size: 17px !important;
}

.lbb-collection-grid .lbb-gift-tile-body em {
    min-height: 39px;
}

.lbb-collection-empty {
    border: 1px solid rgba(23, 19, 23, .14);
    padding: 48px 24px;
    text-align: center;
}

.lbb-collection-empty h2 {
    font-size: 24px;
}

.lbb-collection-empty a {
    color: #ff2f92;
    font-weight: 700;
}

@media (max-width: 991px) {
    .lbb-collection-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .lbb-collection {
        padding: 32px 0 48px;
    }

    .lbb-collection-head {
        align-items: start;
        display: block;
        padding-bottom: 20px;
    }

    .lbb-collection-head h1 {
        font-size: 30px;
    }

    .lbb-collection-head>div>p:last-child {
        font-size: 13px;
    }

    .lbb-collection-head>span {
        display: none;
    }

    .lbb-collection-nav {
        flex-wrap: nowrap;
        margin: 16px 0;
    }

    .lbb-collection-toolbar {
        margin-bottom: 18px;
    }

    .lbb-collection-toolbar>strong {
        display: block;
    }

    .lbb-collection-toolbar label {
        height: 1px;
        overflow: hidden;
        position: absolute;
        width: 1px;
    }

    .lbb-collection-toolbar select {
        min-width: 145px;
    }

    .lbb-collection-grid {
        gap: 24px 12px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .lbb-collection-grid .lbb-gift-tile-image {
        aspect-ratio: 1 / 1.08;
    }

    .lbb-collection-grid .lbb-gift-tile-body strong {
        font-size: 15px !important;
    }

    .lbb-collection-grid .lbb-gift-tile-body em {
        font-size: 11px !important;
        min-height: 34px;
    }

    .lbb-collection-grid .lbb-gift-tile-footer {
        align-items: end;
        gap: 5px;
    }

    .lbb-collection-grid .lbb-gift-tile-footer b {
        font-size: 10px !important;
        text-align: right;
    }
}

/* ═══════════════════════════════════════════════════════════════════
   PREMIUM GIFT BUILDER — Interactive UX Upgrade
   ═══════════════════════════════════════════════════════════════════ */

/* ── Keyframe Animations ── */
@keyframes lbbSlideInRight {
    from {
        opacity: 0;
        transform: translateX(28px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes lbbSlideOutLeft {
    from {
        opacity: 1;
        transform: translateX(0);
    }

    to {
        opacity: 0;
        transform: translateX(-28px);
    }
}

@keyframes lbbSlideInLeft {
    from {
        opacity: 0;
        transform: translateX(-28px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes lbbScaleIn {
    0% {
        transform: scale(.92);
        opacity: 0;
    }

    60% {
        transform: scale(1.03);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes lbbPulseGlow {
    0% {
        text-shadow: 0 0 0 transparent;
    }

    50% {
        text-shadow: 0 0 16px rgba(255, 47, 146, .45);
    }

    100% {
        text-shadow: 0 0 0 transparent;
    }
}

@keyframes lbbShimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

@keyframes lbbCheckPop {
    0% {
        transform: scale(0) rotate(-45deg);
        opacity: 0;
    }

    60% {
        transform: scale(1.15) rotate(0deg);
    }

    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

@keyframes lbbFloatIn {
    from {
        opacity: 0;
        transform: translateY(10px) scale(.96);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes lbbConfettiDrop {
    0% {
        transform: translateY(-100vh) rotate(0deg);
        opacity: 1;
    }

    80% {
        opacity: 1;
    }

    100% {
        transform: translateY(100vh) rotate(720deg);
        opacity: 0;
    }
}

@keyframes lbbPriceBounce {
    0% {
        transform: scale(1);
    }

    40% {
        transform: scale(1.12);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes lbbNoteReveal {
    from {
        clip-path: inset(100% 0 0 0);
        opacity: 0;
    }

    to {
        clip-path: inset(0 0 0 0);
        opacity: 1;
    }
}

@keyframes lbbGlowPulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(255, 47, 146, 0);
    }

    50% {
        box-shadow: 0 0 22px 4px rgba(255, 47, 146, .18);
    }
}

/* ── Step transition animations ── */
.lbb-builder-experience.is-enhanced .lbb-builder-step {
    will-change: transform, opacity;
}

.lbb-builder-experience.is-enhanced .lbb-builder-step.lbb-step-enter-right {
    animation: lbbSlideInRight .32s cubic-bezier(.22, .61, .36, 1) forwards;
}

.lbb-builder-experience.is-enhanced .lbb-builder-step.lbb-step-enter-left {
    animation: lbbSlideInLeft .32s cubic-bezier(.22, .61, .36, 1) forwards;
}

.lbb-builder-experience.is-enhanced .lbb-builder-step.lbb-step-exit-left {
    animation: lbbSlideOutLeft .22s ease forwards;
    pointer-events: none;
}

/* ── Visual Stepper ── */
.lbb-builder-stepper {
    align-items: center;
    display: flex;
    gap: 0;
    margin-bottom: 38px;
    padding: 0 4px;
    position: relative;
}

.lbb-builder-stepper-step {
    align-items: center;
    display: flex;
    flex: 1 1 auto;
    position: relative;
}

.lbb-builder-stepper-step:last-child {
    flex: 0 0 auto;
}

.lbb-builder-stepper-dot {
    align-items: center;
    background: #f0eaec;
    border: 2px solid #e0d8db;
    border-radius: 999px;
    color: #9b8f94;
    display: inline-flex;
    flex: 0 0 36px;
    font-size: 11px;
    font-weight: 700;
    height: 36px;
    justify-content: center;
    position: relative;
    transition: all .3s cubic-bezier(.22, .61, .36, 1);
    width: 36px;
    z-index: 2;
}

.lbb-builder-stepper-dot i {
    display: none;
    font-size: 14px;
}

.lbb-builder-stepper-line {
    background: #e0d8db;
    flex: 1 1 auto;
    height: 2px;
    margin: 0 -2px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.lbb-builder-stepper-line>b {
    background: linear-gradient(90deg, var(--lbb-hot-pink), var(--lbb-barbie, #e64398));
    display: block;
    height: 100%;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s cubic-bezier(.22, .61, .36, 1);
    width: 100%;
}

.lbb-builder-stepper-label {
    bottom: -20px;
    color: #9b8f94;
    font-size: 9px;
    font-weight: 600;
    left: 50%;
    position: absolute;
    text-transform: uppercase;
    transform: translateX(-50%);
    transition: color .3s ease;
    white-space: nowrap;
}

/* Stepper active state */
.lbb-builder-stepper-step.is-active .lbb-builder-stepper-dot {
    background: var(--lbb-hot-pink);
    border-color: var(--lbb-hot-pink);
    box-shadow: 0 0 0 5px rgba(255, 47, 146, .15);
    color: #fff;
    transform: scale(1.12);
}

.lbb-builder-stepper-step.is-active .lbb-builder-stepper-label {
    color: var(--lbb-hot-pink);
    font-weight: 700;
}

/* Stepper completed state */
.lbb-builder-stepper-step.is-done .lbb-builder-stepper-dot {
    background: var(--lbb-black);
    border-color: var(--lbb-black);
    color: #fff;
}

.lbb-builder-stepper-step.is-done .lbb-builder-stepper-dot span {
    display: none;
}

.lbb-builder-stepper-step.is-done .lbb-builder-stepper-dot i {
    animation: lbbCheckPop .35s ease forwards;
    display: block;
}

.lbb-builder-stepper-step.is-done .lbb-builder-stepper-label {
    color: var(--lbb-black);
}

.lbb-builder-stepper-step.is-done .lbb-builder-stepper-line>b {
    transform: scaleX(1);
}

/* ── Smart Option Cards (with emoji icons) ── */
.lbb-builder-options label>span {
    align-items: center;
    gap: 10px;
    justify-content: flex-start;
    overflow: hidden;
    position: relative;
    text-align: left;
    transition: border-color .2s ease, background .2s ease, box-shadow .2s ease, transform .15s ease;
}

.lbb-builder-options label>span .lbb-option-icon {
    display: flex;
    flex: 0 0 auto;
    font-size: 20px;
    line-height: 1;
}

.lbb-builder-options label>span .lbb-option-label {
    display: block;
    flex: 1 1 auto;
    min-width: 0;
}

.lbb-builder-options label:hover>span {
    border-color: rgba(255, 47, 146, .5);
    box-shadow: 0 6px 18px rgba(255, 47, 146, .08);
    transform: translateY(-1px);
}

.lbb-builder-options input:checked+span {
    animation: lbbScaleIn .25s ease;
    position: relative;
}

/* Checkmark badge on selected card */
.lbb-builder-options input:checked+span::after {
    align-items: center;
    animation: lbbCheckPop .3s ease forwards;
    background: var(--lbb-hot-pink);
    border-radius: 999px;
    color: #fff;
    content: '✓';
    display: flex;
    font-size: 10px;
    font-weight: 900;
    height: 20px;
    justify-content: center;
    position: absolute;
    right: 8px;
    top: 8px;
    width: 20px;
}

/* ── Enhanced Preview Panel (glassmorphism) ── */
.lbb-builder-preview {
    position: relative;
}

.lbb-builder-preview-image {
    overflow: hidden;
    position: relative;
}

.lbb-builder-preview-image img {
    transition: transform .45s cubic-bezier(.22, .61, .36, 1), opacity .3s ease;
}

.lbb-builder-preview-image.lbb-preview-updating img {
    opacity: .7;
    transform: scale(1.03);
}

/* Live note overlay on preview image */
.lbb-preview-note-overlay {
    animation: lbbFloatIn .35s ease forwards;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(23, 19, 23, .15);
    border-radius: 6px;
    bottom: 16px;
    box-shadow: 0 8px 24px rgba(23, 19, 23, .12);
    color: var(--lbb-black);
    font-size: 12px;
    font-style: italic;
    font-weight: 600;
    left: 16px;
    line-height: 1.5;
    max-width: calc(100% - 32px);
    padding: 10px 14px;
    position: absolute;
    z-index: 3;
}

.lbb-preview-note-overlay:empty {
    display: none;
}

.lbb-preview-note-overlay::before {
    color: var(--lbb-hot-pink);
    content: '✏️ ';
    font-style: normal;
}

/* Price animation on change */
.lbb-builder-price.lbb-price-changed {
    animation: lbbPriceBounce .35s ease;
}

/* Preview summary with animated updates */
.lbb-builder-preview-copy dd[data-just-updated] {
    animation: lbbScaleIn .25s ease;
    color: var(--lbb-barbie, #e64398);
}

/* ── Note Step: Suggestion Chips ── */
.lbb-note-suggestions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}

.lbb-note-chip {
    background: #fcfaf9;
    border: 1px solid rgba(17, 17, 17, .14);
    border-radius: 999px;
    color: var(--lbb-black);
    cursor: pointer;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.3;
    padding: 8px 14px;
    transition: all .18s ease;
}

.lbb-note-chip:hover {
    background: var(--lbb-hot-pink);
    border-color: var(--lbb-hot-pink);
    color: #fff;
    transform: translateY(-1px);
}

.lbb-note-chip::before {
    content: '💬 ';
    font-size: 12px;
}

/* Note textarea enhanced */
.lbb-builder-note textarea {
    transition: border-color .2s ease, box-shadow .2s ease;
}

.lbb-builder-note textarea:focus {
    border-color: var(--lbb-hot-pink);
    box-shadow: 0 0 0 3px rgba(255, 47, 146, .1);
    outline: none;
}

/* Character counter gradient */
.lbb-builder-note>span {
    transition: color .2s ease;
}

.lbb-builder-note>span.lbb-count-warning {
    color: #e67e22 !important;
}

.lbb-builder-note>span.lbb-count-danger {
    color: #e74c3c !important;
}

/* ── Premium Review Step ── */
.lbb-builder-review {
    position: relative;
}

.lbb-builder-review dl {
    overflow: hidden;
    transition: all .3s ease;
}

.lbb-builder-review dl>div {
    animation: lbbFloatIn .3s ease backwards;
}

.lbb-builder-review dl>div:nth-child(1) {
    animation-delay: .05s;
}

.lbb-builder-review dl>div:nth-child(2) {
    animation-delay: .1s;
}

.lbb-builder-review dl>div:nth-child(3) {
    animation-delay: .15s;
}

.lbb-builder-review dl>div:nth-child(4) {
    animation-delay: .2s;
}

.lbb-builder-review dl>div:nth-child(5) {
    animation-delay: .25s;
}

.lbb-review-badge {
    align-items: center;
    animation: lbbGlowPulse 2s ease infinite;
    background: linear-gradient(135deg, var(--lbb-hot-pink), var(--lbb-barbie, #e64398));
    border-radius: 999px;
    color: #fff;
    display: inline-flex;
    font-size: 11px;
    font-weight: 700;
    gap: 6px;
    margin-bottom: 18px;
    padding: 8px 16px;
}

.lbb-review-badge i {
    font-size: 14px;
}

/* ── Confetti Layer ── */
.lbb-confetti-container {
    height: 100%;
    left: 0;
    overflow: hidden;
    pointer-events: none;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
}

.lbb-confetti-piece {
    animation: lbbConfettiDrop var(--duration, 2.5s) linear forwards;
    animation-delay: var(--delay, 0s);
    border-radius: 2px;
    height: var(--size, 10px);
    left: var(--x, 50%);
    opacity: 0;
    position: absolute;
    top: -20px;
    width: var(--size, 10px);
}

/* ── CTA Buttons Enhanced ── */
.lbb-builder-next {
    overflow: hidden;
    position: relative;
    transition: transform .15s ease, box-shadow .15s ease;
}

.lbb-builder-next:hover {
    box-shadow: 0 6px 18px rgba(255, 47, 146, .25);
    transform: translateY(-1px);
}

.lbb-builder-next::after {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .18), transparent);
    content: '';
    height: 100%;
    left: -100%;
    position: absolute;
    top: 0;
    transition: left .5s ease;
    width: 100%;
}

.lbb-builder-next:hover::after {
    left: 100%;
}

.lbb-builder-submit .lbb-btn-primary {
    overflow: hidden;
    position: relative;
    transition: transform .15s ease, box-shadow .15s ease;
}

.lbb-builder-submit .lbb-btn-primary:hover {
    box-shadow: 0 6px 22px rgba(255, 47, 146, .3);
    transform: translateY(-1px);
}

/* Loading state */
.lbb-builder-submit button.is-loading {
    opacity: .7;
    pointer-events: none;
    position: relative;
}

.lbb-builder-submit button.is-loading::after {
    animation: lbbShimmer 1.2s linear infinite;
    background: linear-gradient(90deg, transparent 25%, rgba(255, 255, 255, .25) 50%, transparent 75%);
    background-size: 200% 100%;
    content: '';
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

/* ── Enhanced Progress Bar (replaces old simple bar) ── */
.lbb-builder-progress>i>b {
    background: linear-gradient(90deg, var(--lbb-hot-pink), var(--lbb-barbie, #e64398), var(--lbb-hot-pink));
    background-size: 200% 100%;
    transition: width .4s cubic-bezier(.22, .61, .36, 1);
}

.lbb-builder-progress>i>b.lbb-bar-shimmer {
    animation: lbbShimmer 2s linear infinite;
}

/* ── Mobile Responsive for Premium Builder ── */
@media (max-width: 991px) {
    .lbb-builder-stepper {
        margin-bottom: 30px;
    }

    .lbb-builder-stepper-dot {
        flex-basis: 32px;
        font-size: 10px;
        height: 32px;
        width: 32px;
    }

    .lbb-builder-stepper-label {
        display: none;
    }

    .lbb-preview-note-overlay {
        font-size: 11px;
    }
}

@media (max-width: 767px) {
    .lbb-builder-stepper {
        margin-bottom: 24px;
    }

    .lbb-builder-stepper-dot {
        flex-basis: 28px;
        font-size: 9px;
        height: 28px;
        width: 28px;
    }

    .lbb-builder-stepper-step.is-active .lbb-builder-stepper-dot {
        box-shadow: 0 0 0 4px rgba(255, 47, 146, .12);
    }

    .lbb-note-suggestions {
        gap: 6px;
    }

    .lbb-note-chip {
        font-size: 10px;
        padding: 6px 11px;
    }

    .lbb-preview-note-overlay {
        bottom: 10px;
        font-size: 10px;
        left: 10px;
        max-width: calc(100% - 20px);
        padding: 8px 10px;
    }

    /* Mobile sticky CTA bar */
    .lbb-builder-actions {
        background: #fff;
        border-top: 1px solid rgba(17, 17, 17, .1);
        bottom: 0;
        box-shadow: 0 -4px 18px rgba(23, 19, 23, .08);
        left: 0;
        margin: 0;
        padding: 12px 16px;
        position: sticky;
        z-index: 20;
    }
}

@media (max-width: 430px) {
    .lbb-builder-stepper-dot {
        flex-basis: 26px;
        height: 26px;
        width: 26px;
    }

    .lbb-builder-options label>span .lbb-option-icon {
        font-size: 18px;
    }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {

    .lbb-builder-experience.is-enhanced .lbb-builder-step.lbb-step-enter-right,
    .lbb-builder-experience.is-enhanced .lbb-builder-step.lbb-step-enter-left,
    .lbb-builder-experience.is-enhanced .lbb-builder-step.lbb-step-exit-left,
    .lbb-builder-options input:checked+span,
    .lbb-builder-options input:checked+span::after,
    .lbb-builder-stepper-step.is-done .lbb-builder-stepper-dot i,
    .lbb-builder-review dl>div,
    .lbb-preview-note-overlay,
    .lbb-review-badge,
    .lbb-confetti-piece {
        animation: none !important;
    }

    .lbb-builder-stepper-line>b,
    .lbb-builder-preview-image img,
    .lbb-builder-price.lbb-price-changed {
        transition: none !important;
    }
}