#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;
}

/* 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 ====================== */

.product-details {
    background: #f4f5f7;
    padding-bottom: 44px;
}

.product-details > .container,
.product-details-nav-tab .container {
    max-width: 1200px;
}

.product-details .product-slider-wrapper {
    position: static !important;
    top: auto !important;
}

.shopone-product-hero {
    box-shadow: none;
}

.shopone-product-top-row {
    align-items: flex-start;
}

.shopone-gallery {
    display: flex;
    flex-direction: column;
}

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

.shopone-product-shell {
    padding: 0 !important;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.04);
    border-color: transparent !important;
    border-radius: 20px !important;
}

.shopone-product-top-row {
    margin-left: 0;
    margin-right: 0;
}

.shopone-product-top-row > [class*="col-"] {
    padding-left: 0;
    padding-right: 0;
}

.shopone-gallery {
    position: relative;
    padding: 22px 22px 18px;
    background: #fff;
}

.shopone-gallery-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 0 12px;
    border-radius: 999px;
    background: #fff2e8;
    color: #ff6a00;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.main-slider {
    width: 100%;
    height: 520px;
    border: 0;
    border-radius: 14px;
    background: #fff;
    box-shadow: none;
}

.main-slider .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
}

.main-slider .swiper-slide img,
.main-slider .swiper-slide video,
.main-slider .swiper-slide iframe {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: transparent;
}

.shopone-gallery-single .main-slider {
    height: 500px;
}

.shopone-gallery-single .main-slider .swiper-slide img {
    transform: scale(1.08);
    transform-origin: center center;
}

.shopone-gallery-single .swiper-button-next,
.shopone-gallery-single .swiper-button-prev {
    display: none !important;
}

.main-slider .swiper-button-next,
.main-slider .swiper-button-prev {
    top: 50%;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 8px 22px rgba(17, 24, 39, 0.08);
}

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

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

.shopone-gallery .img-preview-btn {
    display: none !important;
}

.thumb-container {
    padding: 0 42px 0 0;
}

.thumb-slider .swiper-slide {
    width: 72px !important;
    height: 72px !important;
    border: 1px solid #e6eaf0;
    border-radius: 8px;
    background: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.thumb-slider .swiper-slide img {
    object-fit: contain;
    padding: 8px;
    background: #fff;
}

.thumb-slider .swiper-slide-thumb-active {
    border-color: #ff6a00 !important;
    box-shadow: 0 6px 16px rgba(255, 106, 0, 0.12);
}

.shopone-summary-grid {
    display: grid;
    gap: 16px;
    height: 100%;
}

.shopone-summary-main {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 24px 18px 24px 8px;
    background: #fff;
}

.shopone-product-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
}

.shopone-inline-link {
    color: #1d74c9;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.4;
    letter-spacing: 0.02em;
}

.shopone-inline-link:hover {
    color: #0f5ca8;
}

.shopone-product-title {
    margin: 0;
    color: #121826;
    font-size: clamp(2rem, 2.2vw, 3rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.04em;
}

.shopone-review-band {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 14px;
}

.shopone-review-band__group {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.shopone-review-score {
    color: #111827;
    font-size: 14px;
    font-weight: 800;
}

.shopone-review-count,
.shopone-review-sales {
    color: #6b7280;
    font-size: 13px;
    font-weight: 600;
}

.shopone-review-sales {
    padding-left: 14px;
    border-left: 1px solid #e6eaf0;
}

.shopone-review-note {
    display: inline-flex;
    align-items: center;
    padding: 7px 11px;
    border-radius: 999px;
    background: #f5f7fb;
    color: #4b5563;
    font-size: 12px;
    font-weight: 700;
}

.shopone-stock-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.shopone-stock-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.12);
}

.shopone-stock-label,
.shopone-stock-copy {
    font-size: 13px;
    font-weight: 700;
}

.shopone-stock-label {
    color: #16a34a;
}

.shopone-stock-copy {
    color: #4b5563;
}

.shopone-stock-separator {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #d1d5db;
}

.shopone-feature-card-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    padding: 10px 0;
    border-top: 1px solid #e8ebf0;
    border-bottom: 1px solid #e8ebf0;
}

.shopone-feature-card {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: auto;
    flex: 1 1 0;
    padding: 8px 0;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.shopone-feature-card + .shopone-feature-card {
    margin-left: 14px;
    padding-left: 14px;
    border-left: 1px solid #e8ebf0;
}

.shopone-feature-card__icon {
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    background: transparent;
    color: #ff6a00;
    font-size: 17px;
    flex: 0 0 auto;
}

.shopone-feature-card strong,
.shopone-feature-card span {
    display: block;
}

.shopone-feature-card strong {
    color: #111827;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.2;
}

.shopone-feature-card span {
    margin-top: 4px;
    color: #6b7280;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.35;
}

.shopone-price-support {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0;
    margin-top: 14px;
    justify-content: space-between;
    overflow: visible;
}

.shopone-mini-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0;
    border-radius: 0;
    background: transparent;
    color: #374151;
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
    flex: 0 1 auto;
    min-width: 0;
}

.shopone-mini-badge i {
    color: #8a909c;
    font-size: 12px;
    line-height: 1;
}

.shopone-mini-badge + .shopone-mini-badge {
    margin-left: 10px;
    padding-left: 10px;
    border-left: 1px solid #e7ebf0;
}

.shopone-mini-badge span {
    display: block;
    min-width: 0;
}

.shopone-offer-banner {
    padding: 16px 18px;
    border-radius: 0;
    color: #fff;
}

.shopone-offer-banner--soft {
    border: 0;
    background: #fff5ef;
    color: #111827;
}

.shopone-offer-kicker {
    display: inline-flex;
    margin-bottom: 8px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.shopone-offer-banner--soft .shopone-offer-kicker {
    background: rgba(255, 106, 0, 0.09);
    color: #ff6a00;
}

.shopone-offer-banner strong {
    display: block;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.2;
}

.shopone-offer-banner p {
    margin: 6px 0 0;
    font-size: 13px;
    line-height: 1.55;
}

.shopone-offer-banner--soft p {
    color: #4b5563;
}

.shopone-info-list,
.shopone-terms-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.shopone-info-list li,
.shopone-terms-list li {
    position: relative;
    padding-left: 18px;
    color: #4b5563;
    font-size: 13px;
    line-height: 1.7;
}

.shopone-terms-list li::before {
    content: "";
    position: absolute;
    top: 9px;
    left: 0;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #22c55e;
}

.shopone-info-list li {
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    padding: 14px 0 0;
    border-top: 1px solid #eceff3;
}

.shopone-info-list li:first-child {
    padding-top: 0;
    border-top: 0;
}

.shopone-info-list li::before {
    display: none;
}

.shopone-info-list__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    color: #868c98;
    font-size: 15px;
    line-height: 1;
}

.shopone-price-card,
.shopone-buy-card,
.shopone-info-card,
.shopone-terms-card {
    border: 0;
    border-radius: 0;
    background: transparent;
    padding: 0;
}

.shopone-price-card {
    padding: 16px 0 14px;
    border-top: 1px solid #e8ebf0;
    border-bottom: 1px solid #e8ebf0;
    box-shadow: none;
}

.shopone-price-value {
    margin: 0;
    color: #111827;
    font-size: clamp(2rem, 2.3vw, 2.55rem);
    font-weight: 800;
    line-height: 1;
}

.shopone-price-value span {
    color: #6b7280;
    font-size: 18px;
    font-weight: 500;
}

.shopone-price-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.shopone-price-meta del {
    color: #9ca3af;
    font-size: 14px;
}

.shopone-discount-badge {
    display: inline-flex;
    align-items: center;
    padding: 5px 10px;
    border-radius: 999px;
    background: #111827;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
}

.shopone-variant-wrap {
    display: grid;
    gap: 10px;
}

.shopone-buy-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 14px 0 0;
}

.shopone-buy-top {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
}

.shopone-buy-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.shopone-buy-actions .buy-now,
.shopone-buy-actions .add-to-cart {
    width: 100%;
    min-height: 50px;
    padding: 13px 18px;
    border-radius: 12px !important;
}

.shopone-buy-actions .buy-now {
    background: #111827;
}

.shopone-buy-actions .add-to-cart {
    background: #fff;
    color: #111827;
    border-color: #dbe3ec !important;
}

.shopone-utility-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    padding-top: 10px;
    border-top: 1px solid #edf0f4;
}

.shopone-utility-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 0;
    background: transparent;
    color: #374151;
    font-size: 13px;
    font-weight: 700;
    padding: 0;
}

.shopone-utility-action i {
    color: #757b86;
    font-size: 15px;
}

.shopone-summary-side {
    display: grid;
    gap: 0;
    align-content: start;
    background: #fff;
    border-radius: 0 20px 20px 0;
    overflow: hidden;
    border: 0 !important;
    border-left: 1px solid #e6eaf0 !important;
    min-height: 100%;
}

.shopone-info-card {
    display: flex;
    flex-direction: column;
    gap: 14px;
    background: transparent;
    box-shadow: none;
    padding: 22px 22px 20px;
}

.shopone-info-card + .shopone-info-card {
    border-top: 1px solid #e2e5ea;
}

.shopone-info-card__head {
    display: flex;
    align-items: center;
    gap: 12px;
}

.shopone-info-card__icon {
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    background: transparent;
    color: #7b8190;
    font-size: 16px;
    flex: 0 0 auto;
}

.shopone-info-title {
    margin: 0;
    color: #111827;
    font-size: 15px;
    font-weight: 800;
}

.shopone-side-stack {
    display: grid;
    gap: 0;
}

.shopone-side-quick-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 17px 22px;
    border: 0;
    border-radius: 0;
    background: transparent;
    border-top: 1px solid #e2e5ea;
}

.shopone-side-quick-card__icon {
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    background: transparent;
    color: #868c98;
    font-size: 15px;
    flex: 0 0 auto;
}

.shopone-side-quick-card strong,
.shopone-side-quick-card span {
    display: block;
}

.shopone-side-quick-card strong {
    color: #111827;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.2;
}

.shopone-side-quick-card span {
    margin-top: 4px;
    color: #6b7280;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.35;
}

.shopone-terms-card {
    margin-top: -8px;
}

.shopone-terms-section {
    margin-top: -6px;
}

.product-details-nav-tab {
    margin-top: 22px;
}

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

.product-details-nav-tab .nav-tab-header {
    background: transparent;
}

.product-details-nav-tab .nav-tab-header .tab-scroll-wrapper {
    border-bottom: 1px solid #e6e9ee;
}

.product-details-nav-tab .nav-tab-header .nav-link {
    font-size: 14px !important;
    font-weight: 700 !important;
    color: #6b7280 !important;
}

.product-details-nav-tab .nav-tab-header .nav-link.active,
.product-details-nav-tab .nav-tab-header .nav-link:hover {
    color: #111827 !important;
}

.product-details-nav-tab .tab-underline {
    height: 2px !important;
    background: #ff6a00 !important;
}

#description > div,
.related-product-container,
.reviews-ratings-container,
.shopone-terms-card {
    border-radius: 16px !important;
    border: 1px solid #eaedf2 !important;
    box-shadow: none !important;
}

#description > div,
.related-product-container,
.reviews-ratings-container {
    background: #fff !important;
}

.shopone-terms-card {
    padding: 22px 24px !important;
    background: #fffaf6 !important;
}

.shopone-recommended-slot {
    margin-top: 18px;
    padding-top: 6px;
}

.shopone-recommended-slot__inner {
    position: relative;
}

.shopone-detail-product-rail {
    padding: 18px 0 10px;
    background: transparent;
    border-top: 1px solid #e8edf3;
    border-bottom: 1px solid #e8edf3;
    border-left: 0;
    border-right: 0;
    border-radius: 0;
    box-shadow: none;
    overflow: hidden;
}

.shopone-detail-product-rail__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 12px;
    padding: 0 4px;
}

.shopone-detail-product-rail__title {
    margin: 0;
    color: #20283a;
    font-size: 24px;
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.shopone-detail-product-rail__copy {
    margin-top: 4px;
    color: #667085;
    font-size: 12px;
    line-height: 1.45;
}

.shopone-detail-product-rail__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: auto;
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: 0;
    color: #ea580c !important;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none !important;
    white-space: nowrap;
    transition: color 0.18s ease;
}

.shopone-detail-product-rail__link:hover {
    color: #c2410c !important;
}

.shopone-detail-product-rail__carousel .slick-list {
    margin: 0 -8px;
    padding: 2px 0 6px;
}

.shopone-detail-product-rail__carousel .carousel-box {
    padding: 0 2px;
}

.shopone-detail-product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 100%;
    padding: 10px 10px 14px;
    background: #fff;
    border: 1px solid #edf1f5;
    border-radius: 0;
    box-shadow: none;
    transition: border-color 0.18s ease, background-color 0.18s ease;
}

.shopone-detail-product-card:hover {
    transform: none;
    border-color: #e0e7ef;
    box-shadow: none;
}

.shopone-detail-product-card__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    width: fit-content;
    min-height: auto;
    padding: 0;
    margin-bottom: 10px;
    border-radius: 0;
    background: transparent;
    border: 0;
    color: #f97316 !important;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none !important;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.shopone-detail-product-card__badge-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #f97316;
    flex: 0 0 auto;
}

.shopone-detail-product-card__media {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 164px;
    padding: 8px 10px 12px;
    margin-bottom: 10px;
    border-bottom: 1px solid #f1f4f8;
    text-decoration: none !important;
}

.shopone-detail-product-card__image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.shopone-detail-product-card__body {
    display: flex;
    flex-direction: column;
    margin-top: auto;
}

.shopone-detail-product-card__title {
    min-height: 44px;
    margin: 0 0 8px;
    color: #20283a;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.4;
}

.shopone-detail-product-card__title a {
    display: -webkit-box;
    color: inherit !important;
    text-decoration: none !important;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.shopone-detail-product-card__note {
    min-height: 18px;
    margin-bottom: 10px;
    color: #98a2b3;
    font-size: 11px;
    font-weight: 400;
    line-height: 1.35;
}

.shopone-detail-product-card__price-row {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 6px;
}

.shopone-detail-product-card__price {
    color: #ff5a00;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.1;
}

.shopone-detail-product-card__old-price {
    color: #98a2b3;
    font-size: 11px;
    font-weight: 400;
    line-height: 1.2;
    text-decoration: line-through;
}

.related-product-container .img,
.reviews-ratings-container .btn,
#description .bg-soft-light {
    border-radius: 12px !important;
}

.breadcrumb.bg-transparent {
    margin-bottom: 12px !important;
}

.breadcrumb.bg-transparent li,
.breadcrumb.bg-transparent a,
.breadcrumb.bg-transparent i {
    color: #5f6d7c !important;
    opacity: 1 !important;
}

.breadcrumb.bg-transparent a:hover {
    color: #1d74c9 !important;
}

.product-details + section.border-top.border-bottom {
    display: none;
}

@media (min-width: 1200px) {
    .shopone-summary-grid {
        grid-template-columns: minmax(0, 1fr) 278px;
        gap: 16px;
    }
}

@media (max-width: 1199.98px) {
    .main-slider {
        height: 430px;
    }

    .shopone-detail-product-rail__title {
        font-size: 22px;
    }

    .shopone-summary-main {
        padding-right: 8px;
    }

    .shopone-feature-card-row {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 991.98px) {
    .shopone-product-hero {
        padding: 16px !important;
    }

    .shopone-product-shell {
        padding: 16px !important;
        border-radius: 18px !important;
    }

    .shopone-recommended-slot {
        margin-top: 16px;
    }

    .shopone-product-top-row {
        margin-left: -12px;
        margin-right: -12px;
    }

    .shopone-product-top-row > [class*="col-"] {
        padding-left: 12px;
        padding-right: 12px;
    }

    .shopone-gallery,
    .shopone-summary-main {
        padding: 0;
    }

    .main-slider {
        height: 360px;
    }

    .product-details .product-slider-wrapper {
        margin-bottom: 20px;
    }

    .shopone-summary-grid,
    .shopone-feature-card-row {
        grid-template-columns: 1fr;
    }

    .shopone-feature-card-row {
        display: grid;
        gap: 10px;
        padding: 0;
        border-top: 0;
        border-bottom: 0;
    }

    .shopone-feature-card + .shopone-feature-card {
        margin-left: 0;
        padding-left: 0;
        border-left: 0;
    }

    .shopone-buy-actions {
        grid-template-columns: 1fr;
    }

    .shopone-summary-side {
        border-radius: 16px;
    }

    .shopone-detail-product-rail {
        padding: 16px 0 10px;
        border-radius: 0;
    }

    .shopone-detail-product-rail__head {
        flex-direction: column;
        align-items: stretch;
    }
}

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

    .thumb-slider .swiper-slide {
        width: 64px !important;
        height: 64px !important;
        margin-right: 10px;
    }

    .main-slider {
        height: 320px;
        border-radius: 16px;
    }

    .main-slider .swiper-slide {
        padding: 20px;
    }

    .shopone-product-title {
        font-size: 2rem;
    }

    .shopone-recommended-slot {
        margin-top: 14px;
    }

    .shopone-price-card,
    .shopone-buy-card,
    .shopone-info-card,
    .shopone-terms-card {
        padding-left: 0;
        padding-right: 0;
    }

    .shopone-price-support {
        flex-wrap: wrap;
        row-gap: 8px;
        overflow: visible;
    }

    .shopone-mini-badge + .shopone-mini-badge {
        margin-left: 12px;
        padding-left: 12px;
    }

    .shopone-offer-banner strong {
        font-size: 18px;
    }

    .shopone-utility-actions {
        gap: 10px 14px;
    }

    .shopone-detail-product-rail {
        padding: 14px 0 8px;
        border-radius: 0;
    }

    .shopone-detail-product-rail__title {
        font-size: 19px;
    }

    .shopone-detail-product-rail__link {
        justify-content: flex-start;
        width: auto;
    }

    .shopone-detail-product-card {
        padding: 9px 9px 12px;
    }

    .shopone-detail-product-card__media {
        height: 140px;
        padding-left: 10px;
        padding-right: 10px;
    }

    .shopone-detail-product-card__title {
        min-height: 48px;
        font-size: 12px;
    }

    .shopone-detail-product-card__price {
        font-size: 15px;
    }
}

@media (max-width: 575.98px) {
    .main-slider {
        height: 280px;
    }

    .shopone-price-value {
        font-size: 2rem;
    }

    .shopone-price-support {
        gap: 8px;
    }

    .shopone-feature-card,
    .shopone-side-quick-card {
        padding-left: 0;
        padding-right: 0;
    }
}


/* 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);
        }

/* ShopOne homepage marketplace rails */
body.shopone-market-home {
    --shopone-rail-accent: #ff6a00;
    --shopone-rail-accent-soft: #fff4ec;
    --shopone-rail-text: #232837;
    --shopone-rail-muted: #727b8c;
    --shopone-rail-border: #f1f3f7;
    --shopone-rail-shadow: 0 24px 60px rgba(18, 28, 45, 0.08);
    --shopone-rail-card-shadow: 0 14px 32px rgba(18, 28, 45, 0.07);
}

body.shopone-market-home .shopone-product-rail {
    margin: 24px 0 0;
    padding: 0;
}

body.shopone-market-home .shopone-product-rail .container {
    max-width: 1200px;
}

body.shopone-market-home .shopone-product-rail__panel {
    position: relative;
    padding: 26px 24px 24px;
    border: 1px solid rgba(241, 243, 247, 0.96);
    border-radius: 28px;
    background:
        radial-gradient(circle at 28% -6%, rgba(255, 174, 97, 0.22), transparent 32%),
        radial-gradient(circle at 72% 0%, rgba(255, 222, 185, 0.2), transparent 34%),
        linear-gradient(180deg, #ffffff 0%, #fffdfb 100%);
    box-shadow: var(--shopone-rail-shadow);
    overflow: hidden;
}

body.shopone-market-home .shopone-product-rail__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    padding: 0 0 22px !important;
}

body.shopone-market-home .shopone-product-rail__head > div {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

body.shopone-market-home .shopone-product-rail__head > div::after {
    display: block;
    font-size: 13px;
    line-height: 1.45;
    font-weight: 500;
    color: var(--shopone-rail-muted);
}

body.shopone-market-home #shopone-trending-now .shopone-product-rail__head > div::after {
    content: "Explore the most popular products this week";
}

body.shopone-market-home #shopone-best-selling .shopone-product-rail__head > div::after {
    content: "See the products shoppers are choosing the most right now";
}

body.shopone-market-home #shopone-just-for-you .shopone-product-rail__head > div::after {
    content: "Fresh handpicked finds worth scrolling through today";
}

body.shopone-market-home .shopone-product-rail__title {
    margin: 0 !important;
    font-family: var(--shopone-title-font) !important;
    font-weight: 900 !important;
    letter-spacing: -0.05em !important;
    font-size: clamp(26px, 3vw, 50px) !important;
    line-height: 0.98 !important;
}

body.shopone-market-home .shopone-product-rail__link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    min-height: 46px;
    padding: 0 18px;
    border: 1px solid rgba(237, 240, 245, 0.95);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 12px 26px rgba(18, 28, 45, 0.06);
    font-size: 0 !important;
    text-decoration: none !important;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

body.shopone-market-home .shopone-product-rail__link::before {
    content: "View all";
    font-size: 15px;
    line-height: 1;
    font-weight: 700;
    color: var(--shopone-rail-text);
}

body.shopone-market-home .shopone-product-rail__link::after {
    content: "\2192";
    margin-left: 12px;
    font-size: 18px;
    line-height: 1;
    font-weight: 700;
    color: var(--shopone-rail-accent);
}

body.shopone-market-home .shopone-product-rail__link:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 106, 0, 0.25);
    box-shadow: 0 14px 28px rgba(255, 106, 0, 0.12);
}

body.shopone-market-home .shopone-product-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    column-gap: 18px;
    row-gap: 24px;
    align-items: stretch;
}

body.shopone-market-home .shopone-product-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 100%;
    min-height: 100%;
    padding: 14px 14px 14px;
    border: 1px solid rgba(241, 243, 247, 0.98);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shopone-rail-card-shadow);
    text-decoration: none !important;
    overflow: hidden;
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

body.shopone-market-home .shopone-product-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 247, 239, 0.72) 0%, rgba(255, 255, 255, 0) 38%);
    pointer-events: none;
}

body.shopone-market-home .shopone-product-card::after {
    content: "\2661";
    position: absolute;
    top: 14px;
    right: 13px;
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #2f3747;
    font-size: 17px;
    line-height: 1;
}

body.shopone-market-home .shopone-product-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 106, 0, 0.18);
    box-shadow: 0 22px 38px rgba(18, 28, 45, 0.09);
}

body.shopone-market-home .shopone-product-card__badge,
body.shopone-market-home .shopone-product-card__thumb,
body.shopone-market-home .shopone-product-card__title,
body.shopone-market-home .shopone-product-card__price-wrap {
    position: relative;
    z-index: 1;
}

body.shopone-market-home .shopone-product-card__badge {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    gap: 6px;
    min-height: 24px;
    padding: 0 10px;
    border: 1px solid rgba(255, 106, 0, 0.1);
    border-radius: 999px;
    background: var(--shopone-rail-accent-soft);
    color: transparent;
    font-size: 0 !important;
    line-height: 0 !important;
    font-weight: 700;
    letter-spacing: 0.01em;
    white-space: nowrap;
    overflow: hidden;
    text-indent: -9999px;
}

body.shopone-market-home .shopone-product-card__badge::before {
    content: "";
    flex: 0 0 auto;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--shopone-rail-accent);
    box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.12);
    text-indent: 0;
}

body.shopone-market-home .shopone-product-card__badge::after {
    content: "Trending";
    display: inline-block;
    color: var(--shopone-rail-accent);
    font-size: 10px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: none;
    text-indent: 0;
}

body.shopone-market-home .shopone-product-card__thumb {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 148px;
    padding: 12px;
    border-radius: 16px;
    background: linear-gradient(180deg, #ffffff 0%, #fffaf5 100%);
}

body.shopone-market-home .shopone-product-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.28s ease;
}

body.shopone-market-home .shopone-product-card:hover .shopone-product-card__thumb img {
    transform: scale(1.05);
}

body.shopone-market-home .shopone-product-card__title {
    display: -webkit-box;
    min-height: 38px;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    color: var(--shopone-rail-text);
    font-size: 13px;
    line-height: 1.38;
    font-weight: 500;
}

body.shopone-market-home .shopone-product-card__price-wrap {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
}

body.shopone-market-home .shopone-product-card__price {
    color: var(--shopone-rail-accent);
    font-size: 14px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.shopone-home-rail-copy {
    color: #7c8697;
    font-size: 12px;
    line-height: 1.45;
}

.shopone-merch-note {
    margin-top: 6px;
    min-height: 16px;
    color: #ff6a00;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.01em;
}

@media (max-width: 767.98px) {
    .shopone-home-rail-copy {
        font-size: 11px;
        line-height: 1.35;
    }

    .shopone-merch-note {
        font-size: 10px;
        min-height: 14px;
    }
}

body.shopone-market-home .shopone-product-card__old-price {
    color: #a0a7b5;
    font-size: 11px;
    line-height: 1;
    font-weight: 600;
    text-decoration: line-through;
}

body.shopone-market-home .shopone-product-rail__footer {
    display: flex;
    justify-content: center;
    margin-top: 28px;
}

body.shopone-market-home .shopone-product-rail__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 174px;
    min-height: 50px;
    padding: 0 22px;
    border-radius: 999px;
    background: linear-gradient(135deg, #ff6a00 0%, #ff4f81 100%);
    box-shadow: 0 16px 30px rgba(255, 106, 0, 0.22);
    color: #fff !important;
    font-size: 14px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0.01em;
    text-decoration: none !important;
}

body.shopone-market-home .shopone-product-rail__button:hover {
    color: #fff !important;
    transform: translateY(-2px);
}

@media (max-width: 1199.98px) {
    body.shopone-market-home .shopone-product-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 991.98px) {
    body.shopone-market-home .shopone-product-rail {
        padding: 22px 0 4px;
    }

    body.shopone-market-home .shopone-product-rail__panel {
        padding: 22px 20px 22px;
        border-radius: 24px;
    }

    body.shopone-market-home .shopone-product-rail__head {
        gap: 18px;
        padding-bottom: 20px !important;
    }

    body.shopone-market-home .shopone-product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        column-gap: 16px;
        row-gap: 20px;
    }
}

@media (max-width: 767.98px) {
    body.shopone-market-home .shopone-product-rail .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    body.shopone-market-home .shopone-product-rail__panel {
        padding: 18px 14px 18px;
        border-radius: 20px;
    }

    body.shopone-market-home .shopone-product-rail__head {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        padding-bottom: 16px !important;
    }

    body.shopone-market-home .shopone-product-rail__head > div::after {
        font-size: 13px;
        line-height: 1.5;
    }

    body.shopone-market-home .shopone-product-rail__link {
        min-height: 42px;
        padding: 0 16px;
    }

    body.shopone-market-home .shopone-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 12px;
        row-gap: 16px;
    }

    body.shopone-market-home .shopone-product-card {
        gap: 11px;
        padding: 13px 12px 15px;
        border-radius: 16px;
    }

    body.shopone-market-home .shopone-product-card::after {
        top: 14px;
        right: 14px;
        width: 18px;
        height: 18px;
        font-size: 16px;
    }

    body.shopone-market-home .shopone-product-card__badge {
        min-height: 24px;
        padding: 0 9px;
    }

    body.shopone-market-home .shopone-product-card__thumb {
        height: 110px;
        padding: 10px;
        border-radius: 16px;
    }

    body.shopone-market-home .shopone-product-card__title {
        min-height: 34px;
        font-size: 12px;
        line-height: 1.4;
    }

    body.shopone-market-home .shopone-product-card__price {
        font-size: 14px;
    }

    body.shopone-market-home .shopone-product-rail__footer {
        margin-top: 20px;
    }

    body.shopone-market-home .shopone-product-rail__button {
        min-width: 150px;
        min-height: 44px;
        font-size: 13px;
    }
}

        @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 {
    font-family: var(--shopone-title-font) !important;
    font-weight: 900 !important;
    letter-spacing: -0.03em;
    background: linear-gradient(90deg,
            #f45b2f 0%,
            #ff7a1a 24%,
            #f6a93b 48%,
            #d7a4d7 72%,
            #8b5cf6 100%);

    background-size: 100% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    animation: none;
}

.shopone-product-rail__head > div > h1,
.shopone-product-rail__head > div > h2,
.shopone-product-rail__head > div > h3,
.shopone-product-rail__head > div > h4,
.shopone-product-rail__head > div > h5,
.shopone-product-rail__head > div > h6,
.shopone-product-rail__head .generate-gradient-text,
.shopone-home-hero__title,
.shopone-home-heading,
.shopone-section-title {
    font-family: var(--shopone-title-font) !important;
    font-weight: 900 !important;
    letter-spacing: -0.03em;
}

@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 --------------*/




/*-------------------- Business Setttings Start --------------*/

.business-setting-wrapper {
    background: linear-gradient(180deg, #daeeff 0%, #ffffff 30%);
    margin-top: -20px;
    margin-left: -30px;
    margin-right: -30px;
    
}

@media (max-width: 1200px) {
    .business-setting-wrapper{
        margin-left: -15px;
        margin-right: -15px;
    }
}

@media (max-width: 1400px) {
    .business-setting-wrapper{
        margin-left: -25px;
        margin-right: -25px;
    }
}

.business-setting-wrapper .card .card-body span{
    min-height: 34px;
}

.business-setting-wrapper a:hover .card{
    border-color: var(--blue)!important;
    box-shadow: 0 8px 28px rgba(0,0,0,0.12)!important;
}

.bg-soft-sky-blue{
    background-color: #ECF9FA;
}

.bg-soft-lime{
    background-color: #F3FBEE;
}

.bg-soft-purple{
    background-color: #F5EEFD;
}

/*-------------------- Business Setttings 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;
}

/* ShopOne flat storefront theme */
body,
.aiz-main-wrapper.bg-white,
.aiz-main-wrapper {
    background: #f5f5f5 !important;
}

.product-details,
.product-details-nav-tab,
.shopone-product-rail,
.shopone-product-rail .container,
.product-details > .container {
    background: transparent !important;
}

.shopone-product-shell,
.shopone-summary-side,
.main-slider,
.main-slider .swiper-button-next,
.main-slider .swiper-button-prev,
.thumb-slider .swiper-slide,
#description > div,
.related-product-container,
.reviews-ratings-container,
.shopone-terms-card,
body.shopone-market-home .shopone-product-rail__panel,
body.shopone-market-home .shopone-product-card,
body.shopone-market-home .shopone-product-card__thumb,
body.shopone-market-home .shopone-product-rail__link,
body.shopone-market-home .shopone-product-rail__button {
    box-shadow: none !important;
}

.shopone-product-shell,
.shopone-summary-side,
#description > div,
.related-product-container,
.reviews-ratings-container,
.shopone-terms-card,
body.shopone-market-home .shopone-product-rail__panel,
body.shopone-market-home .shopone-product-card,
body.shopone-market-home .shopone-product-rail__link,
body.shopone-market-home .shopone-product-rail__button {
    background: #fff !important;
    border-color: #e9e9e9 !important;
}

.product-details {
    background: #f5f5f5 !important;
}

.shopone-product-hero,
.shopone-product-shell,
.shopone-summary-side,
.main-slider,
.thumb-slider .swiper-slide,
.front-header-search,
.typed-search-box,
.shopone-info-card,
.shopone-side-quick-card,
body.shopone-market-home .shopone-product-rail__panel,
body.shopone-market-home .shopone-product-card,
#description > div,
.related-product-container,
.reviews-ratings-container,
.shopone-terms-card {
    border-radius: 0 !important;
}

.main-slider,
body.shopone-market-home .shopone-product-card__thumb {
    background: #fff !important;
}

.main-slider .swiper-button-next,
.main-slider .swiper-button-prev {
    background: #fff !important;
    border: 1px solid #ececec !important;
}

.thumb-slider .swiper-slide-thumb-active {
    border-color: #ff6a00 !important;
    box-shadow: none !important;
}

.shopone-stock-dot {
    box-shadow: none !important;
}

body.shopone-market-home {
    --shopone-rail-shadow: none;
    --shopone-rail-card-shadow: none;
}

body.shopone-market-home .shopone-product-rail__panel {
    background: #fff !important;
    border: 1px solid #e9e9e9 !important;
}

body.shopone-market-home .shopone-product-rail__link {
    background: #fff !important;
    border: 1px solid #e9e9e9 !important;
    transform: none !important;
}

body.shopone-market-home .shopone-product-rail__button {
    background: #fff !important;
    color: #111827 !important;
    border: 1px solid #e9e9e9 !important;
    transform: none !important;
}

body.shopone-market-home .shopone-product-rail__button:hover,
body.shopone-market-home .shopone-product-rail__link:hover,
body.shopone-market-home .shopone-product-card:hover {
    transform: none !important;
    box-shadow: none !important;
}

body.shopone-market-home .shopone-product-card {
    background: #fff !important;
    border: 1px solid #ededed !important;
}

body.shopone-market-home .shopone-product-card::before {
    display: none !important;
}

body.shopone-market-home .shopone-product-card__thumb {
    border-radius: 0 !important;
}

body.shopone-market-home .shopone-product-card__badge::before {
    box-shadow: none !important;
}

body.shopone-market-home .shopone-product-rail__panel,
body.shopone-market-home .shopone-product-card,
body.shopone-market-home .shopone-product-card__thumb,
body.shopone-market-home .shopone-product-rail__link,
body.shopone-market-home .shopone-product-rail__button,
body.shopone-market-home #shopone-category-clone .shopone-category-clone__panel,
body.shopone-market-home #shopone-category-clone .shopone-category-clone__item,
body.shopone-market-home #shopone-category-clone .shopone-category-clone__media,
body.shopone-market-home .shopone-trust-card,
body.shopone-market-home .home-banner-area .bg-white,
body.shopone-market-home .shopone-flash-clone .border,
body.shopone-market-home .shopone-flash-clone .aiz-card-box {
    border: 0 !important;
    box-shadow: none !important;
}

body.shopone-market-home .shopone-product-rail__panel {
    padding: 18px 16px 20px !important;
}

body.shopone-market-home .shopone-product-rail__head {
    padding-bottom: 18px !important;
}

body.shopone-market-home .shopone-product-grid {
    column-gap: 14px !important;
    row-gap: 18px !important;
}

body.shopone-market-home .shopone-product-card {
    padding: 10px 10px 12px !important;
}

body.shopone-market-home .shopone-product-card__thumb {
    height: 142px !important;
    padding: 8px !important;
}

body.shopone-market-home .shopone-product-card__title {
    min-height: 34px !important;
}

body.shopone-market-home .shopone-product-card__price-wrap {
    gap: 6px !important;
}

body.shopone-market-home #shopone-category-clone .shopone-category-clone__panel {
    background: #fff !important;
}

body.shopone-market-home #shopone-category-clone .shopone-category-clone__item {
    background: #fff !important;
}

body.shopone-market-home .shopone-flash-clone {
    margin: 20px 0 0 !important;
}

body.shopone-market-home .shopone-flash-clone .container {
    max-width: 1200px;
}

body.shopone-market-home .shopone-flash-clone .border,
body.shopone-market-home .shopone-flash-clone .shopone-flash-panel {
    background: #fff !important;
    padding: 0 0 18px !important;
}

body.shopone-market-home .shopone-flash-clone .shopone-flash-head {
    display: flex !important;
    align-items: flex-start !important;
    justify-content: space-between !important;
    gap: 18px !important;
    margin: 0 !important;
    padding: 0 16px 14px !important;
}

body.shopone-market-home .shopone-flash-clone .shopone-flash-head h3 {
    margin: 0 !important;
    font-family: var(--shopone-title-font) !important;
    font-weight: 900 !important;
    font-size: 18px !important;
    line-height: 1.15 !important;
    color: #111827 !important;
}

body.shopone-market-home .shopone-flash-clone .shopone-flash-kicker {
    display: block;
    margin: 0 0 8px;
    color: #ff6a00;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
}

body.shopone-market-home .shopone-flash-clone .shopone-flash-shopmore {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 14px;
    background: #fff;
    color: #ff6a00 !important;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-decoration: none !important;
}

body.shopone-market-home .shopone-flash-clone .slide-arrow {
    min-width: 22px;
    text-align: center;
}

body.shopone-market-home .shopone-flash-clone .px-sm-3 {
    padding-left: 8px !important;
    padding-right: 8px !important;
}

body.shopone-market-home .shopone-flash-clone .slick-list {
    margin: 0 -6px;
}

body.shopone-market-home .shopone-flash-clone .slick-slide > div {
    margin: 0 6px;
}

body.shopone-market-home .shopone-flash-clone .aiz-card-box {
    background: #fff !important;
    padding: 6px 6px 10px !important;
}

body.shopone-market-home .shopone-flash-clone .aiz-card-box .aiz-p-hov-icon,
body.shopone-market-home .shopone-flash-clone .aiz-card-box .position-absolute.rounded-top-right,
body.shopone-market-home .shopone-flash-clone .aiz-card-box .position-absolute.rounded-bottom-left,
body.shopone-market-home .shopone-flash-clone .aiz-card-box .product-hover-image {
    display: none !important;
}

body.shopone-market-home .shopone-flash-clone .aiz-card-box .h-140px,
body.shopone-market-home .shopone-flash-clone .aiz-card-box .h-md-200px {
    height: 164px !important;
}

body.shopone-market-home .shopone-flash-clone .aiz-card-box .product-main-image {
    object-fit: contain !important;
}

body.shopone-market-home .shopone-flash-clone .aiz-card-box a.d-block.text-reset.hov-text-primary {
    display: -webkit-box !important;
    min-height: 40px !important;
    overflow: hidden !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    color: #111827 !important;
    font-size: 13px !important;
    line-height: 1.35 !important;
    font-weight: 500 !important;
    margin-top: 6px !important;
}

body.shopone-market-home .shopone-flash-clone .aiz-card-box .text-primary,
body.shopone-market-home .shopone-flash-clone .aiz-card-box .fw-700.text-primary {
    color: #ff6a00 !important;
}

body.shopone-market-home .shopone-product-rail__button.is-loading,
body.shopone-market-home .shopone-product-rail__button.is-disabled {
    opacity: 0.72;
    pointer-events: none;
}

@media (max-width: 991.98px) {
    body.shopone-market-home .shopone-product-grid {
        column-gap: 12px !important;
        row-gap: 16px !important;
    }

    body.shopone-market-home .shopone-product-rail__panel {
        padding: 16px 12px 18px !important;
    }

    body.shopone-market-home .shopone-flash-clone .shopone-flash-head {
        padding: 0 12px 12px !important;
    }

    body.shopone-market-home .shopone-flash-clone .aiz-card-box .h-140px,
    body.shopone-market-home .shopone-flash-clone .aiz-card-box .h-md-200px {
        height: 140px !important;
    }
}

@media (max-width: 767.98px) {
    body.shopone-market-home .shopone-product-grid {
        column-gap: 10px !important;
        row-gap: 14px !important;
    }

    body.shopone-market-home .shopone-product-card {
        padding: 9px 9px 11px !important;
    }

    body.shopone-market-home .shopone-product-card__thumb {
        height: 118px !important;
        padding: 6px !important;
    }

    body.shopone-market-home .shopone-flash-clone .shopone-flash-head {
        flex-wrap: wrap;
    }

    body.shopone-market-home .shopone-flash-clone .slide-arrow {
        display: none !important;
    }
}

.shopone-search-with-hints {
    align-items: flex-start !important;
}

.shopone-search-stack {
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* ShopOne home final flat pass */
body.shopone-market-home {
    background: #f5f5f5 !important;
}

body.shopone-market-home .shopone-product-rail__panel,
body.shopone-market-home #shopone-category-clone .shopone-category-clone__panel,
body.shopone-market-home .shopone-flash-clone,
body.shopone-market-home .shopone-flash-clone .shopone-flash-panel,
body.shopone-market-home .shopone-trust-card {
    background: transparent !important;
    border: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
}

body.shopone-market-home .shopone-product-rail__panel {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

body.shopone-market-home .shopone-product-card,
body.shopone-market-home .shopone-product-card__thumb,
body.shopone-market-home .shopone-flash-clone .aiz-card-box,
body.shopone-market-home .shopone-flash-clone .h-140px,
body.shopone-market-home .shopone-flash-clone .h-md-200px {
    background: #fff !important;
    border: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
}

body.shopone-market-home #shopone-category-clone .shopone-category-clone__item,
body.shopone-market-home #shopone-category-clone .shopone-category-clone__media,
body.shopone-market-home .shopone-trust-card,
body.shopone-market-home .home-banner-area .bg-white,
body.shopone-market-home .shopone-product-rail__head,
body.shopone-market-home .shopone-product-rail__footer,
body.shopone-market-home .shopone-product-grid,
body.shopone-market-home #shopone-category-clone .shopone-category-clone__grid,
body.shopone-market-home .shopone-flash-clone .slick-list,
body.shopone-market-home .shopone-flash-clone .slick-track,
body.shopone-market-home .shopone-flash-clone .px-sm-3 {
    background: #f5f5f5 !important;
    border: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
}

body.shopone-market-home .shopone-product-card::before,
body.shopone-market-home .shopone-product-card::after,
body.shopone-market-home .shopone-flash-clone .aiz-card-box::before,
body.shopone-market-home .shopone-flash-clone .aiz-card-box::after,
body.shopone-market-home #shopone-category-clone .shopone-category-clone__item::before,
body.shopone-market-home #shopone-category-clone .shopone-category-clone__item::after {
    content: none !important;
    display: none !important;
    border: 0 !important;
    box-shadow: none !important;
}

body.shopone-market-home .shopone-product-card,
body.shopone-market-home .shopone-product-card__thumb,
body.shopone-market-home .shopone-product-rail__link,
body.shopone-market-home .shopone-product-rail__button,
body.shopone-market-home #shopone-category-clone .shopone-category-clone__panel,
body.shopone-market-home #shopone-category-clone .shopone-category-clone__item,
body.shopone-market-home #shopone-category-clone .shopone-category-clone__media,
body.shopone-market-home .shopone-flash-clone .border,
body.shopone-market-home .shopone-flash-clone .aiz-card-box,
body.shopone-market-home .shopone-flash-clone .card,
body.shopone-market-home .shopone-flash-clone .bg-white {
    border-radius: 0 !important;
}

body.shopone-market-home .shopone-product-rail__head > div::after,
body.shopone-market-home .shopone-product-card__old-price,
body.shopone-market-home .shopone-flash-clone .text-muted,
body.shopone-market-home .shopone-flash-clone del,
body.shopone-market-home .shopone-product-card,
body.shopone-market-home .shopone-flash-clone .aiz-card-box,
body.shopone-market-home #shopone-category-clone .shopone-category-clone__item {
    border-color: transparent !important;
}

body.shopone-market-home .shopone-flash-clone {
    margin-top: 18px !important;
    background: #ffffff !important;
}

body.shopone-market-home .shopone-flash-clone .shopone-flash-panel,
body.shopone-market-home .shopone-flash-clone .border {
    background: #ffffff !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

body.shopone-market-home .shopone-flash-clone .shopone-flash-head {
    background: #ffffff !important;
    align-items: flex-start !important;
    flex-wrap: wrap !important;
    gap: 10px 16px !important;
    padding: 14px 16px 12px !important;
    border-bottom: 1px solid #ececec !important;
}

body.shopone-market-home .shopone-flash-clone .shopone-flash-head h3 {
    display: block !important;
    font-family: var(--shopone-title-font) !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    line-height: 1.08 !important;
    color: #232837 !important;
    letter-spacing: -0.02em !important;
}

body.shopone-market-home .shopone-flash-clone .shopone-flash-head h3 span,
body.shopone-market-home .shopone-flash-clone .shopone-grad-word {
    background: none !important;
    -webkit-background-clip: border-box !important;
    background-clip: border-box !important;
    -webkit-text-fill-color: currentColor !important;
    color: #232837 !important;
}

body.shopone-market-home .shopone-flash-clone .shopone-flash-kicker {
    margin-bottom: 5px !important;
    color: #ff6a00 !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
}

body.shopone-market-home .shopone-flash-clone .aiz-card-box {
    padding: 0 8px 8px !important;
}

body.shopone-market-home .shopone-flash-clone .slick-slide > div {
    margin: 0 8px !important;
}

body.shopone-market-home .shopone-flash-clone .px-sm-3,
body.shopone-market-home .shopone-flash-clone .slick-list,
body.shopone-market-home .shopone-flash-clone .slick-track {
    background: #ffffff !important;
}

body.shopone-market-home .shopone-product-rail__link,
body.shopone-market-home .shopone-product-rail__button,
body.shopone-market-home .shopone-flash-clone .shopone-flash-shopmore {
    border: 0 !important;
    box-shadow: none !important;
    background: transparent !important;
}

body.shopone-market-home .shopone-flash-clone .shopone-flash-shopmore {
    min-height: 38px !important;
    padding: 0 14px !important;
    border: 1px solid #ff6a00 !important;
    background: #ffffff !important;
    color: #ff6a00 !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: 0.02em !important;
    text-transform: uppercase !important;
}

body.shopone-market-home .shopone-flash-clone .shopone-flash-head > div:first-child {
    flex: 1 1 320px;
    min-width: 0;
}

body.shopone-market-home .shopone-flash-clone .shopone-flash-head > .d-flex:last-child {
    flex: 0 0 auto;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

body.shopone-market-home .shopone-flash-clone .shopone-home-rail-copy {
    margin-top: 2px;
}

body.shopone-market-home .shopone-flash-clone .px-sm-3 {
    padding-bottom: 4px !important;
}

body.shopone-market-home .shopone-flash-clone .carousel-box .px-3 {
    padding-left: 8px !important;
    padding-right: 8px !important;
}

body.shopone-market-home .shopone-flash-clone .slide-arrow {
    color: #8b95a7 !important;
}

.shopone-search-hints {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0;
    padding: 6px 6px 0 4px;
    min-height: 20px;
}

.shopone-search-hints a {
    position: relative;
    color: #737985;
    font-size: 12px;
    line-height: 1.2;
    font-weight: 500;
    text-decoration: none !important;
    padding-right: 10px;
    margin-right: 10px;
    white-space: nowrap;
}

.shopone-search-hints a::after {
    content: "|";
    position: absolute;
    top: 50%;
    right: 0;
    color: #c9cfd8;
    transform: translateY(-50%);
}

.shopone-search-hints a:last-child {
    margin-right: 0;
    padding-right: 0;
}

.shopone-search-hints a:last-child::after {
    display: none;
}

.shopone-search-hints a:hover {
    color: #ff6a00;
}

@media (max-width: 991.98px) {
    .shopone-search-with-hints {
        align-items: center !important;
    }

    .shopone-search-hints {
        display: none !important;
    }
}

/* Final single-product cleanup */
.shopone-product-shell {
    background: #fff !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

.shopone-product-hero {
    padding: 0 !important;
}

.shopone-gallery {
    padding: 18px 18px 12px 0 !important;
    background: transparent !important;
}

.shopone-main-gallery {
    background: #fff;
    border-radius: 0 !important;
}

.shopone-gallery-badge {
    top: 12px;
    left: 0;
    min-height: 20px;
    padding: 0;
    background: transparent;
    color: #ff6a00;
    border-radius: 0;
    font-size: 11px;
    letter-spacing: 0.04em;
}

.main-slider {
    height: 450px;
    background: #fff !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

.main-slider .swiper-slide {
    padding: 20px 18px 10px !important;
    background: #fff;
}

.main-slider .swiper-slide img,
.main-slider .swiper-slide video,
.main-slider .swiper-slide iframe {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.shopone-gallery-slide,
.shopone-gallery-thumb {
    background: #fff !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

.main-slider .swiper-button-next,
.main-slider .swiper-button-prev {
    width: 18px;
    height: 18px;
    margin-top: -9px;
    background: transparent !important;
    box-shadow: none !important;
    border: 0 !important;
    color: #b4bac4;
}

.main-slider .swiper-button-next:after,
.main-slider .swiper-button-prev:after {
    font-size: 18px !important;
    font-weight: 700;
}

.thumb-container {
    padding: 12px 26px 0 18px !important;
    border-radius: 0 !important;
}

.thumb-slider .swiper-slide {
    width: 60px !important;
    height: 60px !important;
    background: #fff !important;
    border: 1px solid #e6eaf0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

.thumb-slider .swiper-slide img {
    padding: 6px !important;
    object-fit: contain !important;
}

.thumb-slider .swiper-slide-thumb-active {
    border-color: #ff6a00 !important;
    box-shadow: none !important;
}

.shopone-summary-main {
    gap: 12px;
    padding: 16px 18px 18px 0 !important;
    background: #fff !important;
}

.shopone-product-meta-row {
    gap: 6px 12px;
}

.shopone-inline-link {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0;
}

.shopone-product-title {
    font-size: clamp(1.6rem, 1.85vw, 2.3rem);
    line-height: 1.08;
    letter-spacing: -0.045em;
}

.shopone-review-band {
    gap: 8px 12px;
}

.shopone-review-note {
    padding: 0;
    background: transparent !important;
    border-radius: 0 !important;
    color: #6b7280;
    font-size: 13px;
    font-weight: 600;
}

.shopone-stock-meta {
    gap: 8px;
}

.shopone-stock-dot {
    box-shadow: none;
}

.shopone-stock-copy,
.shopone-stock-separator {
    display: none !important;
}

.shopone-feature-card-row {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 0 !important;
    padding: 12px 0 8px;
}

.shopone-feature-card {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
    padding: 6px 0;
}

.shopone-feature-card + .shopone-feature-card {
    margin-left: 0;
    padding-left: 12px;
    border-left: 1px solid #e8ebf0;
}

.shopone-feature-card:first-child {
    padding-left: 0;
}

.shopone-feature-card__icon {
    width: 16px;
    height: 16px;
    color: #8a909c;
    font-size: 13px;
    flex: 0 0 16px;
}

.shopone-feature-card > div {
    min-width: 0;
}

.shopone-feature-card strong {
    font-size: 12px;
    line-height: 1;
    white-space: nowrap;
}

.shopone-feature-card span {
    margin-top: 2px;
    font-size: 11px;
    line-height: 1.1;
    white-space: nowrap;
}

.shopone-assurance-note {
    margin: 0;
    padding: 0 0 14px;
    color: #6b7280;
    font-size: 12px;
    line-height: 1.45;
}

.shopone-price-card {
    padding: 14px 0 16px !important;
}

.shopone-price-value {
    font-size: clamp(2rem, 2.15vw, 2.45rem);
    color: #ff6a00 !important;
}

.shopone-price-meta {
    margin-top: 8px;
}

.shopone-discount-badge {
    padding: 0;
    background: transparent;
    color: #6b7280;
    border-radius: 0;
    font-size: 13px;
    font-weight: 700;
}

.shopone-price-support {
    display: none !important;
}

.shopone-offer-banner,
.shopone-offer-banner--soft {
    padding: 14px 0 0 !important;
    background: transparent !important;
    border: 0 !important;
    border-top: 1px solid #eceff3 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

.shopone-offer-kicker {
    margin-bottom: 4px;
    padding: 0;
    background: transparent !important;
    border-radius: 0 !important;
    color: #ff6a00 !important;
    font-size: 11px;
    letter-spacing: 0.05em;
}

.shopone-offer-banner strong {
    font-size: 17px;
}

.shopone-offer-banner p {
    margin-top: 4px;
    max-width: 420px;
    color: #6b7280 !important;
}

.shopone-buy-card {
    gap: 14px;
    padding-top: 14px;
}

.shopone-buy-actions .buy-now,
.shopone-buy-actions .add-to-cart,
.shopone-buy-card .out-of-stock {
    border-radius: 0 !important;
}

.shopone-buy-actions .buy-now {
    background: #111827 !important;
}

.shopone-buy-actions .add-to-cart {
    background: #fff !important;
}

.shopone-utility-actions {
    gap: 10px 14px;
}

.shopone-summary-side {
    gap: 0;
    background: #fff !important;
    border-left: 1px solid #e6eaf0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

.shopone-info-card {
    gap: 10px;
    padding: 18px 20px !important;
}

.shopone-info-card__head {
    gap: 10px;
}

.shopone-info-card__icon,
.shopone-side-quick-card__icon,
.shopone-info-list__icon {
    color: #8a909c !important;
}

.shopone-info-title {
    font-size: 14px;
}

.shopone-info-list li {
    padding: 12px 0 0;
    gap: 10px;
}

.shopone-side-stack {
    display: none;
}

#description > div,
.related-product-container,
.reviews-ratings-container,
.shopone-terms-card {
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

.shopone-terms-card {
    padding: 18px 0 0 !important;
    background: transparent !important;
    border-top: 1px solid #eceff3 !important;
}

.shopone-faq-section {
    margin-top: 16px;
}

.shopone-faq-card {
    background: #fff;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    padding: 18px 0 0;
    border-top: 1px solid #eceff3;
}

.shopone-faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.shopone-faq-item {
    background: #fff;
    border: 1px solid #eceff3;
    border-radius: 0;
    box-shadow: none;
    overflow: hidden;
}

.shopone-faq-question {
    list-style: none;
    cursor: pointer;
    padding: 14px 16px;
    font-size: 14px;
    font-weight: 700;
    color: #111827;
}

.shopone-faq-question::-webkit-details-marker {
    display: none;
}

.shopone-faq-question::after {
    content: "+";
    float: right;
    color: #6b7280;
    font-size: 18px;
    line-height: 1;
}

.shopone-faq-item[open] .shopone-faq-question::after {
    content: "-";
}

.shopone-faq-answer {
    padding: 0 16px 14px;
}

.shopone-faq-answer p {
    margin: 0;
    color: #4b5563;
    font-size: 14px;
    line-height: 1.7;
}

.shopone-faq-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin-top: 14px;
}

.shopone-buying-section {
    margin-top: 16px;
}

.shopone-buying-card {
    background: #fff;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    padding: 18px 0 0;
    border-top: 1px solid #eceff3;
}

.shopone-buying-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.shopone-buying-item {
    background: #f9fafb;
    padding: 14px 16px;
}

.shopone-buying-item h3 {
    margin: 0 0 6px;
    color: #111827;
    font-size: 14px;
    line-height: 1.35;
    font-weight: 800;
}

.shopone-buying-item p {
    margin: 0;
    color: #4b5563;
    font-size: 13px;
    line-height: 1.7;
}

.shopone-page-seo-block {
    padding: 0 0 28px;
    background: #f5f5f5;
}

.shopone-page-seo-card {
    background: #fff;
    border: 0;
    box-shadow: none;
    border-radius: 0;
    padding: 22px 24px;
}

.shopone-page-seo-head {
    margin-bottom: 18px;
}

.shopone-page-seo-eyebrow {
    margin: 0 0 6px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #f85606;
}

.shopone-page-seo-title {
    margin: 0 0 8px;
    color: #111827;
    font-size: 28px;
    line-height: 1.1;
    font-weight: 900;
    font-family: var(--shopone-title-font, 'Satoshi', 'Public Sans', sans-serif);
}

.shopone-page-seo-intro {
    margin: 0;
    color: #4b5563;
    font-size: 14px;
    line-height: 1.8;
    max-width: 920px;
}

.shopone-page-seo-group + .shopone-page-seo-group,
.shopone-page-seo-group + .shopone-page-seo-faq,
.shopone-page-seo-faq + .shopone-page-seo-group {
    margin-top: 18px;
}

.shopone-page-seo-label {
    margin: 0 0 10px;
    color: #111827;
    font-size: 14px;
    line-height: 1.3;
    font-weight: 800;
}

.shopone-page-seo-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.shopone-page-seo-chip {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    background: #f5f5f5;
    color: #1f2937;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none !important;
    transition: color .2s ease, background-color .2s ease;
}

.shopone-page-seo-chip:hover {
    color: #f85606;
    background: #fff2eb;
}

.shopone-page-seo-faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.shopone-page-seo-faq-item {
    background: #f9fafb;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    overflow: hidden;
}

.shopone-page-seo-faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 14px 16px;
    color: #111827;
    font-size: 14px;
    font-weight: 700;
}

.shopone-page-seo-faq-item summary::-webkit-details-marker {
    display: none;
}

.shopone-page-seo-faq-item summary::after {
    content: "+";
    float: right;
    color: #6b7280;
    font-size: 18px;
    line-height: 1;
}

.shopone-page-seo-faq-item[open] summary::after {
    content: "-";
}

.shopone-page-seo-faq-item p {
    margin: 0;
    padding: 0 16px 14px;
    color: #4b5563;
    font-size: 14px;
    line-height: 1.75;
}

@media (max-width: 991.98px) {
    .shopone-page-seo-block {
        padding-bottom: 22px;
    }

    .shopone-page-seo-card {
        padding: 18px 16px;
    }

    .shopone-page-seo-title {
        font-size: 22px;
    }

    .shopone-page-seo-intro,
    .shopone-page-seo-faq-item p,
    .shopone-page-seo-faq-item summary {
        font-size: 13px;
    }

    .shopone-page-seo-chip {
        min-height: 32px;
        padding: 0 10px;
        font-size: 12px;
    }

    .shopone-buying-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

#description .bg-soft-light {
    padding: 0 !important;
    background: transparent !important;
    border-radius: 0 !important;
}

#description .bg-soft-light span {
    color: #6b7280 !important;
    font-size: 11px !important;
    letter-spacing: 0.04em;
}

.shopone-search-hints {
    padding: 4px 0 0 2px;
    min-height: 18px;
}

.shopone-search-hints a {
    color: #7f8794;
    font-size: 11px;
    font-weight: 500;
    padding-right: 8px;
    margin-right: 8px;
}

.shopone-search-hints a::after {
    color: #d0d5dd;
}

.front-header-search .typed-search-box.shopone-smart-search-box {
    top: calc(100% + 12px) !important;
    min-height: auto !important;
    border: 1px solid #f0e3d5 !important;
    border-radius: 24px !important;
    background: linear-gradient(180deg, #fffdf9 0%, #fff6ec 100%) !important;
    box-shadow: 0 22px 60px rgba(24, 33, 52, 0.16), 0 8px 20px rgba(24, 33, 52, 0.08) !important;
    overflow: hidden;
    z-index: 1085;
}

.front-header-search .typed-search-box.shopone-smart-search-box::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: linear-gradient(90deg, #ff7d1a 0%, #ffb74d 52%, #ffe2bd 100%);
    z-index: 1;
}

.front-header-search .typed-search-box.shopone-smart-search-box .search-preloader {
    top: 18px !important;
    z-index: 2;
}

.front-header-search .typed-search-box.shopone-smart-search-box .search-nothing {
    padding: 30px 22px !important;
    color: #495264;
    font-size: 15px !important;
    font-weight: 600;
}

.shopone-smart-search-panel {
    position: relative;
    padding: 22px 22px 20px;
}

.shopone-smart-search-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 16px;
}

.shopone-smart-search-head__eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(255, 122, 26, 0.12);
    color: #da6410;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.shopone-smart-search-head__title {
    margin: 8px 0 4px;
    color: #20283a;
    font-size: 24px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.shopone-smart-search-head__copy {
    margin: 0;
    color: #687386;
    font-size: 13px;
    line-height: 1.45;
    max-width: 520px;
}

.shopone-smart-search-head__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 15px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid #f0dcc6;
    color: #20283a !important;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none !important;
    white-space: nowrap;
    box-shadow: 0 6px 16px rgba(24, 33, 52, 0.06);
}

.shopone-smart-search-body {
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) minmax(240px, 0.9fr);
    gap: 18px;
    align-items: start;
}

.shopone-smart-search-results {
    min-width: 0;
}

.shopone-smart-search-showcase {
    display: grid;
    gap: 12px;
}

.shopone-smart-search-hero {
    position: relative;
    display: grid;
    grid-template-columns: 108px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    min-height: 140px;
    padding: 16px;
    border-radius: 24px;
    background:
        radial-gradient(circle at top right, rgba(255, 180, 77, 0.28), transparent 38%),
        linear-gradient(145deg, #fffaf3 0%, #ffffff 54%, #fff1df 100%);
    border: 1px solid #f3debf;
    box-shadow: 0 16px 34px rgba(24, 33, 52, 0.1);
    text-decoration: none !important;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.shopone-smart-search-hero:hover,
.shopone-smart-search-hero.is-active {
    transform: translateY(-2px);
    border-color: #efbf7e;
    box-shadow: 0 22px 42px rgba(24, 33, 52, 0.14);
}

.shopone-smart-search-hero__media {
    display: block;
    width: 108px;
    height: 108px;
    border-radius: 22px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #f5e4cd;
}

.shopone-smart-search-hero__media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.shopone-smart-search-hero__content {
    min-width: 0;
}

.shopone-smart-search-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 0 10px;
    margin-bottom: 10px;
    border-radius: 999px;
    background: #20283a;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.shopone-smart-search-hero__title {
    display: block;
    color: #1f2838;
    font-size: 18px;
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.shopone-smart-search-hero__meta,
.shopone-smart-search-hero__summary {
    display: block;
    color: #667085;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.45;
}

.shopone-smart-search-hero__meta {
    margin-top: 6px;
}

.shopone-smart-search-hero__summary {
    margin-top: 7px;
}

.shopone-smart-search-hero__price-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.shopone-smart-search-hero__price {
    color: #ff6a00;
    font-size: 17px;
    font-weight: 900;
    line-height: 1;
}

.shopone-smart-search-hero__old-price {
    color: #8b95a7;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    text-decoration: line-through;
}

.shopone-smart-search-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.shopone-smart-search-card {
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    min-height: 116px;
    padding: 12px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid #f4e6d8;
    box-shadow: 0 8px 22px rgba(24, 33, 52, 0.06);
    text-decoration: none !important;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.shopone-smart-search-card:hover {
    transform: translateY(-2px);
    border-color: #f0c998;
    box-shadow: 0 14px 28px rgba(24, 33, 52, 0.12);
}

.shopone-smart-search-card.is-active,
.shopone-smart-search-chip.is-active,
.shopone-smart-search-action.is-active,
.shopone-smart-search-head__link.is-active {
    border-color: #efbf7e !important;
    box-shadow: 0 0 0 3px rgba(255, 125, 26, 0.12), 0 14px 28px rgba(24, 33, 52, 0.12) !important;
    transform: translateY(-1px);
}

.shopone-smart-search-card__media {
    position: relative;
    display: block;
    width: 88px;
    height: 88px;
    border-radius: 18px;
    overflow: hidden;
    background: linear-gradient(180deg, #fffaf4 0%, #fff 100%);
    border: 1px solid #f5e6d6;
}

.shopone-smart-search-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.shopone-smart-search-card__badge {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    max-width: 100%;
    min-height: 22px;
    padding: 0 8px;
    margin-bottom: 6px;
    border-radius: 999px;
    background: #20283a;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.shopone-smart-search-card__meta {
    display: block;
    margin-bottom: 4px;
    color: #7b8494;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.3;
}

.shopone-smart-search-card__title {
    display: -webkit-box;
    margin-bottom: 8px;
    color: #20283a;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.28;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.shopone-smart-search-card__price-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
}

.shopone-smart-search-card__price {
    color: #ff6a00;
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
}

.shopone-smart-search-card__old-price {
    color: #8b95a7;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    text-decoration: line-through;
}

.shopone-smart-search-panel mark {
    padding: 0 2px;
    border-radius: 6px;
    background: rgba(255, 125, 26, 0.16);
    color: inherit;
}

.shopone-smart-search-side {
    display: grid;
    gap: 12px;
}

.shopone-smart-search-side-card {
    padding: 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid #f4e7da;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.shopone-smart-search-side-card__label {
    display: block;
    margin-bottom: 10px;
    color: #20283a;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.shopone-smart-search-chip-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.shopone-smart-search-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 34px;
    max-width: 100%;
    padding: 0 12px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid #efe0d1;
    color: #394254 !important;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none !important;
    transition: border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.shopone-smart-search-chip:hover {
    transform: translateY(-1px);
    border-color: #f0c998;
    box-shadow: 0 8px 18px rgba(24, 33, 52, 0.08);
}

.shopone-smart-search-chip--count strong {
    color: #ff6a00;
    font-size: 11px;
    font-weight: 800;
}

.shopone-smart-search-actions {
    display: grid;
    gap: 8px;
}

.shopone-smart-search-action {
    display: block;
    padding: 11px 12px;
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid #efe2d5;
    color: #20283a !important;
    text-decoration: none !important;
    transition: border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.shopone-smart-search-action:hover {
    transform: translateY(-1px);
    border-color: #f0c998;
    box-shadow: 0 8px 18px rgba(24, 33, 52, 0.08);
}

.shopone-smart-search-action span {
    display: block;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.25;
}

.shopone-smart-search-action small {
    display: block;
    margin-top: 3px;
    color: #7b8494;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.3;
}

@media (min-width: 1200px) {
    .shopone-summary-grid {
        grid-template-columns: minmax(0, 1fr) 286px;
        gap: 14px;
    }
}

@media (max-width: 1199.98px) {
    .main-slider {
        height: 400px;
    }

    .shopone-smart-search-body {
        grid-template-columns: 1fr;
    }

    .shopone-smart-search-grid {
        grid-template-columns: 1fr;
    }

    .shopone-smart-search-head {
        flex-direction: column;
        align-items: stretch;
    }

    .shopone-smart-search-panel {
        padding: 18px 18px 16px;
    }

    .shopone-summary-main {
        padding-right: 0 !important;
    }
}

@media (max-width: 991.98px) {
    .shopone-gallery {
        padding: 0 0 12px !important;
    }

    .main-slider {
        height: 360px;
    }

    .thumb-container {
        padding: 10px 0 0 !important;
    }

    .shopone-summary-main {
        padding: 0 !important;
    }

    .shopone-summary-side {
        border-left: 0 !important;
        border-top: 1px solid #e6eaf0 !important;
    }

    .front-header-search .typed-search-box.shopone-smart-search-box {
        top: calc(100% + 10px) !important;
        border-radius: 20px !important;
    }
}

@media (max-width: 767px) {
    .shopone-smart-search-hero {
        grid-template-columns: 82px minmax(0, 1fr);
        gap: 10px;
        min-height: 118px;
        padding: 12px;
        border-radius: 20px;
    }

    .shopone-smart-search-hero__media {
        width: 82px;
        height: 82px;
        border-radius: 18px;
    }

    .shopone-smart-search-hero__title {
        font-size: 16px;
    }

    .shopone-smart-search-card {
        grid-template-columns: 74px minmax(0, 1fr);
        gap: 10px;
        min-height: 102px;
        padding: 10px;
        border-radius: 18px;
    }

    .shopone-smart-search-card__media {
        width: 74px;
        height: 74px;
        border-radius: 16px;
    }

    .shopone-smart-search-head__title {
        font-size: 20px;
    }

    .main-slider {
        height: 300px;
    }

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

    .shopone-product-title {
        font-size: 1.55rem;
    }

    .shopone-feature-card-row {
        display: grid !important;
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        gap: 0 !important;
    }

    .shopone-feature-card {
        gap: 6px;
        padding: 6px 0;
    }

    .shopone-feature-card + .shopone-feature-card {
        padding-left: 10px;
    }

    .shopone-feature-card__icon {
        width: 14px;
        height: 14px;
        font-size: 12px;
        flex-basis: 14px;
    }

    .shopone-feature-card strong {
        font-size: 11px;
    }

    .shopone-feature-card span {
        font-size: 10px;
    }
}

/* ShopOne homepage final polish */
body.shopone-market-home .shopone-product-rail {
    margin-top: 6px !important;
}

body.shopone-market-home .shopone-product-rail__panel {
    padding-top: 2px !important;
    padding-bottom: 10px !important;
}

body.shopone-market-home .shopone-product-rail__head {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    align-items: end !important;
    column-gap: 10px !important;
    row-gap: 0 !important;
    padding-bottom: 6px !important;
}

body.shopone-market-home .shopone-product-rail__eyebrow {
    color: #8b95a7 !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
}

body.shopone-market-home .shopone-product-rail__title {
    display: inline-flex !important;
    align-items: flex-end !important;
    gap: 0.1em !important;
    font-size: clamp(20px, 1.95vw, 30px) !important;
    line-height: 1.1 !important;
    letter-spacing: -0.04em !important;
    padding-bottom: 3px !important;
}

body.shopone-market-home .shopone-product-rail__title > span {
    display: inline-block !important;
    line-height: 1.1 !important;
}

body.shopone-market-home .shopone-grad-word,
body.shopone-market-home .generate-gradient-text {
    display: inline-block !important;
    line-height: 1.14 !important;
    padding-bottom: 0.12em !important;
    background: linear-gradient(90deg,
        #f45b2f 0%,
        #ff7a1a 24%,
        #f6a93b 48%,
        #d7a4d7 72%,
        #8b5cf6 100%) !important;
    background-size: 100% 100% !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    color: transparent !important;
    animation: none !important;
}

body.shopone-market-home .shopone-product-rail__head > div::after {
    font-size: 11px !important;
    line-height: 1.3 !important;
    color: #8b95a7 !important;
}

body.shopone-market-home .shopone-product-rail__head > div {
    gap: 1px !important;
}

body.shopone-market-home .shopone-product-rail__link {
    align-self: flex-end !important;
    margin-bottom: 2px !important;
    min-height: 32px !important;
    padding: 0 0 2px !important;
}

body.shopone-market-home #shopone-trending-now .shopone-product-rail__head > div::after {
    content: "High-intent picks customers notice fastest" !important;
}

body.shopone-market-home #shopone-best-selling .shopone-product-rail__head > div::after {
    content: "Products shoppers trust and choose most" !important;
}

body.shopone-market-home #shopone-just-for-you .shopone-product-rail__head > div::after {
    content: "Fresh, value-first picks worth exploring" !important;
}

body.shopone-market-home .shopone-product-grid {
    column-gap: 16px !important;
    row-gap: 16px !important;
}

body.shopone-market-home .shopone-product-card {
    padding: 12px 12px 14px !important;
}

body.shopone-market-home .shopone-product-card__thumb {
    height: 132px !important;
    padding: 10px !important;
}

body.shopone-market-home .shopone-product-card__title {
    min-height: 32px !important;
    font-size: 12px !important;
    line-height: 1.32 !important;
    letter-spacing: -0.01em !important;
}

body.shopone-market-home .shopone-product-card__note {
    display: block !important;
    margin-top: 4px !important;
    min-height: 13px !important;
    color: #8791a4 !important;
    font-size: 10px !important;
    font-weight: 600 !important;
    line-height: 1.25 !important;
    letter-spacing: 0 !important;
}

body.shopone-market-home .shopone-product-card__price {
    font-size: 13px !important;
}

body.shopone-market-home .shopone-product-card__old-price {
    font-size: 10px !important;
}

body.shopone-market-home #shopone-category-clone {
    margin-top: 8px !important;
}

body.shopone-market-home #shopone-category-clone .container {
    max-width: 1200px !important;
}

body.shopone-market-home #shopone-category-clone .shopone-category-clone__title {
    margin: 0 0 8px !important;
    color: #232837 !important;
    font-family: var(--shopone-title-font) !important;
    font-size: 15px !important;
    font-weight: 800 !important;
    letter-spacing: -0.02em !important;
}

body.shopone-market-home #shopone-category-clone .shopone-category-clone__panel {
    padding: 1px !important;
    background: #f5f5f5 !important;
}

body.shopone-market-home #shopone-category-clone .shopone-category-clone__grid {
    display: grid !important;
    grid-template-columns: repeat(8, minmax(0, 1fr)) !important;
    gap: 1px !important;
    background: #f5f5f5 !important;
}

body.shopone-market-home #shopone-category-clone .shopone-category-clone__item {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    min-height: 136px !important;
    padding: 8px 8px 10px !important;
    background: #ffffff !important;
    text-align: center !important;
}

body.shopone-market-home #shopone-category-clone .shopone-category-clone__media {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    height: 58px !important;
    margin: 0 0 6px !important;
    background: #ffffff !important;
}

body.shopone-market-home #shopone-category-clone .shopone-category-clone__media img {
    width: auto !important;
    max-width: 64px !important;
    height: auto !important;
    max-height: 46px !important;
    object-fit: contain !important;
}

body.shopone-market-home #shopone-category-clone .shopone-category-clone__name {
    color: #232837 !important;
    font-size: 10px !important;
    line-height: 1.25 !important;
    font-weight: 500 !important;
    letter-spacing: -0.01em !important;
}

body.shopone-market-home .shopone-help-strip {
    border-radius: 0 !important;
    padding: 18px !important;
    background: #171717 !important;
    box-shadow: none !important;
}

body.shopone-market-home .shopone-help-strip::before,
body.shopone-market-home .shopone-help-strip::after {
    content: none !important;
    display: none !important;
}

body.shopone-market-home .home-banner-area > .container > .mt-3 > .bg-white.border.border-light-gray.rounded-2 {
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    background: #f5f5f5 !important;
}

body.shopone-market-home .shopone-help-strip h2,
body.shopone-market-home .shopone-help-strip h3,
body.shopone-market-home .shopone-help-strip__title,
body.shopone-market-home .shopone-proof-title,
body.shopone-market-home .shopone-proof-card__title {
    font-family: var(--shopone-title-font) !important;
    font-weight: 900 !important;
    letter-spacing: -0.03em !important;
}

body.shopone-market-home .shopone-proof-grid,
body.shopone-market-home .shopone-proof-metrics,
body.shopone-market-home .shopone-proof-card,
body.shopone-market-home .shopone-help-strip__actions .btn,
body.shopone-market-home .shopone-mobile-policy-grid > * {
    border: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
    border-radius: 0 !important;
}

body.shopone-market-home .shopone-proof-card,
body.shopone-market-home .shopone-mobile-policy-grid > * {
    background: #ffffff !important;
}

body.shopone-market-home .shopone-proof-card__copy,
body.shopone-market-home .shopone-help-strip p,
body.shopone-market-home .shopone-help-strip__copy {
    color: #8b95a7 !important;
}

body.shopone-market-home footer.bg-black {
    margin-top: 0 !important;
    padding-top: 16px !important;
    padding-bottom: 16px !important;
    background: #15171d !important;
    border-top: 1px solid rgba(255, 255, 255, 0.06) !important;
    box-shadow: none !important;
}

body.shopone-market-home .footer-widget {
    background: #1c1f27 !important;
}

body.shopone-market-home .footer-widget.border-bottom {
    border-color: rgba(255, 255, 255, 0.08) !important;
}

body.shopone-market-home .footer-widget .container,
body.shopone-market-home footer.bg-black .container {
    max-width: 1200px !important;
}

body.shopone-market-home .footer-widget h4,
body.shopone-market-home .footer-widget h5 {
    color: #ffffff !important;
    font-size: 12px !important;
    letter-spacing: 0.12em;
}

body.shopone-market-home .footer-widget .row {
    row-gap: 18px;
}

body.shopone-market-home .footer-widget .list-unstyled li {
    margin-bottom: 10px !important;
}

body.shopone-market-home .footer-widget .text-secondary {
    color: rgba(255, 255, 255, 0.56) !important;
}

body.shopone-market-home footer.bg-black a,
body.shopone-market-home footer.bg-black .text-soft-light,
body.shopone-market-home footer.bg-black .fs-14,
body.shopone-market-home footer.bg-black .fs-13 {
    color: rgba(255, 255, 255, 0.72) !important;
}

body.shopone-market-home footer.bg-black a:hover {
    color: #ffffff !important;
}

.shopone-trust-showcase {
    background: #ffffff;
    padding: 6px 0 0;
    border-top: 1px solid #ece8e3;
}

.shopone-trust-showcase .container {
    max-width: 1200px;
}

.shopone-trust-showcase__shell {
    padding: 0;
    background: transparent;
    border: 0;
}

.shopone-trust-showcase__intro {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px 20px;
    align-items: end;
    margin-bottom: 0;
    padding: 0 0 8px;
    border-bottom: 1px solid #ece8e3;
}

.shopone-trust-showcase__eyebrow {
    display: inline-block;
    margin-bottom: 6px;
    color: #f06a00;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.shopone-trust-showcase__title {
    margin: 0;
    color: #12151b;
    font-family: var(--shopone-title-font) !important;
    font-size: clamp(18px, 1.45vw, 22px);
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: -0.04em;
    max-width: none;
}

.shopone-trust-showcase__copy {
    margin: 0;
    color: #727b8c;
    font-size: 11px;
    line-height: 1.4;
    max-width: 280px;
    justify-self: end;
}

.shopone-trust-showcase__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1.15fr);
    gap: 0;
    align-items: stretch;
    border-bottom: 1px solid #ece8e3;
}

.shopone-trust-card {
    position: relative;
    min-height: 100%;
    background: transparent;
    border: 0;
    border-radius: 0 !important;
    box-shadow: none !important;
    padding: 10px 14px;
}

body.shopone-market-home .shopone-trust-card,
body.shopone-market-home .shopone-trust-card--brand,
body.shopone-market-home .shopone-trust-card--policy,
body.shopone-market-home .shopone-trust-card--help {
    background: transparent !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

.shopone-trust-card + .shopone-trust-card {
    border-left: 1px solid #ece8e3;
}

.shopone-trust-card--brand {
    color: #1f2430;
}

.shopone-trust-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 6px;
}

.shopone-trust-card__top--brand {
    justify-content: flex-start;
    min-height: 54px;
}

.shopone-trust-card__icon,
.shopone-trust-card__brand-icon {
    width: auto;
    height: auto;
    border-radius: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    background: transparent !important;
    border: 0;
    color: #ff6a00;
}

.shopone-trust-card__icon {
    color: #ff6a00;
}

.shopone-trust-card__icon--dark {
    color: #ff6a00;
}

.shopone-trust-card__brand-icon {
    margin-bottom: 0;
    color: #ff6a00;
}

.shopone-trust-card__icon i,
.shopone-trust-card__brand-icon i {
    font-size: 16px;
    line-height: 1;
}

.shopone-trust-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0;
    background: transparent;
    color: #6b7483;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.shopone-trust-status::after {
    content: "";
    width: 5px;
    height: 5px;
    background: #68b94f;
}

.shopone-trust-card__title,
.shopone-trust-card__brand-title {
    margin: 0 0 4px;
    font-family: var(--shopone-title-font) !important;
    font-size: 15px;
    line-height: 1.15;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.shopone-trust-card__brand-title {
    max-width: none;
    color: #1f2430;
}

.shopone-trust-card__copy,
.shopone-trust-card__brand-copy {
    margin: 0;
    font-size: 11px;
    line-height: 1.45;
    color: #717b8d;
}

.shopone-trust-card__brand-copy {
    max-width: 360px;
}

.shopone-trust-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin: 8px 0 0;
}

.shopone-trust-btn {
    min-height: 0;
    padding: 0;
    border-radius: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: none;
    border: 0 !important;
    background: transparent !important;
}

.shopone-trust-btn--primary {
    color: #ff6a00 !important;
}

.shopone-trust-btn--ghost {
    color: #20242d !important;
    margin-left: 10px;
    padding-left: 10px;
    border-left: 1px solid #ece8e3 !important;
}

.shopone-trust-card__note {
    padding-top: 10px;
    border-top: 1px solid #ece8e3;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    color: #9099ab;
}

.shopone-trust-card__note i {
    font-size: 13px;
    color: #8b95a6;
}

.shopone-trust-policy-list {
    display: grid;
    gap: 0;
    margin-top: 4px;
}

.shopone-trust-policy-link {
    min-height: 0;
    padding: 8px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: #222834 !important;
    border-bottom: 1px solid #ece8e3;
}

.shopone-trust-policy-link:last-child {
    border-bottom: 0;
}

.shopone-trust-policy-link__left {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
}

.shopone-trust-policy-link__left i,
.shopone-trust-policy-link > i {
    color: #7e8898;
    font-size: 13px;
}

.shopone-trust-card__eyebrow {
    display: inline-block;
    margin-bottom: 6px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #ff8d42;
}

.shopone-trust-pillars {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    margin-top: 15px;
    position: relative;
    z-index: 1;
    border-top: 1px solid #ece8e3;
}

.shopone-trust-pillar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 0;
}

.shopone-trust-pillar:nth-child(odd) {
    padding-right: 12px;
    border-right: 1px solid #ece8e3;
}

.shopone-trust-pillar:nth-child(even) {
    padding-left: 12px;
}

.shopone-trust-pillar:nth-child(n + 3) {
    border-top: 1px solid #ece8e3;
}

.shopone-trust-pillar__icon {
    width: auto;
    height: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ff7a1a;
    flex: 0 0 auto;
}

.shopone-trust-pillar__icon i {
    font-size: 13px;
}

.shopone-trust-pillar__label {
    max-width: none;
    font-size: 10px;
    line-height: 1.3;
    font-weight: 700;
    color: #2a3241;
}

.shopone-trust-metrics {
    margin-top: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    background: transparent;
    border: 0;
}

.shopone-trust-metric {
    min-height: 0;
    padding: 12px 18px 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: transparent;
}

.shopone-trust-metric + .shopone-trust-metric {
    border-left: 1px solid #ece8e3;
}

.shopone-trust-metric__icon {
    width: auto;
    height: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ff6a00;
    flex: 0 0 auto;
}

.shopone-trust-metric__icon i {
    font-size: 16px;
}

.shopone-trust-metric__copy {
    display: grid;
    gap: 2px;
}

.shopone-trust-metric__copy strong {
    font-size: 13px;
    line-height: 1.2;
    font-weight: 800;
    color: #1f2430;
}

.shopone-trust-metric__copy span {
    font-size: 11px;
    line-height: 1.35;
    color: #8a93a4;
}

@media (max-width: 991.98px) {
    .shopone-trust-showcase {
        padding: 6px 0 0;
    }

    .shopone-trust-showcase__shell {
        padding: 0;
    }

    .shopone-trust-showcase__intro {
        grid-template-columns: 1fr;
        gap: 6px;
        margin-bottom: 0;
        padding-bottom: 8px;
    }

    .shopone-trust-showcase__copy {
        max-width: none;
        justify-self: start;
    }

    .shopone-trust-showcase__grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .shopone-trust-card {
        padding: 10px 0;
    }

    .shopone-trust-card + .shopone-trust-card {
        border-left: 0;
        border-top: 1px solid #ece8e3;
    }

    .shopone-trust-card__brand-title {
        max-width: none;
    }

    .shopone-trust-pillars {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .shopone-trust-metrics {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-top: 0;
    }

    .shopone-trust-metric:nth-child(3),
    .shopone-trust-metric:nth-child(4) {
        border-top: 1px solid #ece8e3;
    }

    .shopone-trust-metric:nth-child(3) {
        border-left: 0;
    }

    .shopone-trust-metric + .shopone-trust-metric {
        border-left: 1px solid #ece8e3;
    }

    body.shopone-market-home .shopone-product-grid {
        column-gap: 10px !important;
        row-gap: 12px !important;
    }

    body.shopone-market-home .shopone-product-card__thumb {
        height: 108px !important;
    }

    body.shopone-market-home .shopone-product-card__title {
        min-height: 28px !important;
        font-size: 11px !important;
        line-height: 1.26 !important;
    }

    body.shopone-market-home .shopone-product-rail__link {
        margin-bottom: 0 !important;
    }

    body.shopone-market-home #shopone-category-clone .shopone-category-clone__grid {
        grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    }

    body.shopone-market-home .shopone-product-rail__head {
        grid-template-columns: minmax(0, 1fr) auto !important;
        column-gap: 8px !important;
        padding-bottom: 3px !important;
    }

    body.shopone-market-home .shopone-product-rail__title {
        font-size: 22px !important;
    }

    body.shopone-market-home .shopone-product-rail__head > div::after {
        font-size: 10px !important;
        line-height: 1.2 !important;
    }
}

@media (max-width: 767.98px) {
    .shopone-trust-showcase {
        padding: 4px 0 0;
    }

    .shopone-trust-showcase__shell {
        padding: 0;
    }

    .shopone-trust-showcase__title {
        font-size: 17px;
        max-width: none;
    }

    .shopone-trust-showcase__copy {
        font-size: 10px;
        line-height: 1.4;
        max-width: none;
    }

    .shopone-trust-card {
        padding: 8px 0;
    }

    .shopone-trust-card__top,
    .shopone-trust-card__top--brand {
        justify-content: flex-start;
        gap: 8px;
        min-height: 0 !important;
        margin-bottom: 4px !important;
    }

    .shopone-trust-card__icon,
    .shopone-trust-card__brand-icon {
        width: auto !important;
        height: auto !important;
        border-radius: 0 !important;
        background: transparent !important;
        font-size: 14px !important;
        line-height: 1 !important;
    }

    .shopone-trust-card__brand-icon {
        margin-bottom: 0;
    }

    .shopone-trust-card__icon i,
    .shopone-trust-card__brand-icon i {
        font-size: 14px;
    }

    .shopone-trust-status {
        font-size: 9px;
        letter-spacing: 0.06em;
    }

    .shopone-trust-card__title,
    .shopone-trust-card__brand-title {
        margin: 0 0 4px !important;
        font-size: 14px;
        line-height: 1.15 !important;
    }

    .shopone-trust-card__copy,
    .shopone-trust-card__brand-copy {
        font-size: 11px;
        line-height: 1.4;
    }

    .shopone-trust-card__actions {
        margin: 6px 0 0;
    }

    .shopone-trust-btn {
        font-size: 10px;
    }

    .shopone-trust-policy-link {
        min-height: 0;
        padding: 7px 0;
    }

    .shopone-trust-policy-link__left {
        gap: 8px;
        font-size: 11px;
    }

    .shopone-trust-pillars {
        grid-template-columns: 1fr;
        gap: 0;
        margin-top: 6px;
    }

    .shopone-trust-pillar,
    .shopone-trust-pillar:nth-child(odd),
    .shopone-trust-pillar:nth-child(even) {
        padding: 7px 0;
        padding-left: 0;
        padding-right: 0;
        border-right: 0;
    }

    .shopone-trust-pillar:nth-child(n + 2) {
        border-top: 1px solid #ece8e3;
    }

    .shopone-trust-pillar__label {
        max-width: none;
        font-size: 10px;
    }

    .shopone-trust-metrics {
        grid-template-columns: 1fr;
    }

    .shopone-trust-metric,
    .shopone-trust-metric + .shopone-trust-metric,
    .shopone-trust-metric:nth-child(3),
    .shopone-trust-metric:nth-child(4) {
        border-left: 0;
    }

    .shopone-trust-metric + .shopone-trust-metric {
        border-top: 1px solid #ece8e3;
    }

    .shopone-trust-metric {
        min-height: 0;
        padding: 12px 0;
        gap: 10px;
    }

    .shopone-trust-metric__copy strong {
        font-size: 13px;
    }

    .shopone-trust-metric__copy span {
        font-size: 11px;
    }

    body.shopone-market-home .home-banner-area > .container > .mt-3 {
        margin-top: 4px !important;
        margin-bottom: 0 !important;
    }

    body.shopone-market-home .home-banner-area > .container > .mt-3 > .bg-white.border.border-light-gray.rounded-2 {
        padding: 2px 0 0 !important;
    }

    body.shopone-market-home .home-banner-area > .container > .mt-3 > .bg-white.border.border-light-gray.rounded-2 > span {
        display: none !important;
    }

    body.shopone-market-home .home-banner-area > .container > .mt-3 h1 {
        margin-bottom: 0 !important;
        font-size: 15px !important;
        line-height: 1.1 !important;
        letter-spacing: -0.03em !important;
    }

    body.shopone-market-home .home-banner-area > .container > .mt-3 p {
        display: none !important;
    }

    body.shopone-market-home .shopone-product-rail {
        margin-top: 2px !important;
    }

    body.shopone-market-home .shopone-product-rail__panel {
        padding-top: 0 !important;
        padding-bottom: 4px !important;
    }

    body.shopone-market-home .shopone-product-rail__head {
        grid-template-columns: minmax(0, 1fr) auto !important;
        align-items: center !important;
        column-gap: 6px !important;
        padding-bottom: 0 !important;
    }

    body.shopone-market-home .shopone-product-rail__title {
        font-size: 20px !important;
        line-height: 1.05 !important;
        padding-bottom: 2px !important;
    }

    body.shopone-market-home .shopone-product-rail__head > div::after {
        content: none !important;
        display: none !important;
    }

    body.shopone-market-home .shopone-product-rail__link {
        align-self: center !important;
        min-height: 20px !important;
        font-size: 0 !important;
        margin-bottom: 0 !important;
    }

    body.shopone-market-home .shopone-product-rail__link::before {
        font-size: 10px !important;
    }

    body.shopone-market-home .shopone-product-rail__link::after {
        margin-left: 4px !important;
        font-size: 11px !important;
    }

    body.shopone-market-home .shopone-product-grid {
        column-gap: 8px !important;
        row-gap: 8px !important;
    }

    body.shopone-market-home .shopone-product-card {
        gap: 6px !important;
        padding: 7px 7px 8px !important;
    }

    body.shopone-market-home .shopone-product-card__badge {
        min-height: 18px !important;
        padding: 0 7px !important;
    }

    body.shopone-market-home .shopone-product-card__badge::after {
        font-size: 9px !important;
    }

    body.shopone-market-home .shopone-product-card__thumb {
        height: 88px !important;
        padding: 6px !important;
    }

    body.shopone-market-home .shopone-product-card__title {
        min-height: 28px !important;
        font-size: 11.5px !important;
        line-height: 1.18 !important;
    }

    body.shopone-market-home .shopone-product-card__price {
        font-size: 13px !important;
    }

    body.shopone-market-home .shopone-product-card__old-price {
        font-size: 9px !important;
    }

    body.shopone-market-home .shopone-flash-clone .shopone-flash-head {
        align-items: flex-start !important;
        gap: 8px 10px !important;
        padding: 10px 10px 10px !important;
    }

    body.shopone-market-home .shopone-flash-clone .shopone-flash-head h3 {
        font-size: 15px !important;
        line-height: 1.05 !important;
    }

    body.shopone-market-home .shopone-flash-clone .shopone-flash-kicker {
        display: none !important;
    }

    body.shopone-market-home .shopone-flash-clone .shopone-flash-shopmore {
        min-height: 24px !important;
        padding: 0 10px !important;
        font-size: 10px !important;
    }

    body.shopone-market-home #shopone-category-clone .shopone-category-clone__title {
        margin-bottom: 4px !important;
        font-size: 14px !important;
    }

    body.shopone-market-home #shopone-category-clone .shopone-category-clone__item {
        min-height: 94px !important;
        padding: 5px 4px 6px !important;
    }

    body.shopone-market-home #shopone-category-clone .shopone-category-clone__media {
        height: 34px !important;
        margin-bottom: 3px !important;
    }

    body.shopone-market-home #shopone-category-clone .shopone-category-clone__media img {
        max-width: 38px !important;
        max-height: 28px !important;
    }

    body.shopone-market-home #shopone-category-clone .shopone-category-clone__name {
        font-size: 9.5px !important;
        line-height: 1.1 !important;
    }

    body.shopone-market-home .aiz-cookie-alert {
        margin-bottom: 0 !important;
        padding: 14px 14px 12px !important;
        box-shadow: none !important;
    }

    body.shopone-market-home .aiz-cookie-alert .btn {
        min-height: 42px !important;
        font-size: 14px !important;
    }
}

/* ShopOne catalog pages */
.shopone-catalog-page {
    padding: 14px 0 26px;
    background: #f4f5f7;
}

.shopone-catalog-container {
    max-width: 1380px;
}

.shopone-catalog-content-col > .breadcrumb {
    margin-bottom: 0 !important;
    padding: 4px 0 0 !important;
}

.shopone-catalog-topbar {
    margin-top: 4px;
    margin-bottom: 0 !important;
    padding: 10px 0 8px;
}

.shopone-catalog-topbar h1 {
    margin-bottom: 6px;
    font-family: var(--shopone-title-font) !important;
    font-size: clamp(28px, 3vw, 42px) !important;
    line-height: 1.02 !important;
    letter-spacing: -0.04em;
}

.shopone-catalog-topbar #search_product_count,
.shopone-catalog-topbar #searching_product {
    color: #6b7280;
    font-size: 13px !important;
}

.shopone-catalog-sort {
    min-width: 0;
    gap: 6px;
}

.shopone-catalog-sort #select_option_svg {
    flex: 0 0 auto;
    color: #6b7280;
}

.shopone-catalog-sort #select_option {
    min-height: 0;
    padding: 0 18px 0 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    font-size: 13px;
    font-weight: 500;
}

.shopone-catalog-sort .bootstrap-select,
.shopone-catalog-sort .bootstrap-select > .dropdown-toggle,
.shopone-catalog-sort .bootstrap-select > .dropdown-toggle:hover,
.shopone-catalog-sort .bootstrap-select > .dropdown-toggle:focus,
.shopone-catalog-sort .bootstrap-select > .dropdown-toggle:active {
    width: auto !important;
    min-height: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    outline: 0 !important;
}

.shopone-catalog-sort .bootstrap-select .filter-option {
    padding: 0 !important;
}

.shopone-catalog-sort .bootstrap-select .filter-option-inner-inner {
    color: #6b7280 !important;
    font-size: 13px !important;
    font-weight: 500 !important;
}

.shopone-catalog-view-switch {
    align-items: center;
    gap: 10px !important;
}

.shopone-catalog-view-switch .btn-col-filter {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto !important;
    min-width: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    color: #9ca3af;
    cursor: pointer;
    line-height: 1;
}

.shopone-catalog-view-switch .btn-col-filter::after {
    content: attr(data-cols) " col";
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.01em;
    text-transform: lowercase;
}

.shopone-catalog-view-switch .btn-col-filter.active-cols {
    color: #111827;
}

.shopone-catalog-view-switch .btn-col-filter.active-cols::after {
    font-weight: 700;
}

.shopone-catalog-view-switch .btn-col-filter div {
    display: none !important;
}

.shopone-catalog-grid-wrap {
    padding: 6px 0 0 !important;
}

#products-row.shopone-catalog-grid {
    display: grid !important;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 18px 16px;
    margin: 0 !important;
    border: 0 !important;
}

#products-row.shopone-catalog-grid[data-cols="2"] {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

#products-row.shopone-catalog-grid[data-cols="3"] {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

#products-row.shopone-catalog-grid[data-cols="4"] {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

#products-row.shopone-catalog-grid[data-cols="6"] {
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

.shopone-catalog-grid__item {
    width: 100% !important;
    max-width: none !important;
    flex: 1 1 auto !important;
    min-width: 0;
    border: 0 !important;
    background: transparent !important;
}

.shopone-catalog-card {
    height: 100%;
    min-height: 100%;
    padding: 6px 6px 10px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

.shopone-catalog-card__media {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 164px;
    padding: 0;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
}

.shopone-catalog-card__media .product-main-image,
.shopone-catalog-card__media .product-hover-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.shopone-catalog-card__body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 0;
    padding: 8px 0 0 !important;
}

.shopone-catalog-card__note {
    min-height: 14px;
    margin-top: 4px;
    color: #ff6a00;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.3;
}

.shopone-catalog-page .aiz-pagination {
    padding: 0;
}

.shopone-catalog-filters .collapse-sidebar > .bg-white,
.shopone-catalog-filters .collapse-sidebar > .border-bottom-listing-sidebar,
.shopone-catalog-filters .collapse-sidebar > div.bg-white {
    margin-bottom: 0 !important;
    background: transparent !important;
    border: 0 !important;
    border-bottom: 1px solid #dfe4ea !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    overflow: visible;
    padding-bottom: 8px;
}

.shopone-catalog-filters .collapse-sidebar > .bg-white:last-child,
.shopone-catalog-filters .collapse-sidebar > .border-bottom-listing-sidebar:last-child,
.shopone-catalog-filters .collapse-sidebar > div.bg-white:last-child {
    border-bottom: 0 !important;
}

.shopone-catalog-filters .fs-16.fw-700.p-3 {
    padding: 0 !important;
}

.shopone-catalog-filters .filter-section {
    min-height: 28px;
    padding: 4px 0 6px !important;
    color: #1f2937 !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    line-height: 1.3;
    text-decoration: none !important;
}

.shopone-catalog-filters .filter-section::after {
    font-size: 11px;
}

.shopone-catalog-filters .collapse,
.shopone-catalog-filters .collapsing {
    margin-top: 6px;
    padding: 10px 12px 12px !important;
    background: #ffffff !important;
    border: 1px solid #e8edf3;
    border-radius: 8px;
    box-shadow: none !important;
    overflow: hidden;
}

.shopone-catalog-filters .px16px {
    padding: 0 !important;
}

.shopone-catalog-filters .px-20px,
.shopone-catalog-filters .px-3,
.shopone-catalog-filters .p-3 {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.shopone-catalog-filters .pb-10px {
    padding-bottom: 0 !important;
}

.shopone-catalog-filters .aiz-checkbox-list label,
.shopone-catalog-filters .aiz-radio-list label,
.shopone-catalog-filters .aiz-checkbox,
.shopone-catalog-filters .aiz-radio {
    margin-bottom: 8px !important;
}

.shopone-catalog-filters .collapse.show .aiz-checkbox-list label,
.shopone-catalog-filters .collapse.show .aiz-radio-list label,
.shopone-catalog-filters .collapse.show .aiz-checkbox,
.shopone-catalog-filters .collapse.show .aiz-radio,
.shopone-catalog-filters .collapsing .aiz-checkbox-list label,
.shopone-catalog-filters .collapsing .aiz-radio-list label,
.shopone-catalog-filters .collapsing .aiz-checkbox,
.shopone-catalog-filters .collapsing .aiz-radio {
    margin-bottom: 0 !important;
    padding: 6px 0;
    border-bottom: 1px solid #eff3f7;
}

.shopone-catalog-filters .collapse.show .aiz-checkbox-list label:last-child,
.shopone-catalog-filters .collapse.show .aiz-radio-list label:last-child,
.shopone-catalog-filters .collapse.show .aiz-checkbox:last-child,
.shopone-catalog-filters .collapse.show .aiz-radio:last-child,
.shopone-catalog-filters .collapsing .aiz-checkbox-list label:last-child,
.shopone-catalog-filters .collapsing .aiz-radio-list label:last-child,
.shopone-catalog-filters .collapsing .aiz-checkbox:last-child,
.shopone-catalog-filters .collapsing .aiz-radio:last-child {
    border-bottom: 0;
}

.shopone-catalog-filters .collapse.show #category_filter li,
.shopone-catalog-filters .collapse.show #category_filter_preorder li,
.shopone-catalog-filters .collapsing #category_filter li,
.shopone-catalog-filters .collapsing #category_filter_preorder li {
    padding: 6px 0;
    border-bottom: 1px solid #eff3f7;
}

.shopone-catalog-filters .collapse.show #category_filter li:last-child,
.shopone-catalog-filters .collapse.show #category_filter_preorder li:last-child,
.shopone-catalog-filters .collapsing #category_filter li:last-child,
.shopone-catalog-filters .collapsing #category_filter_preorder li:last-child {
    border-bottom: 0;
}

.shopone-catalog-filters .collapse.show .d-flex.justify-content-end,
.shopone-catalog-filters .collapsing .d-flex.justify-content-end {
    padding-top: 8px;
}

.shopone-catalog-filters .see_more_toggle_btn,
.shopone-catalog-filters .less_toggle_btn,
.shopone-catalog-filters .btn-link {
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    color: #6b7280 !important;
    font-size: 12px;
    font-weight: 600;
}

.shopone-catalog-filters #category_filter,
.shopone-catalog-filters #category_filter_preorder {
    max-height: 180px !important;
}

.shopone-catalog-content-col {
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    overflow: visible !important;
}

@media (min-width: 1200px) {
    .shopone-catalog-layout {
        align-items: flex-start;
    }

    .shopone-catalog-sidebar-col,
    .shopone-catalog-content-col {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .shopone-catalog-filters {
        position: static;
        margin-bottom: 10px;
    }

    .shopone-catalog-filters .overlay {
        display: none !important;
    }

    .shopone-catalog-filters .collapse-sidebar {
        position: static;
        right: auto;
        top: auto;
        bottom: auto;
        width: 100%;
        max-width: none;
        height: auto;
        overflow: visible;
        background: transparent;
        box-shadow: none;
        transform: none !important;
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 8px 18px;
        align-items: start;
        grid-auto-rows: min-content;
    }

    .shopone-catalog-filters .collapse-sidebar > .bg-white:first-of-type {
        grid-column: span 1;
    }

    .shopone-catalog-filters .collapse-sidebar .collapse.show .aiz-checkbox-list,
    .shopone-catalog-filters .collapse-sidebar .collapse.show .aiz-radio-list,
    .shopone-catalog-filters .collapse-sidebar .collapse.show .px-3,
    .shopone-catalog-filters .collapse-sidebar .collapse.show .p-3 {
        max-height: 180px;
        overflow: auto;
    }

    .shopone-catalog-filters #category_filter {
        max-height: 180px !important;
    }

    .shopone-catalog-view-switch [data-cols="2"],
    .shopone-catalog-view-switch [data-cols="3"],
    .shopone-catalog-view-switch [data-cols="4"] {
        display: none !important;
    }
}

@media (max-width: 1399.98px) {
    #products-row.shopone-catalog-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
}

@media (max-width: 1199.98px) {
    .shopone-catalog-page {
        padding-top: 10px;
    }

    .shopone-catalog-topbar {
        padding: 10px 0 8px;
    }

    .shopone-catalog-grid-wrap {
        padding: 6px 0 0 !important;
    }

    #products-row.shopone-catalog-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .shopone-catalog-filters .collapse-sidebar {
        padding: 18px 18px 22px;
        background: #fff;
        box-shadow: none !important;
    }

    .shopone-catalog-filters .collapse-sidebar > .bg-white,
    .shopone-catalog-filters .collapse-sidebar > .border-bottom-listing-sidebar,
    .shopone-catalog-filters .collapse-sidebar > div.bg-white {
        margin-bottom: 10px !important;
    }
}

@media (max-width: 991.98px) {
    #products-row.shopone-catalog-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 14px;
    }

    .shopone-catalog-card__media {
        height: 148px;
    }
}

@media (max-width: 767.98px) {
    .shopone-catalog-content-col > .breadcrumb {
        padding: 4px 0 0 !important;
    }

    .shopone-catalog-topbar h1 {
        font-size: 28px !important;
    }

    .shopone-catalog-sort {
        min-width: 0;
    }

    #products-row.shopone-catalog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .shopone-catalog-card {
        padding: 4px 2px 8px !important;
    }

    .shopone-catalog-card__media {
        height: 118px;
        padding: 0;
    }

    .shopone-catalog-topbar .row {
        row-gap: 6px;
    }

    .shopone-catalog-view-switch {
        gap: 8px !important;
    }

    .shopone-catalog-view-switch .btn-col-filter::after {
        font-size: 11px;
    }
}

/* Shared product cards across pages */
.shopone-shared-product-card {
    position: relative;
    height: 100%;
    padding: 8px 8px 12px !important;
    background: #ffffff !important;
    border: 1px solid #e9edf2 !important;
    border-radius: 10px !important;
    box-shadow: none !important;
    overflow: hidden;
}

.shopone-shared-product-card__media {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 146px !important;
    padding: 8px 8px 4px !important;
    background: #ffffff !important;
    border: 0 !important;
    border-radius: 0 !important;
}

.shopone-shared-product-card__media > a {
    width: 100%;
}

.shopone-shared-product-card__media .product-main-image,
.shopone-shared-product-card__media .product-hover-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.shopone-shared-product-card__body {
    padding: 8px 4px 0 !important;
}

.shopone-shared-product-card__body h3 {
    height: auto !important;
    min-height: 38px !important;
    margin-bottom: 0 !important;
    padding-top: 0 !important;
    font-size: 12px !important;
    line-height: 1.35 !important;
    font-weight: 500 !important;
}

.shopone-shared-product-card__body h3 a {
    color: #1f2937 !important;
}

.shopone-shared-product-card__body .shopone-merch-note,
.shopone-shared-product-card__body .shopone-catalog-card__note {
    margin-top: 5px;
    min-height: 14px;
    color: #ff6a00;
    font-size: 10px !important;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.01em;
}

.shopone-shared-product-card__body .fs-14 {
    margin-top: 6px !important;
    gap: 4px;
    font-size: 12px !important;
}

.shopone-shared-product-card__body .text-primary,
.shopone-shared-product-card__body .fw-700.text-primary {
    color: #f97316 !important;
    font-size: 15px !important;
    font-weight: 800 !important;
    line-height: 1.1;
}

.shopone-shared-product-card__body del {
    color: #98a2b3 !important;
    font-size: 11px !important;
}

.shopone-shared-product-card .aiz-p-hov-icon,
.shopone-shared-product-card .aiz-p-hov-icon-mobile,
.shopone-shared-product-card .cart-btn,
.shopone-shared-product-card .product-hover-image {
    display: none !important;
}

.shopone-shared-product-card .absolute-top-left {
    top: 6px !important;
    left: 6px !important;
    width: auto !important;
    max-width: calc(100% - 12px);
    padding: 2px 7px !important;
    border-radius: 999px !important;
    font-size: 9px !important;
    line-height: 1.35 !important;
    box-shadow: none !important;
}

.shopone-shared-product-card .absolute-top-left + .absolute-top-left {
    top: 28px !important;
}

@media (max-width: 991.98px) {
    .shopone-shared-product-card__media {
        height: 132px !important;
    }
}

@media (max-width: 767.98px) {
    .shopone-shared-product-card {
        padding: 6px 6px 10px !important;
        border-radius: 8px !important;
    }

    .shopone-shared-product-card__media {
        height: 112px !important;
        padding: 6px 6px 2px !important;
    }

    .shopone-shared-product-card__body {
        padding-top: 6px !important;
    }

    .shopone-shared-product-card__body h3 {
        min-height: 34px !important;
        font-size: 11px !important;
    }

    .shopone-shared-product-card__body .text-primary,
    .shopone-shared-product-card__body .fw-700.text-primary {
        font-size: 13px !important;
    }
}

/* Final flash rail overrides */
body.shopone-market-home .shopone-flash-clone .shopone-flash-head h3.fs-16.fs-md-20 {
    font-size: 18px !important;
    line-height: 1.08 !important;
    letter-spacing: -0.02em !important;
}

body.shopone-market-home .shopone-flash-clone .shopone-flash-title-word {
    display: block;
}

body.shopone-market-home .shopone-flash-clone .shopone-shared-product-card {
    background: #ffffff !important;
    border: 1px solid #eceff3 !important;
    border-radius: 10px !important;
    padding: 8px 8px 12px !important;
    box-shadow: none !important;
}

body.shopone-market-home .shopone-flash-clone .shopone-shared-product-card__media {
    height: 132px !important;
    padding: 8px 8px 4px !important;
}

body.shopone-market-home .shopone-flash-clone .shopone-shared-product-card__body {
    padding: 8px 4px 0 !important;
}

body.shopone-market-home .shopone-flash-clone .shopone-shared-product-card__body h3 {
    min-height: 34px !important;
    font-size: 12px !important;
    line-height: 1.3 !important;
}

body.shopone-market-home .shopone-flash-clone .shopone-shared-product-card__body .shopone-merch-note {
    min-height: 14px !important;
    font-size: 10px !important;
}

body.shopone-market-home .shopone-flash-clone .shopone-shared-product-card__body .text-primary,
body.shopone-market-home .shopone-flash-clone .shopone-shared-product-card__body .fw-700.text-primary {
    font-size: 15px !important;
}

@media (max-width: 767.98px) {
    body.shopone-market-home .shopone-flash-clone .shopone-flash-head h3.fs-16.fs-md-20 {
        font-size: 15px !important;
    }

    body.shopone-market-home .shopone-flash-clone .shopone-shared-product-card__media {
        height: 108px !important;
    }

    body.shopone-market-home .shopone-flash-clone .shopone-shared-product-card__body h3 {
        font-size: 11px !important;
    }
}

/* Flash sale aligned with home rails */
body.shopone-market-home .shopone-flash-clone,
body.shopone-market-home .shopone-flash-clone .container,
body.shopone-market-home .shopone-flash-clone .shopone-flash-panel,
body.shopone-market-home .shopone-flash-clone .border,
body.shopone-market-home .shopone-flash-clone .shopone-flash-grid,
body.shopone-market-home .shopone-flash-clone .px-sm-3,
body.shopone-market-home .shopone-flash-clone .slick-list,
body.shopone-market-home .shopone-flash-clone .slick-track,
body.shopone-market-home .shopone-flash-clone .aiz-carousel {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
}

body.shopone-market-home .shopone-flash-clone {
    margin-top: 18px !important;
    padding: 0 !important;
}

body.shopone-market-home .shopone-flash-clone .container {
    max-width: 1360px !important;
}

body.shopone-market-home .shopone-flash-clone .shopone-flash-head {
    margin: 0 0 14px !important;
    padding: 0 0 12px !important;
    background: transparent !important;
    border-bottom: 1px solid #e8edf3 !important;
}

body.shopone-market-home .shopone-flash-clone .shopone-flash-shopmore {
    min-height: auto !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    color: #ff6a00 !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    letter-spacing: 0.02em !important;
    text-transform: uppercase !important;
}

body.shopone-market-home .shopone-flash-clone .slide-arrow {
    color: #8b95a7 !important;
}

body.shopone-market-home .shopone-flash-clone .shopone-flash-grid {
    display: grid !important;
    grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
    gap: 16px !important;
    align-items: stretch !important;
}

body.shopone-market-home .shopone-flash-clone .shopone-flash-grid__item {
    min-width: 0 !important;
}

body.shopone-market-home .shopone-flash-clone .px-sm-3 {
    padding-left: 0 !important;
    padding-right: 0 !important;
    padding-bottom: 0 !important;
}

body.shopone-market-home .shopone-flash-clone .carousel-box {
    padding-left: 12px !important;
    padding-right: 12px !important;
}

body.shopone-market-home .shopone-flash-clone .shopone-shared-product-card {
    background: #ffffff !important;
    border: 1px solid #eceff3 !important;
    padding: 10px 10px 14px !important;
    height: 100% !important;
}

body.shopone-market-home .shopone-flash-clone .shopone-shared-product-card__media {
    height: 186px !important;
    padding: 10px 10px 6px !important;
}

body.shopone-market-home .shopone-flash-clone .shopone-shared-product-card__body {
    padding: 8px 4px 0 !important;
}

body.shopone-market-home .shopone-flash-clone .shopone-shared-product-card__body h3 {
    min-height: 38px !important;
    font-size: 13px !important;
    line-height: 1.34 !important;
}

body.shopone-market-home .shopone-flash-clone .shopone-shared-product-card__body .text-primary,
body.shopone-market-home .shopone-flash-clone .shopone-shared-product-card__body .fw-700.text-primary {
    font-size: 16px !important;
}

@media (max-width: 1399.98px) {
    body.shopone-market-home .shopone-flash-clone .container {
        max-width: 1200px !important;
    }
}

@media (max-width: 1199.98px) {
    body.shopone-market-home .shopone-flash-clone .shopone-flash-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
        gap: 14px !important;
    }
}

@media (max-width: 991.98px) {
    body.shopone-market-home .shopone-flash-clone .shopone-flash-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        gap: 12px !important;
    }
}

@media (max-width: 767.98px) {
    body.shopone-market-home .shopone-flash-clone .shopone-flash-head {
        margin-bottom: 10px !important;
        padding-bottom: 10px !important;
    }

    body.shopone-market-home .shopone-flash-clone .shopone-flash-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 10px !important;
    }

    body.shopone-market-home .shopone-flash-clone .shopone-shared-product-card__media {
        height: 128px !important;
    }
}

@media (max-width: 767.98px) {
    :root {
        --shopone-app-bg: #f3f5f8;
        --shopone-app-surface: #ffffff;
        --shopone-app-border: #e7ebf1;
        --shopone-app-gutter: 14px;
        --shopone-app-radius: 18px;
        --shopone-app-shadow: 0 12px 30px rgba(15, 23, 42, 0.07);
    }

    body.shopone-frontend {
        background: var(--shopone-app-bg) !important;
        color: #111827;
        -webkit-tap-highlight-color: transparent;
        overscroll-behavior-y: contain;
    }

    body.shopone-frontend .shopone-app-shell {
        min-height: 100dvh;
        background: var(--shopone-app-bg) !important;
        padding-bottom: calc(86px + env(safe-area-inset-bottom, 0px));
        overflow-x: hidden;
    }

    body.shopone-frontend .container {
        max-width: none !important;
        padding-left: var(--shopone-app-gutter) !important;
        padding-right: var(--shopone-app-gutter) !important;
    }

    body.shopone-frontend .top-banner {
        display: none !important;
    }

    body.shopone-frontend header.sticky-top,
    body.shopone-frontend header {
        top: 0;
        z-index: 1046 !important;
        background: rgba(255, 255, 255, 0.92) !important;
        border-bottom: 1px solid var(--shopone-app-border);
        box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
        -webkit-backdrop-filter: blur(18px);
        backdrop-filter: blur(18px);
    }

    body.shopone-frontend header .logo-bar-area {
        padding-top: max(8px, env(safe-area-inset-top, 0px)) !important;
        padding-bottom: 10px !important;
        background: transparent !important;
    }

    body.shopone-frontend header .logo-bar-area > .container > .d-flex {
        position: relative;
        flex-wrap: wrap;
        gap: 10px;
        align-items: flex-start;
        min-height: 104px;
    }

    body.shopone-frontend header .logo-bar-area > .container > .d-flex > .d-lg-none.ml-auto.mr-0 {
        display: none !important;
    }

    body.shopone-frontend header .logo-bar-area > .container > .d-flex > button.btn.d-lg-none {
        position: relative;
        z-index: 2;
        width: 42px;
        height: 42px;
        margin-right: 0 !important;
        padding: 0 !important;
        border: 1px solid var(--shopone-app-border) !important;
        border-radius: 14px !important;
        background: #ffffff !important;
        box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
    }

    body.shopone-frontend header .logo-bar-area > .container > .d-flex > .col-auto.pl-0.pr-3 {
        padding-right: 0 !important;
        min-width: 0;
        position: relative;
        z-index: 2;
    }

    body.shopone-frontend header .logo-bar-area a.d-block.py-20px.mr-3.ml-0 {
        padding: 0 !important;
        margin: 0 !important;
    }

    body.shopone-frontend #header-logo-preview {
        height: 30px !important;
        width: auto !important;
    }

    body.shopone-frontend .front-header-search {
        order: 10;
        flex: 0 0 100%;
        width: 100%;
        position: absolute !important;
        left: 0;
        right: 0;
        top: 52px;
        bottom: auto !important;
        height: auto !important;
        min-height: 48px !important;
        margin: 0 !important;
        display: flex !important;
        align-items: stretch !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        pointer-events: auto !important;
        background: transparent !important;
        border: 0 !important;
        border-radius: 0 !important;
        box-shadow: none !important;
    }

    body.shopone-frontend .front-header-search .position-relative.flex-grow-1 {
        padding: 0 !important;
    }

    body.shopone-frontend .front-header-search .d-lg-none[data-toggle="class-toggle"] {
        display: none !important;
    }

    body.shopone-frontend .front-header-search form,
    body.shopone-frontend .front-header-search .search-input-box {
        width: 100%;
    }

    body.shopone-frontend .front-header-search .search-input-box {
        position: relative;
    }

    body.shopone-frontend .front-header-search .search-input-box input {
        min-height: 48px !important;
        padding: 0 16px 0 46px !important;
        border: 1px solid var(--shopone-app-border) !important;
        border-radius: 16px !important;
        background: #ffffff !important;
        box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06) !important;
        font-size: 15px !important;
    }

    body.shopone-frontend .front-header-search .search-input-box > svg {
        position: absolute;
        left: 15px;
        top: 50%;
        width: 18px;
        height: 18px;
        transform: translateY(-50%);
    }

    body.shopone-frontend .shopone-search-hints {
        display: none !important;
    }

    body.shopone-frontend .front-header-search .typed-search-box.shopone-smart-search-box {
        top: calc(100% + 8px) !important;
        border: 1px solid var(--shopone-app-border) !important;
        border-radius: 18px !important;
        background: #ffffff !important;
        box-shadow: 0 18px 38px rgba(15, 23, 42, 0.14) !important;
    }

    body.shopone-frontend .front-header-search .typed-search-box.shopone-smart-search-box::before {
        height: 3px;
    }

    body.shopone-frontend .shopone-catalog-page,
    body.shopone-frontend .product-details,
    body.shopone-frontend .home-banner-area,
    body.shopone-frontend .shopone-page-seo-block,
    body.shopone-frontend .bg-light {
        background: var(--shopone-app-bg) !important;
    }

    body.shopone-frontend .shopone-page-seo-card,
    body.shopone-frontend .shopone-product-shell,
    body.shopone-frontend .shopone-summary-side,
    body.shopone-frontend #description > div,
    body.shopone-frontend .related-product-container,
    body.shopone-frontend .reviews-ratings-container,
    body.shopone-frontend .shopone-terms-card,
    body.shopone-frontend .main-slider,
    body.shopone-frontend .thumb-slider .swiper-slide,
    body.shopone-frontend .shopone-catalog-content-col > .bg-white,
    body.shopone-frontend .shopone-catalog-content-col .bg-white.border,
    body.shopone-frontend .card,
    body.shopone-frontend .checkout-content,
    body.shopone-frontend .checkout-sidebar {
        background: var(--shopone-app-surface) !important;
        border: 1px solid var(--shopone-app-border) !important;
        border-radius: var(--shopone-app-radius) !important;
        box-shadow: var(--shopone-app-shadow) !important;
    }

    body.shopone-frontend .main-slider .swiper-button-next,
    body.shopone-frontend .main-slider .swiper-button-prev {
        border-radius: 14px !important;
    }

    body.shopone-frontend .aiz-top-menu-sidebar .overlay,
    body.shopone-frontend .aiz-mobile-side-nav .overlay {
        background: rgba(15, 23, 42, 0.28) !important;
        -webkit-backdrop-filter: blur(6px);
        backdrop-filter: blur(6px);
    }

    body.shopone-frontend .aiz-top-menu-sidebar .collapse-sidebar,
    body.shopone-frontend .aiz-mobile-side-nav .collapse-sidebar {
        width: min(84vw, 340px);
        max-width: 340px;
        border-radius: 0 24px 24px 0;
        background: #ffffff !important;
        box-shadow: 18px 0 40px rgba(15, 23, 42, 0.14);
    }

    body.shopone-frontend .aiz-top-menu-sidebar .nav-user-info {
        padding-top: max(20px, env(safe-area-inset-top, 0px));
    }

    body.shopone-frontend .aiz-mobile-bottom-nav {
        left: 0;
        right: 0;
        width: 100%;
        max-width: none;
        margin: 0 !important;
        padding: 8px 10px calc(8px + env(safe-area-inset-bottom, 0px)) !important;
        border: 0 !important;
        background: rgba(255, 255, 255, 0.94) !important;
        box-shadow: 0 -12px 32px rgba(15, 23, 42, 0.12);
        -webkit-backdrop-filter: blur(18px);
        backdrop-filter: blur(18px);
    }

    body.shopone-frontend .aiz-mobile-bottom-nav .row {
        margin: 0;
        background: #ffffff;
        border: 1px solid var(--shopone-app-border);
        border-radius: 22px;
        box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
    }

    body.shopone-frontend .aiz-mobile-bottom-nav .col,
    body.shopone-frontend .aiz-mobile-bottom-nav .col-auto {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    body.shopone-frontend .aiz-mobile-bottom-nav a {
        min-height: 58px;
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        gap: 3px;
        padding: 8px 2px 9px !important;
        color: #7d8796 !important;
        border-radius: 16px;
    }

    body.shopone-frontend .aiz-mobile-bottom-nav a svg {
        width: 18px;
        height: 18px;
    }

    body.shopone-frontend .aiz-mobile-bottom-nav a svg path {
        fill: #98a2b3 !important;
        transition: fill 0.2s ease;
    }

    body.shopone-frontend .aiz-mobile-bottom-nav a.svg-active svg path,
    body.shopone-frontend .aiz-mobile-bottom-nav a .text-primary,
    body.shopone-frontend .aiz-mobile-bottom-nav a.svg-active .text-reset {
        fill: #ff6a00 !important;
        color: #ff6a00 !important;
    }

    body.shopone-frontend .aiz-mobile-bottom-nav a.svg-active {
        background: rgba(255, 106, 0, 0.08);
    }

    body.shopone-frontend .aiz-mobile-bottom-nav .size-20px {
        width: 18px !important;
        height: 18px !important;
    }

    body.shopone-frontend .aiz-mobile-bottom-nav .fs-10 {
        font-size: 10px !important;
        letter-spacing: 0.01em;
    }

    body.shopone-frontend .aiz-cookie-alert {
        left: 12px !important;
        right: 12px !important;
        bottom: calc(88px + env(safe-area-inset-bottom, 0px)) !important;
        width: auto !important;
        border-radius: 18px !important;
        padding: 12px 14px 10px !important;
        box-shadow: 0 22px 48px rgba(15, 23, 42, 0.16) !important;
    }

    body.shopone-frontend .aiz-cookie-alert p,
    body.shopone-frontend .aiz-cookie-alert .fs-13,
    body.shopone-frontend .aiz-cookie-alert .fs-14 {
        font-size: 12px !important;
        line-height: 1.45 !important;
        margin-bottom: 8px !important;
    }

    body.shopone-frontend .aiz-cookie-alert .btn {
        min-height: 40px !important;
        font-size: 13px !important;
        border-radius: 12px !important;
    }

    body.shopone-frontend .footer-widget {
        padding-top: 18px !important;
        padding-bottom: 12px !important;
    }

    body.shopone-frontend .footer-widget .mt-3.mb-4 {
        margin-top: 0 !important;
        margin-bottom: 14px !important;
    }

    body.shopone-frontend .footer-widget .row,
    body.shopone-frontend footer.bg-black .row {
        row-gap: 14px;
    }

    body.shopone-frontend .footer-widget h5,
    body.shopone-frontend .footer-widget h4,
    body.shopone-frontend footer.bg-black h5,
    body.shopone-frontend footer.bg-black h4 {
        margin-bottom: 8px !important;
        font-size: 12px !important;
        letter-spacing: 0.08em;
        text-transform: uppercase;
    }

    body.shopone-frontend .footer-widget .text-secondary,
    body.shopone-frontend footer.bg-black .text-secondary,
    body.shopone-frontend footer.bg-black .fs-13,
    body.shopone-frontend footer.bg-black .fs-14 {
        font-size: 12px !important;
        line-height: 1.55 !important;
    }

    body.shopone-frontend footer.bg-black {
        padding-bottom: calc(92px + env(safe-area-inset-bottom, 0px)) !important;
    }
}

.shopone-premium-footer {
    margin-top: 0;
    padding: 18px 0 96px;
    background: #050505;
    color: rgba(255, 255, 255, 0.88);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.shopone-premium-footer .container {
    max-width: 1340px;
}

.shopone-premium-footer a {
    color: inherit;
    text-decoration: none;
}

.shopone-premium-footer__benefits,
.shopone-premium-footer__meta {
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 18px;
    background: #070707;
}

.shopone-premium-footer__benefits {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    overflow: hidden;
}

.shopone-premium-footer__benefit,
.shopone-premium-footer__meta-block {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.shopone-premium-footer__benefit {
    min-height: 74px;
    padding: 16px 20px;
}

.shopone-premium-footer__benefit + .shopone-premium-footer__benefit,
.shopone-premium-footer__meta-block + .shopone-premium-footer__meta-block,
.shopone-premium-footer__column + .shopone-premium-footer__column {
    border-left: 1px solid rgba(255, 255, 255, 0.11);
}

.shopone-premium-footer__benefit-icon,
.shopone-premium-footer__secure-item i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    line-height: 1;
}

.shopone-premium-footer__benefit-icon {
    flex: 0 0 28px;
    font-size: 28px;
}

.shopone-premium-footer__benefit-copy {
    min-width: 0;
}

.shopone-premium-footer__benefit-copy strong {
    display: block;
    color: #ffffff;
    font-size: 14px;
    line-height: 1.18;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.shopone-premium-footer__benefit-copy span {
    display: block;
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
    line-height: 1.35;
}

.shopone-premium-footer__main {
    display: grid;
    grid-template-columns: minmax(250px, 0.95fr) minmax(0, 2.25fr);
    gap: 28px;
    align-items: start;
    padding: 32px 4px 24px;
}

.shopone-premium-footer__brand {
    min-width: 0;
    padding-top: 2px;
}

.shopone-premium-footer__logo {
    display: inline-flex;
    align-items: center;
    max-width: 100%;
}

.shopone-premium-footer__logo img {
    display: block;
    max-width: min(210px, 100%);
    width: auto;
    height: 48px;
    object-fit: contain;
    object-position: left center;
}

.shopone-premium-footer__intro {
    max-width: 320px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 14px;
    line-height: 1.62;
    font-weight: 400;
}

.shopone-premium-footer__social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.shopone-premium-footer__social a {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    color: #ffffff;
    font-size: 20px;
    transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.shopone-premium-footer__social a:hover,
.shopone-premium-footer__social a:focus {
    border-color: #ff6a00;
    color: #ff6a00;
    transform: translateY(-1px);
}

.shopone-premium-footer__subscribe {
    max-width: 330px;
    margin-top: 20px;
}

.shopone-premium-footer__subscribe h3,
.shopone-premium-footer__column h3,
.shopone-premium-footer__meta-block h4 {
    margin: 0;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.11em;
}

.shopone-premium-footer__subscribe h3 {
    font-size: 14px;
    font-weight: 700;
}

.shopone-premium-footer__subscribe-box {
    margin-top: 10px;
    display: flex;
    align-items: center;
    min-height: 52px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
    overflow: hidden;
}

.shopone-premium-footer__subscribe-box input {
    flex: 1 1 auto;
    width: 100%;
    min-width: 0;
    height: 50px;
    padding: 0 14px;
    border: 0;
    background: transparent;
    color: #ffffff;
    font-size: 14px;
}

.shopone-premium-footer__subscribe-box input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.shopone-premium-footer__subscribe-box button {
    width: 54px;
    height: 50px;
    border: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    background: transparent;
    color: #ff6a00;
    font-size: 20px;
    cursor: pointer;
}

.shopone-premium-footer__subscribe p {
    margin: 8px 0 0;
    color: rgba(255, 255, 255, 0.58);
    font-size: 11px;
    line-height: 1.45;
}

.shopone-premium-footer__columns {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: start;
    min-width: 0;
}

.shopone-premium-footer__column {
    min-width: 0;
    padding: 2px 0 2px 30px;
}

.shopone-premium-footer__column:first-child {
    padding-left: 14px;
}

.shopone-premium-footer__column h3 {
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 14px;
    font-size: 15px;
    font-weight: 700;
}

.shopone-premium-footer__column h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 22px;
    height: 2px;
    background: #ff6a00;
    border-radius: 999px;
}

.shopone-premium-footer__column ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.shopone-premium-footer__column li + li {
    margin-top: 12px;
}

.shopone-premium-footer__column a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 14px;
    line-height: 1.34;
}

.shopone-premium-footer__column a i {
    flex: 0 0 18px;
    color: rgba(255, 255, 255, 0.96);
    font-size: 18px;
    text-align: center;
}

.shopone-premium-footer__column a:hover,
.shopone-premium-footer__column a:focus {
    color: #ff6a00;
}

.shopone-premium-footer__column a:hover i,
.shopone-premium-footer__column a:focus i {
    color: #ff6a00;
}

.shopone-premium-footer__meta {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr) minmax(0, 1fr);
    overflow: hidden;
}

.shopone-premium-footer__meta-block {
    padding: 18px 22px;
}

.shopone-premium-footer__meta-block h4 {
    flex: 0 0 112px;
    margin: 0;
    font-size: 12px;
    line-height: 1.15;
    font-weight: 700;
}

.shopone-premium-footer__payment-list,
.shopone-premium-footer__carrier-list,
.shopone-premium-footer__secure-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    min-width: 0;
}

.shopone-premium-footer__payment-card,
.shopone-premium-footer__carrier,
.shopone-premium-footer__secure-item {
    min-height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.02);
}

.shopone-premium-footer__payment-card {
    padding: 7px 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.shopone-premium-footer__payment-card img {
    display: block;
    max-height: 22px;
    width: auto;
    object-fit: contain;
}

.shopone-premium-footer__payment-card--text {
    min-width: 72px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.shopone-premium-footer__carrier-list {
    gap: 12px;
}

.shopone-premium-footer__carrier {
    padding: 7px 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.03em;
    text-transform: lowercase;
}

.shopone-premium-footer__carrier:last-child {
    text-transform: uppercase;
}

.shopone-premium-footer__secure-list {
    gap: 10px;
}

.shopone-premium-footer__secure-item {
    padding: 8px 12px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.shopone-premium-footer__secure-item i {
    flex: 0 0 18px;
    font-size: 18px;
}

.shopone-premium-footer__secure-item span {
    display: grid;
    gap: 2px;
}

.shopone-premium-footer__secure-item strong {
    color: #ffffff;
    font-size: 12px;
    line-height: 1.15;
    font-weight: 700;
    text-transform: uppercase;
}

.shopone-premium-footer__secure-item em {
    color: rgba(255, 255, 255, 0.7);
    font-style: normal;
    font-size: 10px;
    line-height: 1.2;
    text-transform: uppercase;
}

.shopone-premium-footer__bottom {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 16px;
    align-items: center;
    padding: 18px 4px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 18px;
}

.shopone-premium-footer__copyright,
.shopone-premium-footer__copyright p {
    margin: 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 13px;
    line-height: 1.5;
}

.shopone-premium-footer__legal {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
}

.shopone-premium-footer__legal a {
    color: rgba(255, 255, 255, 0.82);
    font-size: 13px;
    line-height: 1.4;
    padding: 0 16px;
}

.shopone-premium-footer__legal a + a {
    border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.shopone-premium-footer__legal a:hover,
.shopone-premium-footer__legal a:focus {
    color: #ff6a00;
}

.shopone-premium-footer__backtotop {
    min-height: 44px;
    padding: 0 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    background: transparent;
    color: #ffffff;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
}

.shopone-premium-footer__backtotop i {
    font-size: 18px;
}

.shopone-premium-footer__backtotop:hover,
.shopone-premium-footer__backtotop:focus {
    border-color: #ff6a00;
    color: #ff6a00;
}

@media (max-width: 1199.98px) {
    .shopone-premium-footer__benefits {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .shopone-premium-footer__benefit:nth-child(4) {
        border-left: 0;
    }

    .shopone-premium-footer__main {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .shopone-premium-footer__columns {
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        padding-top: 20px;
    }

    .shopone-premium-footer__meta {
        grid-template-columns: 1fr;
    }

    .shopone-premium-footer__meta-block + .shopone-premium-footer__meta-block {
        border-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .shopone-premium-footer__bottom {
        grid-template-columns: 1fr;
        justify-items: start;
    }

    .shopone-premium-footer__legal {
        justify-content: flex-start;
    }
}

@media (max-width: 991.98px) {
    .shopone-premium-footer {
        padding-top: 16px;
    }

    .shopone-premium-footer__benefits {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        border-radius: 16px;
    }

    .shopone-premium-footer__benefit {
        padding: 15px 16px;
    }

    .shopone-premium-footer__benefit:nth-child(odd) {
        border-left: 0;
    }

    .shopone-premium-footer__benefit:nth-child(n + 3) {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .shopone-premium-footer__columns {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px 0;
    }

    .shopone-premium-footer__column {
        padding: 0 0 0 18px;
    }

    .shopone-premium-footer__column:first-child,
    .shopone-premium-footer__column:nth-child(3) {
        padding-left: 0;
    }

    .shopone-premium-footer__column:nth-child(3) {
        border-left: 0;
    }
}

@media (max-width: 767.98px) {
    body.shopone-frontend .top-navbar {
        display: none !important;
    }

    body.shopone-frontend header,
    body.shopone-frontend header.sticky-top {
        border-bottom: 1px solid #eceff3;
        box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
    }

    body.shopone-frontend header .logo-bar-area {
        padding-top: max(12px, env(safe-area-inset-top, 0px)) !important;
        padding-bottom: 16px !important;
    }

    body.shopone-frontend header .logo-bar-area > .container > .d-flex {
        min-height: 126px;
        gap: 12px;
    }

    body.shopone-frontend header .logo-bar-area > .container > .d-flex > button.btn.d-lg-none {
        width: 44px;
        height: 44px;
        border-radius: 16px !important;
    }

    body.shopone-frontend .front-header-search {
        top: 70px;
    }

    body.shopone-frontend .front-header-search form.stop-propagation {
        width: 100%;
        display: block;
        padding: 0 14px;
        border: 1px solid #dfe5ec !important;
        border-radius: 18px !important;
        background: #f7f8fa !important;
        box-shadow: 0 8px 18px rgba(15, 23, 42, 0.05);
        overflow: hidden;
    }

    body.shopone-frontend .front-header-search .d-flex.position-relative.align-items-center {
        min-height: 50px;
        padding: 0;
        border: 0 !important;
        border-radius: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
    }

    body.shopone-frontend .front-header-search .search-input-box {
        flex: 1 1 auto;
        min-width: 0;
    }

    body.shopone-frontend .front-header-search .search-input-box input {
        min-height: 48px !important;
        padding: 0 8px 0 34px !important;
        border: 0 !important;
        border-radius: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
    }

    body.shopone-frontend .front-header-search .search-input-box > svg {
        left: 0;
        width: 18px;
        height: 18px;
    }

    .shopone-premium-footer {
        padding: 14px 0 calc(102px + env(safe-area-inset-bottom, 0px));
    }

    .shopone-premium-footer .container {
        padding-left: 14px !important;
        padding-right: 14px !important;
    }

    .shopone-premium-footer__benefits {
        grid-template-columns: 1fr;
        border-radius: 14px;
    }

    .shopone-premium-footer__benefit {
        min-height: 0;
        padding: 14px 14px;
    }

    .shopone-premium-footer__benefit + .shopone-premium-footer__benefit {
        border-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .shopone-premium-footer__benefit-icon {
        flex-basis: 24px;
        font-size: 24px;
    }

    .shopone-premium-footer__benefit-copy strong {
        font-size: 13px;
    }

    .shopone-premium-footer__benefit-copy span {
        font-size: 11px;
    }

    .shopone-premium-footer__main {
        gap: 18px;
        padding: 22px 0 18px;
    }

    .shopone-premium-footer__logo img {
        height: 40px;
        max-width: 176px;
    }

    .shopone-premium-footer__intro {
        margin-top: 14px;
        font-size: 13px;
        line-height: 1.55;
    }

    .shopone-premium-footer__social {
        gap: 8px;
        margin-top: 14px;
    }

    .shopone-premium-footer__social a {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .shopone-premium-footer__subscribe {
        margin-top: 14px;
    }

    .shopone-premium-footer__subscribe h3 {
        font-size: 13px;
    }

    .shopone-premium-footer__subscribe-box {
        min-height: 46px;
        margin-top: 10px;
        border-radius: 10px;
    }

    .shopone-premium-footer__subscribe-box input,
    .shopone-premium-footer__subscribe-box button {
        height: 44px;
    }

    .shopone-premium-footer__subscribe-box input {
        padding: 0 12px;
        font-size: 13px;
    }

    .shopone-premium-footer__subscribe-box button {
        width: 48px;
        font-size: 18px;
    }

    .shopone-premium-footer__columns {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0 18px;
        padding-top: 0;
        border-top: 0;
    }

    .shopone-premium-footer__column,
    .shopone-premium-footer__column:first-child,
    .shopone-premium-footer__column:nth-child(3) {
        padding: 12px 0 14px;
        border-left: 0;
    }

    .shopone-premium-footer__column + .shopone-premium-footer__column {
        border-top: 0;
    }

    .shopone-premium-footer__column:nth-child(even) {
        padding-left: 14px;
        border-left: 1px solid rgba(255, 255, 255, 0.1);
    }

    .shopone-premium-footer__column:nth-child(n + 3) {
        padding-top: 16px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .shopone-premium-footer__column h3 {
        margin-bottom: 12px;
        padding-bottom: 10px;
        font-size: 14px;
    }

    .shopone-premium-footer__column li + li {
        margin-top: 10px;
    }

    .shopone-premium-footer__column a {
        gap: 8px;
        font-size: 13px;
    }

    .shopone-premium-footer__column a i {
        flex-basis: 16px;
        font-size: 16px;
    }

    .shopone-premium-footer__meta {
        border-radius: 14px;
    }

    .shopone-premium-footer__meta-block {
        padding: 14px 14px;
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .shopone-premium-footer__meta-block h4 {
        margin-bottom: 0;
        font-size: 12px;
        flex: 0 0 auto;
    }

    .shopone-premium-footer__payment-list,
    .shopone-premium-footer__carrier-list,
    .shopone-premium-footer__secure-list {
        gap: 10px;
    }

    .shopone-premium-footer__payment-card,
    .shopone-premium-footer__carrier,
    .shopone-premium-footer__secure-item {
        min-height: 40px;
    }

    .shopone-premium-footer__payment-card {
        padding: 6px 10px;
    }

    .shopone-premium-footer__payment-card img {
        max-height: 20px;
    }

    .shopone-premium-footer__carrier {
        font-size: 16px;
    }

    .shopone-premium-footer__secure-item {
        width: 100%;
        padding: 8px 10px;
    }

    .shopone-premium-footer__bottom {
        gap: 12px;
        padding: 16px 0 0;
        margin-top: 14px;
    }

    .shopone-premium-footer__copyright,
    .shopone-premium-footer__copyright p,
    .shopone-premium-footer__legal a {
        font-size: 12px;
    }

    .shopone-premium-footer__legal {
        width: 100%;
        gap: 10px 0;
    }

    .shopone-premium-footer__legal a {
        padding: 0 12px;
    }

    .shopone-premium-footer__backtotop {
        width: 100%;
        justify-content: center;
        min-height: 42px;
        border-radius: 10px;
    }
}

/* Footer Bottom Cluster Refinement */
.shopone-premium-footer__meta {
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 0.95fr) minmax(0, 0.95fr);
    margin-top: 0;
}

.shopone-premium-footer__meta-block {
    display: grid;
    grid-template-columns: 108px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    min-height: 88px;
    padding: 16px 18px;
}

.shopone-premium-footer__meta-block h4 {
    align-self: center;
    margin: 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 11px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.shopone-premium-footer__payment-list {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    align-items: center;
    justify-content: start;
}

.shopone-premium-footer__carrier-list,
.shopone-premium-footer__secure-list {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    align-items: center;
    justify-content: flex-start;
}

.shopone-premium-footer__payment-card,
.shopone-premium-footer__carrier,
.shopone-premium-footer__secure-item {
    min-height: 40px;
    border-radius: 9px;
}

.shopone-premium-footer__payment-card {
    padding: 6px 12px;
}

.shopone-premium-footer__payment-card img {
    max-height: 20px;
}

.shopone-premium-footer__payment-card--text {
    min-width: 62px;
    font-size: 11px;
}

.shopone-premium-footer__carrier {
    min-width: 104px;
    padding: 6px 12px;
    font-size: 15px;
    justify-content: center;
}

.shopone-premium-footer__secure-item {
    min-width: 126px;
    padding: 7px 10px;
}

.shopone-premium-footer__secure-item strong {
    font-size: 11px;
}

.shopone-premium-footer__secure-item em {
    font-size: 9px;
}

.shopone-premium-footer__bottom {
    grid-template-columns: minmax(220px, 1fr) auto auto;
    gap: 12px;
    padding: 14px 2px 0;
    margin-top: 14px;
}

.shopone-premium-footer__copyright,
.shopone-premium-footer__copyright p {
    max-width: 340px;
    font-size: 12px;
}

.shopone-premium-footer__legal {
    justify-self: center;
}

.shopone-premium-footer__legal a {
    font-size: 12px;
    padding: 0 12px;
}

.shopone-premium-footer__backtotop {
    min-height: 40px;
    padding: 0 14px;
    font-size: 12px;
}

.shopone-premium-footer__backtotop i {
    font-size: 16px;
}

@media (max-width: 1199.98px) {
    .shopone-premium-footer__meta {
        grid-template-columns: 1fr;
    }

    .shopone-premium-footer__meta-block {
        grid-template-columns: 96px minmax(0, 1fr);
        min-height: 0;
    }

    .shopone-premium-footer__payment-list {
        flex-wrap: wrap;
    }

    .shopone-premium-footer__bottom {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .shopone-premium-footer__legal {
        justify-self: start;
    }
}

@media (max-width: 767.98px) {
    body.shopone-frontend .shopone-premium-footer__meta {
        display: block !important;
        grid-template-columns: 1fr !important;
        border-radius: 12px;
        overflow: hidden;
    }

    body.shopone-frontend .shopone-premium-footer__meta-block {
        display: grid !important;
        grid-template-columns: 1fr;
        align-items: start;
        gap: 8px;
        padding: 12px;
    }

    body.shopone-frontend .shopone-premium-footer__meta-block + .shopone-premium-footer__meta-block {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    body.shopone-frontend .shopone-premium-footer__meta-block h4 {
        align-self: start;
        padding-top: 0;
        font-size: 10px;
    }

    body.shopone-frontend .shopone-premium-footer__payment-list {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, max-content));
        gap: 8px;
        flex-wrap: unset;
    }

    body.shopone-frontend .shopone-premium-footer__carrier-list,
    body.shopone-frontend .shopone-premium-footer__secure-list {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }

    body.shopone-frontend .shopone-premium-footer__carrier,
    body.shopone-frontend .shopone-premium-footer__secure-item {
        min-width: 0;
        width: auto;
        max-width: 100%;
    }

    body.shopone-frontend .shopone-premium-footer__secure-item {
        padding: 7px 10px;
    }

    .shopone-premium-footer__bottom {
        gap: 10px;
        padding-top: 14px;
    }

    .shopone-premium-footer__copyright,
    .shopone-premium-footer__copyright p {
        max-width: none;
    }

    .shopone-premium-footer__legal {
        justify-self: start;
    }

    .shopone-premium-footer__legal a {
        padding: 0 10px;
    }
}

/* Footer Final Line Control */
.shopone-premium-footer__meta {
    grid-template-columns: minmax(0, 1.92fr) minmax(168px, 0.82fr) minmax(172px, 0.82fr);
    gap: 0;
}

.shopone-premium-footer__meta-block {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    min-height: 80px;
    padding: 14px 16px;
}

.shopone-premium-footer__meta-block h4 {
    margin: 0;
    align-self: center;
}

.shopone-premium-footer__payment-list,
.shopone-premium-footer__carrier-list,
.shopone-premium-footer__secure-list {
    min-width: 0;
}

.shopone-premium-footer__payment-list {
    display: flex;
    flex-wrap: nowrap;
    gap: 6px;
    align-items: center;
}

.shopone-premium-footer__carrier-list,
.shopone-premium-footer__secure-list {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
}

.shopone-premium-footer__carrier,
.shopone-premium-footer__secure-item {
    width: 100%;
}

.shopone-premium-footer__payment-card {
    min-height: 38px;
    padding: 5px 10px;
}

.shopone-premium-footer__payment-card--text {
    min-width: 54px;
    font-size: 10px;
}

.shopone-premium-footer__bottom {
    grid-template-columns: minmax(220px, 1fr) auto auto;
    grid-template-areas: "copyright legal back";
    align-items: center;
}

.shopone-premium-footer__copyright {
    grid-area: copyright;
}

.shopone-premium-footer__legal {
    grid-area: legal;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.shopone-premium-footer__backtotop {
    grid-area: back;
}

@media (max-width: 767.98px) {
    body.shopone-frontend .shopone-premium-footer__meta {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 0;
        border-radius: 12px;
        overflow: hidden;
    }

    body.shopone-frontend .shopone-premium-footer__meta-block {
        grid-template-columns: 1fr;
        align-items: start;
        gap: 8px;
        min-height: 0;
        padding: 12px;
    }

    body.shopone-frontend .shopone-premium-footer__meta-block--payment {
        grid-column: 1 / -1;
        grid-template-columns: 88px minmax(0, 1fr);
        align-items: center;
        gap: 10px;
    }

    body.shopone-frontend .shopone-premium-footer__meta-block--payment h4 {
        align-self: center;
    }

    body.shopone-frontend .shopone-premium-footer__meta-block--delivery,
    body.shopone-frontend .shopone-premium-footer__meta-block--secured {
        grid-template-columns: 1fr;
        align-items: start;
    }

    body.shopone-frontend .shopone-premium-footer__meta-block--delivery + .shopone-premium-footer__meta-block--secured {
        border-left: 1px solid rgba(255, 255, 255, 0.1);
    }

    body.shopone-frontend .shopone-premium-footer__payment-list {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, max-content));
        gap: 8px;
    }

    body.shopone-frontend .shopone-premium-footer__payment-card--text {
        min-width: 56px;
        font-size: 10px;
    }

    body.shopone-frontend .shopone-premium-footer__carrier-list,
    body.shopone-frontend .shopone-premium-footer__secure-list {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    body.shopone-frontend .shopone-premium-footer__carrier,
    body.shopone-frontend .shopone-premium-footer__secure-item {
        width: 100%;
        min-width: 0;
        max-width: 100%;
    }

    body.shopone-frontend .shopone-premium-footer__bottom {
        grid-template-columns: minmax(0, 1fr) auto;
        grid-template-areas:
            "copyright copyright"
            "legal back";
        gap: 10px 12px;
        align-items: center;
    }

    body.shopone-frontend .shopone-premium-footer__legal {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 8px 0;
        white-space: normal;
    }

    body.shopone-frontend .shopone-premium-footer__backtotop {
        width: auto;
        min-width: 120px;
        justify-content: center;
    }
}

/* Home rails final polish */
body.shopone-market-home #section_featured .shopone-flash-head h3 {
    display: block !important;
    margin: 0 !important;
    font-size: 18px !important;
    line-height: 1.12 !important;
    font-weight: 800 !important;
    letter-spacing: -0.02em !important;
    color: #1f2937 !important;
}

body.shopone-market-home #section_featured .shopone-flash-head h3 span,
body.shopone-market-home #section_featured .shopone-flash-head h3 .shopone-grad-word {
    display: inline !important;
    background: none !important;
    -webkit-background-clip: border-box !important;
    background-clip: border-box !important;
    -webkit-text-fill-color: currentColor !important;
    color: currentColor !important;
}

body.shopone-market-home #section_featured .shopone-flash-kicker {
    display: none !important;
}

body.shopone-market-home #section_featured .shopone-flash-clone .container {
    max-width: 1200px !important;
}

body.shopone-market-home #section_featured .shopone-flash-head {
    margin: 0 0 14px !important;
    padding: 0 0 12px !important;
    border-bottom: 1px solid #e8edf3 !important;
}

@media (min-width: 1200px) {
    body.shopone-frontend .container,
    .product-details > .container,
    .product-details-nav-tab .container,
    body.shopone-market-home .shopone-product-rail .container,
    body.shopone-market-home .shopone-flash-clone .container,
    body.shopone-market-home #shopone-category-clone .container,
    body.shopone-market-home .footer-widget .container,
    body.shopone-market-home footer.bg-black .container,
    .shopone-trust-showcase .container,
    .shopone-premium-footer .container {
        max-width: 1200px !important;
    }
}

body.shopone-market-home #section_featured .shopone-flash-grid {
    gap: 18px !important;
}

body.shopone-market-home #section_featured .shopone-shared-product-card {
    padding: 8px 8px 12px !important;
}

body.shopone-market-home #section_featured .shopone-shared-product-card__media {
    height: 146px !important;
    padding: 8px 8px 4px !important;
}

body.shopone-market-home #section_featured .shopone-shared-product-card__body h3,
body.shopone-market-home #shopone-trending-now .shopone-product-card__title,
body.shopone-market-home #shopone-best-selling .shopone-product-card__title,
body.shopone-market-home #shopone-just-for-you .shopone-product-card__title {
    font-weight: 400 !important;
}

body.shopone-market-home #section_featured .shopone-shared-product-card__body h3 {
    min-height: 34px !important;
    font-size: 12px !important;
    line-height: 1.35 !important;
}

body.shopone-market-home #shopone-trending-now .shopone-product-rail__title,
body.shopone-market-home #shopone-best-selling .shopone-product-rail__title,
body.shopone-market-home #shopone-just-for-you .shopone-product-rail__title {
    font-size: clamp(18px, 1.9vw, 24px) !important;
    line-height: 1.08 !important;
    letter-spacing: -0.03em !important;
}

body.shopone-market-home #shopone-trending-now .shopone-grad-word,
body.shopone-market-home #shopone-best-selling .shopone-grad-word,
body.shopone-market-home #shopone-just-for-you .shopone-grad-word {
    background: linear-gradient(90deg, #f97316 0%, #ff9a2f 100%) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: transparent !important;
}

body.shopone-frontend #header-logo-preview {
    width: min(240px, 100%) !important;
    max-width: 240px !important;
    height: auto !important;
    max-height: 48px !important;
}

.shopone-premium-footer__logo img {
    width: min(240px, 100%);
    max-width: 240px;
    height: auto;
    max-height: 56px;
}

@media (max-width: 767.98px) {
    body.shopone-market-home #section_featured .shopone-flash-head h3 {
        font-size: 20px !important;
        line-height: 1.08 !important;
    }

    body.shopone-market-home #section_featured .shopone-flash-head {
        margin-bottom: 10px !important;
        padding-bottom: 10px !important;
    }

    body.shopone-market-home #section_featured .shopone-flash-grid {
        gap: 10px !important;
    }

    body.shopone-market-home #section_featured .shopone-shared-product-card__media {
        height: 120px !important;
    }

    body.shopone-market-home #shopone-trending-now .shopone-product-rail__title,
    body.shopone-market-home #shopone-best-selling .shopone-product-rail__title,
    body.shopone-market-home #shopone-just-for-you .shopone-product-rail__title {
        font-size: 22px !important;
        line-height: 1.08 !important;
    }

    body.shopone-market-home #section_featured .shopone-flash-grid__item:nth-child(n + 5) {
        display: none !important;
    }

    body.shopone-frontend #header-logo-preview {
        width: min(198px, 100%) !important;
        max-width: 198px !important;
        max-height: 40px !important;
    }

    .shopone-premium-footer__logo img {
        width: min(190px, 100%) !important;
        max-width: 190px !important;
        max-height: 44px !important;
    }
}

@media (max-width: 767.98px) {
    body.shopone-frontend .shopone-app-shell {
        padding-bottom: calc(98px + env(safe-area-inset-bottom, 0px)) !important;
    }

    body.shopone-frontend header .logo-bar-area {
        padding-top: max(10px, env(safe-area-inset-top, 0px)) !important;
        padding-bottom: 10px !important;
    }

    body.shopone-frontend header .logo-bar-area > .container > .d-flex {
        display: flex !important;
        flex-wrap: wrap !important;
        align-items: center !important;
        gap: 10px !important;
        min-height: 0 !important;
    }

    body.shopone-frontend header .logo-bar-area > .container > .d-flex > button.btn.d-lg-none {
        flex: 0 0 42px;
        width: 42px !important;
        height: 42px !important;
        border-radius: 12px !important;
        box-shadow: none !important;
    }

    body.shopone-frontend header .logo-bar-area > .container > .d-flex > .col-auto.pl-0.pr-3 {
        display: flex;
        align-items: center;
        min-width: 0;
    }

    body.shopone-frontend #header-logo-preview {
        width: min(198px, 100%) !important;
        max-width: 198px !important;
        height: auto !important;
        max-height: 40px !important;
    }

    body.shopone-frontend .front-header-search {
        position: static !important;
        order: 2 !important;
        flex: 0 0 100% !important;
        width: 100% !important;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        margin-top: 2px !important;
        min-height: 0 !important;
    }

    body.shopone-frontend .front-header-search form.stop-propagation {
        padding: 0 12px !important;
        border-radius: 14px !important;
        background: #ffffff !important;
        box-shadow: none !important;
    }

    body.shopone-frontend .front-header-search .d-flex.position-relative.align-items-center {
        min-height: 46px !important;
    }

    body.shopone-frontend .front-header-search .search-input-box input {
        min-height: 44px !important;
        padding: 0 8px 0 34px !important;
        font-size: 14px !important;
    }

    body.shopone-frontend .front-header-search .search-input-box > svg {
        left: 0 !important;
        width: 17px !important;
        height: 17px !important;
    }

    body.shopone-frontend .front-header-search .typed-search-box {
        top: calc(100% + 6px) !important;
        border-radius: 14px !important;
    }

    body.shopone-frontend .aiz-mobile-bottom-nav {
        padding: 6px 10px calc(8px + env(safe-area-inset-bottom, 0px)) !important;
    }

    body.shopone-frontend .aiz-mobile-bottom-nav .row {
        display: flex !important;
        flex-wrap: nowrap !important;
        border-radius: 18px !important;
        box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08) !important;
    }

    body.shopone-frontend .aiz-mobile-bottom-nav a {
        min-height: 54px !important;
        padding: 7px 2px 8px !important;
        border-radius: 14px !important;
    }

    body.shopone-frontend .aiz-mobile-bottom-nav .fs-10 {
        font-size: 10px !important;
        line-height: 1.1 !important;
    }

    body.shopone-frontend .aiz-mobile-bottom-nav .row > .col,
    body.shopone-frontend .aiz-mobile-bottom-nav .row > [class*="col-"] {
        flex: 1 1 0 !important;
        max-width: none !important;
    }

    body.shopone-frontend .shopone-mobile-nav__link {
        width: 100% !important;
        min-height: 54px !important;
        display: grid !important;
        grid-template-rows: 20px auto !important;
        justify-items: center !important;
        align-content: center !important;
        gap: 4px !important;
        text-decoration: none !important;
    }

    body.shopone-frontend .shopone-mobile-nav__icon {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 22px !important;
        height: 20px !important;
        line-height: 1 !important;
    }

    body.shopone-frontend .shopone-mobile-nav__icon svg {
        display: block !important;
    }

    body.shopone-frontend .shopone-mobile-nav__link .rounded-circle.size-20px {
        width: 18px !important;
        height: 18px !important;
    }

    body.shopone-frontend .shopone-mobile-nav__label {
        display: block !important;
        margin-top: 0 !important;
        font-size: 10px !important;
        line-height: 1.1 !important;
        font-weight: 600 !important;
        white-space: nowrap !important;
        color: #7d8796 !important;
    }

    body.shopone-frontend .shopone-mobile-nav__link.svg-active .shopone-mobile-nav__label,
    body.shopone-frontend .shopone-mobile-nav__link--active .shopone-mobile-nav__label {
        color: #ff6a00 !important;
    }

    body.shopone-frontend .shopone-mobile-nav__link.svg-active .shopone-mobile-nav__icon svg path,
    body.shopone-frontend .shopone-mobile-nav__link--active .shopone-mobile-nav__icon svg path {
        fill: #ff6a00 !important;
    }

    body.shopone-frontend .shopone-mobile-nav__link--active .shopone-mobile-nav__icon .rounded-circle {
        border: 1px solid #ff6a00 !important;
        box-shadow: 0 0 0 2px rgba(255, 106, 0, 0.12) !important;
    }

    body.shopone-market-home .shopone-product-rail {
        margin: 16px 0 0 !important;
        padding: 0 !important;
    }

    body.shopone-market-home .shopone-product-rail__panel {
        padding: 16px 12px 14px !important;
        border-radius: 16px !important;
    }

    body.shopone-market-home .shopone-product-rail__head {
        gap: 8px !important;
        padding-bottom: 12px !important;
    }

    body.shopone-market-home .shopone-product-rail__head > div::after {
        font-size: 11px !important;
        line-height: 1.4 !important;
    }

    body.shopone-market-home .shopone-product-rail__link {
        min-height: 0 !important;
        padding: 0 !important;
        border: 0 !important;
        border-radius: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
    }

    body.shopone-market-home .shopone-product-rail__link::before {
        font-size: 12px !important;
    }

    body.shopone-market-home .shopone-product-rail__link::after {
        margin-left: 6px !important;
        font-size: 14px !important;
    }

    body.shopone-market-home .shopone-product-card__title,
    body.shopone-market-home #section_featured .shopone-shared-product-card__body h3 {
        font-weight: 400 !important;
    }

    body.shopone-market-home .shopone-product-rail__footer {
        margin-top: 14px !important;
    }

    body.shopone-market-home .shopone-product-rail__button {
        min-width: 0 !important;
        min-height: 0 !important;
        padding: 0 !important;
        border: 0 !important;
        border-radius: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
        color: #ff6a00 !important;
        font-size: 13px !important;
        line-height: 1.1 !important;
    }

    body.shopone-market-home #shopone-just-for-you {
        margin-bottom: 8px !important;
    }

    body.shopone-frontend .shopone-premium-footer {
        margin-top: 0 !important;
        padding: 10px 0 calc(96px + env(safe-area-inset-bottom, 0px)) !important;
    }

    body.shopone-frontend .shopone-premium-footer__benefits {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        border-radius: 12px !important;
    }

    body.shopone-frontend .shopone-premium-footer__benefit {
        min-height: 0 !important;
        align-items: flex-start !important;
        gap: 10px !important;
        padding: 12px !important;
        border-left: 0 !important;
        border-top: 0 !important;
    }

    body.shopone-frontend .shopone-premium-footer__benefit:nth-child(even) {
        border-left: 1px solid rgba(255, 255, 255, 0.1) !important;
    }

    body.shopone-frontend .shopone-premium-footer__benefit:nth-child(n + 3) {
        border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    }

    body.shopone-frontend .shopone-premium-footer__benefit:last-child {
        grid-column: 1 / -1;
    }

    body.shopone-frontend .shopone-premium-footer__benefit-icon {
        flex: 0 0 20px !important;
        font-size: 20px !important;
    }

    body.shopone-frontend .shopone-premium-footer__benefit-copy strong {
        font-size: 12px !important;
        line-height: 1.25 !important;
    }

    body.shopone-frontend .shopone-premium-footer__benefit-copy span {
        margin-top: 2px !important;
        font-size: 10px !important;
        line-height: 1.35 !important;
    }

    body.shopone-frontend .shopone-premium-footer__main {
        gap: 14px !important;
        padding: 16px 0 14px !important;
    }

    body.shopone-frontend .shopone-premium-footer__columns {
        gap: 0 12px !important;
    }

    body.shopone-frontend .shopone-premium-footer__column,
    body.shopone-frontend .shopone-premium-footer__column:first-child,
    body.shopone-frontend .shopone-premium-footer__column:nth-child(3) {
        padding: 10px 0 12px !important;
    }

    body.shopone-frontend .shopone-premium-footer__column:nth-child(even) {
        padding-left: 12px !important;
    }

    body.shopone-frontend .shopone-premium-footer__column h3 {
        margin-bottom: 10px !important;
        padding-bottom: 8px !important;
        font-size: 13px !important;
    }

    body.shopone-frontend .shopone-premium-footer__column li + li {
        margin-top: 8px !important;
    }

    body.shopone-frontend .shopone-premium-footer__column a {
        gap: 7px !important;
        font-size: 12px !important;
        line-height: 1.3 !important;
    }

    body.shopone-frontend .shopone-premium-footer__column a i {
        flex-basis: 14px !important;
        font-size: 14px !important;
    }

    body.shopone-frontend .shopone-premium-footer__meta {
        border-radius: 12px !important;
    }

    body.shopone-frontend .shopone-premium-footer__meta-block {
        padding: 10px 12px !important;
        gap: 6px !important;
    }

    body.shopone-frontend .shopone-premium-footer__meta-block h4 {
        font-size: 10px !important;
    }

    body.shopone-frontend .shopone-premium-footer__payment-list {
        gap: 6px !important;
    }

    body.shopone-frontend .shopone-premium-footer__payment-card {
        min-height: 34px !important;
        padding: 4px 8px !important;
    }

    body.shopone-frontend .shopone-premium-footer__carrier,
    body.shopone-frontend .shopone-premium-footer__secure-item {
        min-height: 34px !important;
    }

    body.shopone-frontend .shopone-premium-footer__bottom {
        gap: 8px !important;
        padding-top: 12px !important;
    }

    body.shopone-frontend .shopone-premium-footer__backtotop {
        min-width: 104px !important;
        min-height: 38px !important;
    }

body.shopone-frontend [id^="gb-widget-"][style*="position: fixed"] {
        bottom: calc(84px + env(safe-area-inset-bottom, 0px)) !important;
        right: 14px !important;
        left: auto !important;
        z-index: 16000150 !important;
    }
}

/* ShopOne footer final flat white pass */
body.shopone-frontend .shopone-premium-footer,
body.shopone-frontend .shopone-premium-footer a,
body.shopone-frontend .shopone-premium-footer strong,
body.shopone-frontend .shopone-premium-footer span,
body.shopone-frontend .shopone-premium-footer p,
body.shopone-frontend .shopone-premium-footer em,
body.shopone-frontend .shopone-premium-footer h3,
body.shopone-frontend .shopone-premium-footer h4 {
    color: #ffffff !important;
}

body.shopone-frontend .shopone-premium-footer__intro,
body.shopone-frontend .shopone-premium-footer__benefit-copy span,
body.shopone-frontend .shopone-premium-footer__column a,
body.shopone-frontend .shopone-premium-footer__copyright,
body.shopone-frontend .shopone-premium-footer__copyright p,
body.shopone-frontend .shopone-premium-footer__legal a {
    color: #ffffff !important;
    opacity: 1 !important;
}

body.shopone-frontend .shopone-premium-footer__column a:hover,
body.shopone-frontend .shopone-premium-footer__column a:focus,
body.shopone-frontend .shopone-premium-footer__column a:hover i,
body.shopone-frontend .shopone-premium-footer__column a:focus i,
body.shopone-frontend .shopone-premium-footer__social a:hover,
body.shopone-frontend .shopone-premium-footer__social a:focus,
body.shopone-frontend .shopone-premium-footer__legal a:hover,
body.shopone-frontend .shopone-premium-footer__legal a:focus,
body.shopone-frontend .shopone-premium-footer__backtotop:hover,
body.shopone-frontend .shopone-premium-footer__backtotop:focus {
    color: #ffffff !important;
    border-color: transparent !important;
    transform: none !important;
}

body.shopone-frontend .shopone-premium-footer__social a,
body.shopone-frontend .shopone-premium-footer__payment-card,
body.shopone-frontend .shopone-premium-footer__carrier,
body.shopone-frontend .shopone-premium-footer__secure-item,
body.shopone-frontend .shopone-premium-footer__backtotop {
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    outline: none !important;
}

body.shopone-frontend .shopone-premium-footer__benefit-icon,
body.shopone-frontend .shopone-premium-footer__column a i,
body.shopone-frontend .shopone-premium-footer__backtotop i {
    color: #ffffff !important;
}

body.shopone-frontend .shopone-premium-footer__payment-card--image img {
    filter: brightness(0) invert(1) grayscale(1) !important;
}

body.shopone-frontend .shopone-premium-footer__payment-card,
body.shopone-frontend .shopone-premium-footer__carrier,
body.shopone-frontend .shopone-premium-footer__secure-item {
    min-height: 0 !important;
    padding: 0 !important;
}

body.shopone-frontend .shopone-premium-footer__payment-list,
body.shopone-frontend .shopone-premium-footer__carrier-list,
body.shopone-frontend .shopone-premium-footer__secure-list {
    gap: 18px !important;
    align-items: center !important;
}

body.shopone-frontend .shopone-premium-footer__payment-card svg,
body.shopone-frontend .shopone-premium-footer__carrier svg,
body.shopone-frontend .shopone-premium-footer__secure-item svg {
    display: block;
    width: auto;
    height: 28px;
    color: #ffffff;
}

body.shopone-frontend .shopone-premium-footer__payment-card[aria-label="American Express"] svg {
    height: 30px;
}

body.shopone-frontend .shopone-premium-footer__carrier svg {
    height: 26px;
}

body.shopone-frontend .shopone-premium-footer__secure-item svg {
    height: 32px;
}

body.shopone-frontend .shopone-premium-footer__payment-card--image img,
body.shopone-frontend .shopone-premium-footer__payment-card img {
    display: block;
    max-height: 24px !important;
    width: auto !important;
    object-fit: contain;
}

body.shopone-frontend .shopone-premium-footer__social {
    gap: 14px !important;
}

body.shopone-frontend .shopone-premium-footer__social a {
    width: auto !important;
    height: auto !important;
    padding: 0 !important;
    font-size: 26px !important;
}

body.shopone-frontend .shopone-premium-footer__logo img {
    max-width: min(240px, 100%) !important;
    width: auto !important;
    height: auto !important;
    max-height: 58px !important;
    object-fit: contain !important;
}

body.shopone-frontend .shopone-premium-footer__benefits,
body.shopone-frontend .shopone-premium-footer__meta {
    background: transparent !important;
}

body.shopone-frontend .shopone-premium-footer__benefit-copy span,
body.shopone-frontend .shopone-premium-footer__secure-item em {
    letter-spacing: 0 !important;
}

body.shopone-frontend .shopone-premium-footer__bottom {
    align-items: center !important;
}

@media (max-width: 767.98px) {
    body.shopone-frontend .shopone-premium-footer__payment-list,
    body.shopone-frontend .shopone-premium-footer__carrier-list,
    body.shopone-frontend .shopone-premium-footer__secure-list {
        gap: 12px !important;
    }

    body.shopone-frontend .shopone-premium-footer__payment-card svg,
    body.shopone-frontend .shopone-premium-footer__carrier svg,
    body.shopone-frontend .shopone-premium-footer__secure-item svg {
        height: 22px;
    }

    body.shopone-frontend .shopone-premium-footer__secure-item svg {
        height: 26px;
    }

    body.shopone-frontend .shopone-premium-footer__logo img {
        max-width: min(210px, 100%) !important;
        max-height: 50px !important;
    }
}

/* ShopOne footer premium clone pass */
body.shopone-frontend .shopone-premium-footer .container {
    max-width: 1200px !important;
}

body.shopone-frontend .shopone-premium-footer__benefits,
body.shopone-frontend .shopone-premium-footer__ecosystem,
body.shopone-frontend .shopone-premium-footer__main,
body.shopone-frontend .shopone-premium-footer__meta {
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

body.shopone-frontend .shopone-premium-footer__benefits {
    margin-top: 4px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important;
}

body.shopone-frontend .shopone-premium-footer__benefit {
    min-height: 78px !important;
    padding: 18px 18px !important;
}

body.shopone-frontend .shopone-premium-footer__benefit-copy strong,
body.shopone-frontend .shopone-premium-footer__benefit-copy span {
    color: #ffffff !important;
}

body.shopone-frontend .shopone-premium-footer__ecosystem {
    position: relative;
    padding: 38px 0 40px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important;
    background:
        radial-gradient(circle at top center, rgba(255, 255, 255, 0.045), transparent 36%),
        linear-gradient(180deg, rgba(255,255,255,0.01) 0%, rgba(255,255,255,0) 100%);
}

body.shopone-frontend .shopone-premium-footer__ecosystem-head {
    max-width: 920px;
    margin: 0 auto 36px;
    text-align: center;
}

body.shopone-frontend .shopone-premium-footer__ecosystem-head p,
body.shopone-frontend .shopone-premium-footer__ecosystem-head h2 {
    margin: 0;
    color: #ffffff !important;
}

body.shopone-frontend .shopone-premium-footer__ecosystem-head p {
    margin-top: 12px;
    font-size: 18px;
    line-height: 1.45;
    font-weight: 500;
    letter-spacing: -0.01em;
    color: rgba(255, 255, 255, 0.84) !important;
    text-transform: none;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

body.shopone-frontend .shopone-premium-footer__ecosystem-head h2 {
    font-size: clamp(38px, 5vw, 66px);
    line-height: 0.96;
    font-weight: 800;
    letter-spacing: -0.05em;
    text-wrap: balance;
}

body.shopone-frontend .shopone-premium-footer__ecosystem-grid {
    display: grid;
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: 12px;
}

body.shopone-frontend .shopone-premium-footer__ecosystem-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    min-width: 0;
    min-height: 254px;
    padding: 24px 10px 12px;
    color: #ffffff !important;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 16px !important;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.035) 0%, rgba(255,255,255,0.012) 42%, rgba(255,255,255,0.008) 100%),
        radial-gradient(circle at top center, rgba(255, 255, 255, 0.04), transparent 50%) !important;
}

body.shopone-frontend .shopone-premium-footer__ecosystem-icon,
body.shopone-frontend .shopone-premium-footer__ecosystem-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff !important;
    line-height: 1;
}

body.shopone-frontend .shopone-premium-footer__ecosystem-icon {
    width: 58px;
    height: 58px;
    margin-bottom: 14px;
    font-size: 42px;
}

body.shopone-frontend .shopone-premium-footer__ecosystem-copy {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    min-width: 0;
    align-items: center;
}

body.shopone-frontend .shopone-premium-footer__ecosystem-copy strong,
body.shopone-frontend .shopone-premium-footer__ecosystem-copy span {
    display: block;
    color: #ffffff !important;
}

body.shopone-frontend .shopone-premium-footer__ecosystem-copy strong {
    position: relative;
    font-size: 13px;
    line-height: 1.16;
    font-weight: 700;
    padding-bottom: 16px;
    text-wrap: balance;
}

body.shopone-frontend .shopone-premium-footer__ecosystem-copy strong::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 28px;
    height: 2px;
    background: rgba(255, 255, 255, 0.78);
    transform: translateX(-50%);
    border-radius: 999px;
}

body.shopone-frontend .shopone-premium-footer__ecosystem-copy span {
    margin-top: 12px;
    font-size: 11px;
    line-height: 1.45;
    opacity: 0.88;
    max-width: 14ch;
    text-wrap: pretty;
}

body.shopone-frontend .shopone-premium-footer__ecosystem-bottom {
    width: 100%;
    margin-top: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

body.shopone-frontend .shopone-premium-footer__ecosystem-badge {
    display: inline-flex;
    align-items: center;
    gap: 0;
    min-height: 24px;
    padding: 0;
    border: 0 !important;
    color: #ffffff !important;
    font-size: 8.5px;
    line-height: 1;
    font-weight: 600;
    white-space: nowrap;
    max-width: calc(100% - 42px);
    flex: 1 1 auto;
    min-width: 0;
}

body.shopone-frontend .shopone-premium-footer__ecosystem-badge i {
    display: none !important;
}

body.shopone-frontend .shopone-premium-footer__ecosystem-badge span {
    display: block;
    white-space: nowrap;
    min-width: 0;
}

body.shopone-frontend .shopone-premium-footer__ecosystem-link {
    width: 24px;
    height: 24px;
    border: 0 !important;
    border-radius: 999px;
    font-size: 13px;
    flex: 0 0 24px;
}

body.shopone-frontend .shopone-premium-footer__ecosystem-card:hover,
body.shopone-frontend .shopone-premium-footer__ecosystem-card:focus {
    color: #ffffff !important;
    transform: none !important;
}

body.shopone-frontend .shopone-premium-footer__main {
    gap: 24px !important;
    padding: 30px 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.12) !important;
}

body.shopone-frontend .shopone-premium-footer__ecosystem + .shopone-premium-footer__main {
    border-top: 0 !important;
}

body.shopone-frontend .shopone-premium-footer__brand {
    padding-top: 0 !important;
}

body.shopone-frontend .shopone-premium-footer__logo img {
    max-width: min(250px, 100%) !important;
    max-height: 64px !important;
}

body.shopone-frontend .shopone-premium-footer__intro {
    max-width: 320px !important;
    margin-top: 20px !important;
    font-size: 16px !important;
    line-height: 1.8 !important;
    color: #ffffff !important;
}

body.shopone-frontend .shopone-premium-footer__social {
    margin-top: 22px !important;
    gap: 20px !important;
}

body.shopone-frontend .shopone-premium-footer__social a {
    font-size: 24px !important;
}

body.shopone-frontend .shopone-premium-footer__columns {
    gap: 0 !important;
}

body.shopone-frontend .shopone-premium-footer__column {
    padding: 0 0 0 32px !important;
}

body.shopone-frontend .shopone-premium-footer__column:first-child {
    padding-left: 0 !important;
}

body.shopone-frontend .shopone-premium-footer__column h3 {
    margin-bottom: 18px !important;
    padding-bottom: 14px !important;
    font-size: 16px !important;
}

body.shopone-frontend .shopone-premium-footer__column li + li {
    margin-top: 16px !important;
}

body.shopone-frontend .shopone-premium-footer__column a {
    gap: 12px !important;
    font-size: 16px !important;
    line-height: 1.45 !important;
}

body.shopone-frontend .shopone-premium-footer__column a i {
    flex-basis: 18px !important;
    font-size: 20px !important;
}

body.shopone-frontend .shopone-premium-footer__meta {
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr) minmax(0, 1.15fr) !important;
    align-items: center !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important;
}

body.shopone-frontend .shopone-premium-footer__meta-block {
    padding: 18px 0 !important;
    gap: 14px !important;
}

body.shopone-frontend .shopone-premium-footer__meta-block + .shopone-premium-footer__meta-block {
    border-left: 1px solid rgba(255, 255, 255, 0.11) !important;
}

body.shopone-frontend .shopone-premium-footer__meta-block h4 {
    flex: 0 0 128px !important;
    font-size: 12px !important;
    line-height: 1.25 !important;
}

body.shopone-frontend .shopone-premium-footer__meta-block--delivery h4,
body.shopone-frontend .shopone-premium-footer__meta-block--secured h4 {
    flex: 0 0 76px !important;
    white-space: nowrap !important;
}

body.shopone-frontend .shopone-premium-footer__payment-list,
body.shopone-frontend .shopone-premium-footer__carrier-list,
body.shopone-frontend .shopone-premium-footer__secure-list {
    gap: 12px !important;
}

body.shopone-frontend .shopone-premium-footer__carrier-list,
body.shopone-frontend .shopone-premium-footer__secure-list {
    flex-direction: row !important;
    flex-wrap: nowrap !important;
}

body.shopone-frontend .shopone-premium-footer__payment-card svg,
body.shopone-frontend .shopone-premium-footer__carrier svg,
body.shopone-frontend .shopone-premium-footer__secure-item svg {
    height: 30px !important;
}

body.shopone-frontend .shopone-premium-footer__carrier svg {
    height: 34px !important;
}

body.shopone-frontend .shopone-premium-footer__secure-item svg {
    height: 34px !important;
}

body.shopone-frontend .shopone-premium-footer__carrier--text,
body.shopone-frontend .shopone-premium-footer__secure-item--text {
    padding: 0 !important;
    min-height: 0 !important;
    min-width: 0 !important;
    width: auto !important;
    max-width: none !important;
    color: #ffffff !important;
    font-size: 13px !important;
    line-height: 1.3 !important;
    font-weight: 600 !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
    white-space: nowrap !important;
}

body.shopone-frontend .shopone-premium-footer__secure-item--text {
    gap: 0 !important;
}

body.shopone-frontend .shopone-premium-footer__bottom {
    margin-top: 0 !important;
    padding: 20px 0 0 !important;
    border-top: 0 !important;
}

body.shopone-frontend .shopone-premium-footer__backtotop {
    padding: 0 !important;
    min-height: 0 !important;
    min-width: auto !important;
}

@media (max-width: 1199.98px) {
    body.shopone-frontend .shopone-premium-footer__ecosystem-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    body.shopone-frontend .shopone-premium-footer__benefits {
        grid-template-columns: 1fr !important;
    }

    body.shopone-frontend .shopone-premium-footer__benefit + .shopone-premium-footer__benefit {
        border-left: 0 !important;
        border-top: 1px solid rgba(255, 255, 255, 0.11);
    }

    body.shopone-frontend .shopone-premium-footer__ecosystem {
        padding: 26px 0 28px !important;
    }

    body.shopone-frontend .shopone-premium-footer__ecosystem-head {
        margin-bottom: 22px !important;
    }

    body.shopone-frontend .shopone-premium-footer__ecosystem-head h2 {
        font-size: 32px !important;
        line-height: 1.02 !important;
    }

    body.shopone-frontend .shopone-premium-footer__ecosystem-head p {
        margin-top: 10px !important;
        font-size: 14px !important;
        line-height: 1.45 !important;
    }

    body.shopone-frontend .shopone-premium-footer__ecosystem-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
        gap: 8px !important;
    }

    body.shopone-frontend .shopone-premium-footer__ecosystem-card {
        min-height: 118px !important;
        padding: 12px 5px 8px !important;
        border-radius: 12px !important;
    }

    body.shopone-frontend .shopone-premium-footer__ecosystem-icon {
        width: 34px !important;
        height: 34px !important;
        margin-bottom: 8px !important;
        font-size: 26px !important;
    }

    body.shopone-frontend .shopone-premium-footer__ecosystem-copy strong {
        font-size: 10.5px !important;
        line-height: 1.16 !important;
        padding-bottom: 0 !important;
    }

    body.shopone-frontend .shopone-premium-footer__ecosystem-copy strong::after {
        display: none !important;
    }

    body.shopone-frontend .shopone-premium-footer__ecosystem-copy span {
        display: none !important;
    }

    body.shopone-frontend .shopone-premium-footer__ecosystem-bottom {
        margin-top: auto !important;
        justify-content: center !important;
        gap: 0 !important;
    }

    body.shopone-frontend .shopone-premium-footer__ecosystem-badge {
        display: none !important;
    }

    body.shopone-frontend .shopone-premium-footer__ecosystem-link {
        width: 20px !important;
        height: 20px !important;
        font-size: 12px !important;
        flex-basis: 20px !important;
    }

    body.shopone-frontend .shopone-premium-footer__main {
        padding: 24px 0 !important;
    }

    body.shopone-frontend .shopone-premium-footer__intro {
        font-size: 14px !important;
        line-height: 1.65 !important;
    }

    body.shopone-frontend .shopone-premium-footer__columns {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        row-gap: 20px !important;
        border-top: 1px solid rgba(255, 255, 255, 0.11) !important;
        padding-top: 20px !important;
    }

    body.shopone-frontend .shopone-premium-footer__column {
        padding: 0 0 0 14px !important;
    }

    body.shopone-frontend .shopone-premium-footer__column:nth-child(odd) {
        padding-left: 0 !important;
    }

    body.shopone-frontend .shopone-premium-footer__column:nth-child(odd) + .shopone-premium-footer__column {
        border-left: 1px solid rgba(255, 255, 255, 0.11) !important;
    }

    body.shopone-frontend .shopone-premium-footer__meta {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    body.shopone-frontend .shopone-premium-footer__meta-block {
        padding: 14px 0 !important;
    }

    body.shopone-frontend .shopone-premium-footer__meta-block--payment {
        grid-column: 1 / -1;
        padding-bottom: 16px !important;
    }

    body.shopone-frontend .shopone-premium-footer__meta-block--delivery,
    body.shopone-frontend .shopone-premium-footer__meta-block--secured {
        padding-top: 16px !important;
    }

    body.shopone-frontend .shopone-premium-footer__meta-block h4 {
        flex-basis: 88px !important;
    }

    body.shopone-frontend .shopone-premium-footer__payment-list {
        display: grid !important;
        grid-template-columns: repeat(3, minmax(0, max-content)) !important;
        gap: 10px !important;
    }

    body.shopone-frontend .shopone-premium-footer__carrier-list,
    body.shopone-frontend .shopone-premium-footer__secure-list {
        flex-wrap: wrap !important;
        gap: 12px !important;
    }
}

/* ShopOne footer lower strip redesign */
body.shopone-frontend .shopone-premium-footer__main {
    border-bottom: 0 !important;
}

body.shopone-frontend .shopone-premium-footer__meta {
    display: grid !important;
    grid-template-columns: minmax(0, 2.35fr) minmax(0, 1.02fr) minmax(0, 1fr) !important;
    gap: 0 !important;
    margin-top: 18px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.14) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14) !important;
    background: transparent !important;
}

body.shopone-frontend .shopone-premium-footer__meta-block {
    display: block !important;
    min-width: 0 !important;
    padding: 28px 28px !important;
}

body.shopone-frontend .shopone-premium-footer__meta-block + .shopone-premium-footer__meta-block {
    border-left: 1px solid rgba(255, 255, 255, 0.14) !important;
}

body.shopone-frontend .shopone-premium-footer__meta-block h4,
body.shopone-frontend .shopone-premium-footer__meta-block--delivery h4,
body.shopone-frontend .shopone-premium-footer__meta-block--secured h4 {
    margin: 0 0 22px !important;
    flex: none !important;
    font-size: 14px !important;
    line-height: 1.2 !important;
    font-weight: 700 !important;
    letter-spacing: 0.06em !important;
    text-transform: uppercase !important;
    white-space: nowrap !important;
}

body.shopone-frontend .shopone-premium-footer__payment-list,
body.shopone-frontend .shopone-premium-footer__carrier-list,
body.shopone-frontend .shopone-premium-footer__secure-list {
    display: flex !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
    gap: 0 !important;
}

body.shopone-frontend .shopone-premium-footer__meta-link {
    display: inline-flex !important;
    align-items: center !important;
    min-height: 0 !important;
    padding: 0 16px !important;
    color: #ffffff !important;
    font-size: 14px !important;
    line-height: 1.45 !important;
    font-weight: 400 !important;
    white-space: nowrap !important;
}

body.shopone-frontend .shopone-premium-footer__payment-list .shopone-premium-footer__meta-link:first-child,
body.shopone-frontend .shopone-premium-footer__carrier-list .shopone-premium-footer__meta-link:first-child,
body.shopone-frontend .shopone-premium-footer__secure-list .shopone-premium-footer__meta-link:first-child {
    padding-left: 0 !important;
}

body.shopone-frontend .shopone-premium-footer__payment-list .shopone-premium-footer__meta-link + .shopone-premium-footer__meta-link,
body.shopone-frontend .shopone-premium-footer__carrier-list .shopone-premium-footer__meta-link + .shopone-premium-footer__meta-link,
body.shopone-frontend .shopone-premium-footer__secure-list .shopone-premium-footer__meta-link + .shopone-premium-footer__meta-link {
    border-left: 1px solid rgba(255, 255, 255, 0.24) !important;
}

body.shopone-frontend .shopone-premium-footer__bottom {
    display: grid !important;
    grid-template-columns: auto minmax(0, 1fr) auto !important;
    gap: 26px !important;
    align-items: center !important;
    margin-top: 0 !important;
    padding: 28px 0 4px !important;
    border-top: 0 !important;
}

body.shopone-frontend .shopone-premium-footer__copyright,
body.shopone-frontend .shopone-premium-footer__copyright p {
    color: #ffffff !important;
    font-size: 14px !important;
    line-height: 1.45 !important;
}

body.shopone-frontend .shopone-premium-footer__legal,
body.shopone-frontend .shopone-premium-footer__follow {
    display: flex !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
    justify-content: center !important;
    gap: 0 !important;
    white-space: nowrap !important;
}

body.shopone-frontend .shopone-premium-footer__follow {
    justify-content: flex-end !important;
}

body.shopone-frontend .shopone-premium-footer__legal a,
body.shopone-frontend .shopone-premium-footer__follow a,
body.shopone-frontend .shopone-premium-footer__follow-label {
    display: inline-flex !important;
    align-items: center !important;
    padding: 0 22px !important;
    color: #ffffff !important;
    font-size: 14px !important;
    line-height: 1.45 !important;
    font-weight: 400 !important;
}

body.shopone-frontend .shopone-premium-footer__legal a:first-child {
    padding-left: 0 !important;
}

body.shopone-frontend .shopone-premium-footer__follow-label {
    padding-left: 0 !important;
}

body.shopone-frontend .shopone-premium-footer__legal a + a,
body.shopone-frontend .shopone-premium-footer__follow > * + * {
    border-left: 1px solid rgba(255, 255, 255, 0.24) !important;
}

body.shopone-frontend .shopone-premium-footer__legal a:hover,
body.shopone-frontend .shopone-premium-footer__follow a:hover,
body.shopone-frontend .shopone-premium-footer__legal a:focus,
body.shopone-frontend .shopone-premium-footer__follow a:focus {
    color: #ffffff !important;
}

@media (max-width: 1199.98px) {
    body.shopone-frontend .shopone-premium-footer__meta {
        grid-template-columns: 1fr !important;
    }

    body.shopone-frontend .shopone-premium-footer__meta-block + .shopone-premium-footer__meta-block {
        border-left: 0 !important;
        border-top: 1px solid rgba(255, 255, 255, 0.14) !important;
    }

    body.shopone-frontend .shopone-premium-footer__bottom {
        grid-template-columns: 1fr !important;
        justify-items: start !important;
        gap: 14px !important;
    }

    body.shopone-frontend .shopone-premium-footer__legal,
    body.shopone-frontend .shopone-premium-footer__follow {
        flex-wrap: wrap !important;
        justify-content: flex-start !important;
        white-space: normal !important;
    }
}

@media (max-width: 767.98px) {
    body.shopone-frontend .shopone-premium-footer__meta {
        margin-top: 14px !important;
    }

    body.shopone-frontend .shopone-premium-footer__meta-block {
        padding: 18px 0 !important;
    }

    body.shopone-frontend .shopone-premium-footer__meta-block h4,
    body.shopone-frontend .shopone-premium-footer__meta-block--delivery h4,
    body.shopone-frontend .shopone-premium-footer__meta-block--secured h4 {
        margin-bottom: 14px !important;
        font-size: 13px !important;
    }

    body.shopone-frontend .shopone-premium-footer__payment-list,
    body.shopone-frontend .shopone-premium-footer__carrier-list,
    body.shopone-frontend .shopone-premium-footer__secure-list,
    body.shopone-frontend .shopone-premium-footer__legal,
    body.shopone-frontend .shopone-premium-footer__follow {
        flex-wrap: wrap !important;
    }

    body.shopone-frontend .shopone-premium-footer__meta-link,
    body.shopone-frontend .shopone-premium-footer__legal a,
    body.shopone-frontend .shopone-premium-footer__follow a,
    body.shopone-frontend .shopone-premium-footer__follow-label {
        padding: 4px 14px !important;
        font-size: 13px !important;
    }

    body.shopone-frontend .shopone-premium-footer__payment-list .shopone-premium-footer__meta-link:first-child,
    body.shopone-frontend .shopone-premium-footer__carrier-list .shopone-premium-footer__meta-link:first-child,
    body.shopone-frontend .shopone-premium-footer__secure-list .shopone-premium-footer__meta-link:first-child,
    body.shopone-frontend .shopone-premium-footer__legal a:first-child,
    body.shopone-frontend .shopone-premium-footer__follow-label {
        padding-left: 0 !important;
    }
}

.shopone-related-guide-section {
    margin-top: 18px;
}

.shopone-related-guide-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    padding: 20px 22px;
    background: #fff;
    border: 1px solid #eceff3;
}

.shopone-related-guide-kicker {
    display: inline-flex;
    margin-bottom: 8px;
    color: #e94b16;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.shopone-related-guide-card h2 {
    margin: 0 0 8px;
    color: #111827;
    font-size: 20px;
    line-height: 1.28;
    font-weight: 800;
}

.shopone-related-guide-card p {
    max-width: 720px;
    margin: 0;
    color: #4b5563;
    font-size: 14px;
    line-height: 1.72;
}

.shopone-related-guide-points {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.shopone-related-guide-points span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 6px 10px;
    background: #f7f8fa;
    color: #3f4650;
    font-size: 12px;
    font-weight: 700;
}

.shopone-related-guide-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 18px;
    background: #111827;
    color: #fff !important;
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
    transition: background .16s ease;
}

.shopone-related-guide-action:hover {
    background: #f04a14;
    color: #fff !important;
    text-decoration: none;
}

@media (max-width: 767.98px) {
    .shopone-related-guide-card {
        grid-template-columns: 1fr;
        padding: 18px;
    }

    .shopone-related-guide-action {
        width: 100%;
    }
}
/* Shop One homepage product cards: keep product photos large enough to inspect. */
body.shopone-market-home .shopone-product-card__thumb {
    height: clamp(184px, 24vw, 224px) !important;
    padding: 8px !important;
}

body.shopone-market-home .shopone-product-card__thumb img {
    width: 100% !important;
    height: 100% !important;
    max-height: 100% !important;
    object-fit: contain !important;
}

@media (max-width: 575.98px) {
    body.shopone-market-home .shopone-product-card__thumb {
        height: 170px !important;
        padding: 7px !important;
    }
}

@media (min-width: 992px) {
    body.shopone-market-home .shopone-product-card__thumb {
        height: 216px !important;
    }
}

/* ShopOne performance stability: reserve layout before images/sliders hydrate */
.shopone-shared-product-card__media,
.shopone-catalog-card__media {
    aspect-ratio: 1 / 1;
    min-height: 146px;
    contain: layout paint;
}
.shopone-shared-product-card__media > a,
.shopone-catalog-card__media > a {
    display: block;
    width: 100%;
    height: 100%;
}
.shopone-shared-product-card__media img,
.shopone-catalog-card__media img {
    aspect-ratio: 1 / 1;
    display: block;
    max-width: 100%;
    min-height: 1px;
}
.aiz-carousel:not(.slick-initialized) {
    display: flex;
    overflow: hidden;
}
.aiz-carousel:not(.slick-initialized) > .carousel-box {
    flex: 0 0 50%;
    max-width: 50%;
}
@media (min-width: 768px) {
    .aiz-carousel:not(.slick-initialized) > .carousel-box {
        flex-basis: 25%;
        max-width: 25%;
    }
}
@media (min-width: 1200px) {
    .aiz-carousel:not(.slick-initialized) > .carousel-box {
        flex-basis: 20%;
        max-width: 20%;
    }
}
body.shopone-market-home .home-slider,
body.shopone-market-home .home-banner-area {
    min-height: clamp(180px, 28vw, 400px);
}
@media (max-width: 767.98px) {
    .shopone-shared-product-card__media,
    .shopone-catalog-card__media {
        min-height: 112px;
    }
}

/* ShopOne LCP/CLS second pass */
body.shopone-market-home .home-slider .aiz-carousel:not(.slick-initialized) > .carousel-box:not(:first-child) {
    display: none;
}
body.shopone-market-home .home-slider .aiz-carousel:not(.slick-initialized) > .carousel-box:first-child {
    flex: 0 0 100%;
    max-width: 100%;
}
body.shopone-market-home .home-slider .carousel-box img {
    background: #f7f7f7;
}
.cookie-consent,
.js-cookie-consent,
.cookie-alert,
#cookie-consent,
#gdpr-cookie-message {
    contain: layout paint;
}
@media (max-width: 767.98px) {
    body.shopone-market-home .home-slider,
    body.shopone-market-home .home-banner-area {
        min-height: 180px;
    }
}

/* ShopOne minimal product information polish v999399 */
.product-details-nav-tab {
    background: #f4f5f7;
}
.product-details-nav-tab .nav-tab-header {
    border-bottom: 1px solid #e8eaef;
}
.product-details-nav-tab .container.d-flex.flex-column {
    max-width: 1040px;
    gap: 0;
}
#description,
#shoponeBuyingHighlights,
#shoponeTerms,
#shoponeFaq {
    margin: 0 !important;
}
#description > .border,
.shopone-buying-card,
.shopone-terms-card,
.shopone-faq-card {
    background: #fff !important;
    border: 1px solid #e7eaf0 !important;
    border-radius: 6px !important;
    box-shadow: none !important;
    padding: 22px 24px !important;
}
#description > .border,
.shopone-buying-card,
.shopone-terms-card {
    border-bottom-width: 0 !important;
    border-radius: 6px 6px 0 0 !important;
}
#shoponeBuyingHighlights .shopone-buying-card,
#shoponeTerms .shopone-terms-card {
    border-radius: 0 !important;
}
#shoponeFaq .shopone-faq-card {
    border-radius: 0 0 6px 6px !important;
}
#description .d-flex.justify-content-between,
#shoponeBuyingHighlights .d-flex.justify-content-between,
#shoponeTerms .d-flex.justify-content-between,
#shoponeFaq .d-flex.justify-content-between {
    margin-bottom: 14px !important;
}
#description h2,
#shoponeBuyingHighlights h2,
#shoponeFaq h2,
#shoponeTerms .fs-18 {
    font-size: 18px !important;
    line-height: 1.25 !important;
    letter-spacing: 0 !important;
}
#description p,
#shoponeBuyingHighlights p,
#shoponeTerms p,
#shoponeFaq p {
    color: #667085 !important;
}
.shopone-mini-badge,
#description .rounded-pill.bg-soft-light {
    display: none !important;
}
#description .aiz-editor-data {
    max-width: 780px;
    color: #344054;
}
#description .aiz-editor-data p {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.75;
}
#description .aiz-editor-data ul {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    padding: 0;
    margin: 14px 0 0;
    list-style: none;
}
#description .aiz-editor-data li,
.shopone-terms-list li {
    position: relative;
    padding-left: 18px;
    font-size: 13px;
    line-height: 1.55;
    color: #344054;
}
#description .aiz-editor-data li:before,
.shopone-terms-list li:before {
    content: "";
    position: absolute;
    left: 0;
    top: .62em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #f85606;
}
.shopone-buying-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px !important;
}
.shopone-buying-item {
    border: 1px solid #edf0f5 !important;
    border-radius: 6px !important;
    background: #fafbfc !important;
    padding: 14px 14px 14px 42px !important;
    position: relative;
    min-height: 112px;
}
.shopone-buying-item:before {
    align-items: center;
    background: #fff3ed;
    border-radius: 50%;
    color: #f85606;
    content: "\2713";
    display: flex;
    font-size: 13px;
    font-weight: 800;
    height: 22px;
    justify-content: center;
    left: 14px;
    position: absolute;
    top: 16px;
    width: 22px;
}
.shopone-buying-item h3 {
    color: #1f2937 !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    letter-spacing: 0 !important;
    margin-bottom: 6px !important;
}
.shopone-buying-item p {
    font-size: 12.5px !important;
    line-height: 1.55 !important;
    margin: 0 !important;
}
.shopone-terms-list {
    display: grid;
    gap: 8px;
    list-style: none;
    margin: 0 !important;
    padding: 0 !important;
}
.shopone-faq-list {
    border: 1px solid #edf0f5;
    border-radius: 6px;
    overflow: hidden;
}
.shopone-faq-item {
    border: 0 !important;
    border-bottom: 1px solid #edf0f5 !important;
    margin: 0 !important;
}
.shopone-faq-item:last-child {
    border-bottom: 0 !important;
}
.shopone-faq-question {
    background: #fff !important;
    color: #1f2937 !important;
    cursor: pointer;
    font-size: 13px !important;
    font-weight: 700 !important;
    line-height: 1.45 !important;
    padding: 14px 42px 14px 16px !important;
}
.shopone-faq-answer {
    background: #fafbfc !important;
    padding: 0 16px 14px !important;
}
.shopone-faq-answer p {
    font-size: 13px !important;
    line-height: 1.65 !important;
    margin: 0 !important;
}
.shopone-faq-links {
    margin-top: 12px !important;
}
.shopone-inline-link {
    color: #f85606 !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    margin-right: 16px;
}
#topSellingProductRail {
    margin-top: 20px !important;
}
.shopone-detail-product-rail {
    border-radius: 6px !important;
    box-shadow: none !important;
}
@media (max-width: 767px) {
    #description > .border,
    .shopone-buying-card,
    .shopone-terms-card,
    .shopone-faq-card {
        padding: 18px 16px !important;
    }
    #description .aiz-editor-data ul,
    .shopone-buying-grid {
        grid-template-columns: 1fr;
    }
    .shopone-buying-item {
        min-height: auto;
    }
}

/* ShopOne product cards: keep product media square and compact */
body.shopone-market-home .shopone-flash-clone .shopone-shared-product-card,
body.shopone-market-home #section_featured .shopone-shared-product-card,
.shopone-catalog-card {
    display: flex !important;
    flex-direction: column !important;
    height: auto !important;
    min-height: 0 !important;
}
body.shopone-market-home .shopone-flash-clone .shopone-shared-product-card__media,
body.shopone-market-home #section_featured .shopone-shared-product-card__media,
.shopone-catalog-card__media,
.shopone-shared-product-card__media {
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    aspect-ratio: 1 / 1 !important;
    padding: 10px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}
body.shopone-market-home .shopone-flash-clone .shopone-shared-product-card__media > a,
body.shopone-market-home #section_featured .shopone-shared-product-card__media > a,
.shopone-catalog-card__media > a,
.shopone-shared-product-card__media > a {
    width: 100% !important;
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}
body.shopone-market-home .shopone-flash-clone .shopone-shared-product-card__media img,
body.shopone-market-home #section_featured .shopone-shared-product-card__media img,
.shopone-catalog-card__media img,
.shopone-shared-product-card__media img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
}
body.shopone-market-home .shopone-flash-clone .shopone-shared-product-card__body,
body.shopone-market-home #section_featured .shopone-shared-product-card__body,
.shopone-catalog-card__body,
.shopone-shared-product-card__body {
    flex: 0 0 auto !important;
    padding: 8px 10px 12px !important;
}

/* ShopOne rails: product image must stay square, with details below */
body.shopone-market-home .shopone-product-card {
    height: auto !important;
    min-height: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    padding: 10px 12px 12px !important;
}
body.shopone-market-home .shopone-product-card__thumb {
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    aspect-ratio: 1 / 1 !important;
    padding: 8px !important;
    margin: 8px 0 10px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}
body.shopone-market-home .shopone-product-card__thumb img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
}
body.shopone-market-home .shopone-product-card__title {
    min-height: 36px !important;
    margin: 0 0 8px !important;
}
body.shopone-market-home .shopone-product-card__note {
    margin: 0 0 8px !important;
}
body.shopone-market-home .shopone-product-card__price-wrap {
    margin-top: auto !important;
}

/* ShopOne product names: exactly two lines on ecommerce cards */
body.shopone-market-home .shopone-product-card__title,
body.shopone-market-home #section_featured .shopone-shared-product-card__body h3,
.shopone-shared-product-card__body h3,
.shopone-catalog-card__body h3 {
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: normal !important;
    line-height: 1.35 !important;
    min-height: 36px !important;
    max-height: 36px !important;
    height: 36px !important;
}
body.shopone-market-home .shopone-product-card__title a,
.shopone-shared-product-card__body h3 a,
.shopone-catalog-card__body h3 a {
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: normal !important;
}

/* ShopOne product names: exactly two lines on ecommerce cards */
body.shopone-market-home .shopone-product-card__title,
body.shopone-market-home #section_featured .shopone-shared-product-card__body h3,
.shopone-shared-product-card__body h3,
.shopone-catalog-card__body h3 {
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: normal !important;
    line-height: 1.35 !important;
    min-height: 36px !important;
    max-height: 36px !important;
    height: 36px !important;
}
body.shopone-market-home .shopone-product-card__title a,
.shopone-shared-product-card__body h3 a,
.shopone-catalog-card__body h3 a {
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: normal !important;
}

/* ShopOne final clamp: no third-line sliver on JS product rails */
body.shopone-market-home .shopone-product-card__title {
    display: block !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: normal !important;
    line-height: 15px !important;
    height: 30px !important;
    max-height: 30px !important;
    min-height: 30px !important;
    padding: 0 !important;
    margin: 0 0 8px !important;
}

/* ShopOne home cards: larger product photos for easier browsing */
body.shopone-market-home .shopone-product-grid,
body.shopone-market-home #section_featured .shopone-flash-grid,
body.shopone-market-home .shopone-flash-clone .shopone-flash-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
    gap: 16px !important;
}

body.shopone-market-home .shopone-product-card {
    padding: 10px 10px 12px !important;
}

body.shopone-market-home .shopone-product-card__thumb {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 1 / 1 !important;
    padding: 5px !important;
    margin: 6px 0 10px !important;
}

body.shopone-market-home .shopone-product-card__thumb img,
body.shopone-market-home .shopone-flash-clone .shopone-shared-product-card__media img,
body.shopone-market-home #section_featured .shopone-shared-product-card__media img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
}

body.shopone-market-home .shopone-flash-clone .shopone-shared-product-card__media,
body.shopone-market-home #section_featured .shopone-shared-product-card__media {
    aspect-ratio: 1 / 1 !important;
    padding: 6px !important;
}

@media (max-width: 1199.98px) {
    body.shopone-market-home .shopone-product-grid,
    body.shopone-market-home #section_featured .shopone-flash-grid,
    body.shopone-market-home .shopone-flash-clone .shopone-flash-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 991.98px) {
    body.shopone-market-home .shopone-product-grid,
    body.shopone-market-home #section_featured .shopone-flash-grid,
    body.shopone-market-home .shopone-flash-clone .shopone-flash-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        gap: 12px !important;
    }
}

@media (max-width: 575.98px) {
    body.shopone-market-home .shopone-product-grid,
    body.shopone-market-home #section_featured .shopone-flash-grid,
    body.shopone-market-home .shopone-flash-clone .shopone-flash-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 10px !important;
    }

    body.shopone-market-home .shopone-product-card {
        padding: 8px 8px 10px !important;
    }

    body.shopone-market-home .shopone-product-card__thumb,
    body.shopone-market-home .shopone-flash-clone .shopone-shared-product-card__media,
    body.shopone-market-home #section_featured .shopone-shared-product-card__media {
        padding: 4px !important;
    }
}

/* ShopOne footer benefits: six cards, mobile 3x2 */
.shopone-premium-footer__benefits {
    grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
}
@media (max-width: 767.98px) {
    .shopone-premium-footer__benefits,
    body.shopone-frontend .shopone-premium-footer__benefits {
        display: grid !important;
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        gap: 0 !important;
    }
    .shopone-premium-footer__benefit,
    body.shopone-frontend .shopone-premium-footer__benefit {
        border-left: 0 !important;
        border-top: 1px solid rgba(255,255,255,.14) !important;
    }
}

/* ShopOne footer benefits mobile: force exact 3x2 grid */
@media (max-width: 767.98px) {
    #shopone-footer .shopone-premium-footer__benefits,
    body.shopone-frontend #shopone-footer .shopone-premium-footer__benefits {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        grid-auto-flow: row !important;
        width: 100% !important;
        min-width: 0 !important;
        gap: 0 !important;
        overflow: hidden !important;
    }
    #shopone-footer .shopone-premium-footer__benefit,
    body.shopone-frontend #shopone-footer .shopone-premium-footer__benefit {
        width: 100% !important;
        min-width: 0 !important;
        max-width: none !important;
        flex: none !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: flex-start !important;
        text-align: center !important;
        padding: 12px 4px !important;
        gap: 6px !important;
        border-left: 0 !important;
        border-top: 1px solid rgba(255,255,255,.14) !important;
    }
    #shopone-footer .shopone-premium-footer__benefit-icon {
        margin: 0 !important;
    }
    #shopone-footer .shopone-premium-footer__benefit-copy {
        min-width: 0 !important;
        width: 100% !important;
        text-align: center !important;
    }
    #shopone-footer .shopone-premium-footer__benefit-copy strong,
    #shopone-footer .shopone-premium-footer__benefit-copy span {
        display: block !important;
        width: 100% !important;
        white-space: normal !important;
        line-height: 1.2 !important;
    }
    #shopone-footer .shopone-premium-footer__benefit-copy strong {
        font-size: 10px !important;
    }
    #shopone-footer .shopone-premium-footer__benefit-copy span {
        font-size: 9px !important;
    }
}

/* ShopOne footer benefits: force 3 columns on all mobile/tablet widths */
@media (max-width: 991.98px) {
    #shopone-footer .shopone-premium-footer__benefits,
    body.shopone-frontend #shopone-footer .shopone-premium-footer__benefits {
        display: grid !important;
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        grid-template-rows: repeat(2, auto) !important;
        grid-auto-flow: row !important;
        gap: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
    }
    #shopone-footer .shopone-premium-footer__benefit,
    body.shopone-frontend #shopone-footer .shopone-premium-footer__benefit {
        width: auto !important;
        min-width: 0 !important;
        max-width: 100% !important;
        flex: 0 0 auto !important;
        box-sizing: border-box !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        padding: 10px 3px !important;
        gap: 5px !important;
    }
}

/* ShopOne footer benefits: never let the 6th mobile item span full row */
@media (max-width: 991.98px) {
    #shopone-footer .shopone-premium-footer__benefit:last-child,
    body.shopone-frontend #shopone-footer .shopone-premium-footer__benefit:last-child,
    body.shopone-frontend .shopone-premium-footer__benefit:last-child {
        grid-column: auto !important;
        width: auto !important;
        max-width: 100% !important;
    }
    #shopone-footer .shopone-premium-footer__benefit:nth-child(4),
    #shopone-footer .shopone-premium-footer__benefit:nth-child(5),
    #shopone-footer .shopone-premium-footer__benefit:nth-child(6) {
        grid-row: 2 !important;
    }
    #shopone-footer .shopone-premium-footer__benefit:nth-child(4) { grid-column: 1 !important; }
    #shopone-footer .shopone-premium-footer__benefit:nth-child(5) { grid-column: 2 !important; }
    #shopone-footer .shopone-premium-footer__benefit:nth-child(6) { grid-column: 3 !important; }
}
