.qop-wrapper {
    width: 100%;
    font-family: inherit;
    --qop-border: #eadfd8;
    --qop-soft: #fffaf7;
    --qop-text: #1f130d;
}

.qop-smart-search-wrap {
    position: sticky;
    top: 0;
    z-index: 50;
    width: 50%;
    max-width: 760px;
    margin: 0 auto 16px;
    background: #ffffff;
    padding: 10px 0 0;
}

.qop-search-icon {
    position: absolute;
    left: 18px;
    top: 27px;
    width: 24px;
    height: 24px;
    color: #777;
    font-size: 26px;
    line-height: 20px;
    transform: rotate(-15deg);
    pointer-events: none;
}

.qop-search {
    width: 100%;
    height: 54px;
    border: 1px solid #ded7d1;
    border-radius: 14px;
    background: #ffffff;
    padding: 0 18px 0 52px;
    outline: none;
    font-size: 16px;
    color: var(--qop-text);
    box-shadow: 0 8px 18px rgba(31, 19, 13, 0.03);
}

.qop-search:focus {
    border-color: var(--qop-primary);
    box-shadow: 0 0 0 3px rgba(127, 0, 8, 0.08);
}

.qop-search-results {
    position: absolute;
    left: 0;
    right: 0;
    top: 74px;
    z-index: 80;
    display: none;
    max-height: 430px;
    overflow-y: auto;
    background: #ffffff;
    border: 1px solid var(--qop-border);
    border-radius: 22px;
    box-shadow: 0 22px 50px rgba(31, 19, 13, 0.16);
}

.qop-search-results.qop-open {
    display: block;
}

.qop-search-result-item {
    display: grid;
    grid-template-columns: 66px 1fr;
    align-items: center;
    width: 100%;
    gap: 14px;
    border: 0;
    border-bottom: 1px solid var(--qop-border);
    background: #ffffff;
    padding: 16px;
    text-align: left;
    cursor: pointer;
}

.qop-search-result-item:hover {
    background: var(--qop-soft);
}

.qop-search-result-item:last-child {
    border-bottom: 0;
}

.qop-search-thumb {
    width: 66px;
    height: 66px;
    border-radius: 14px;
    overflow: hidden;
    background: #f3eee9;
}

.qop-search-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.qop-search-result-text strong {
    display: block;
    margin-bottom: 8px;
    color: var(--qop-primary);
    font-size: 19px;
    font-weight: 800;
}

.qop-search-result-text small {
    color: #777;
    font-size: 15px;
}

.qop-search-empty {
    padding: 18px;
    color: #777;
}

.qop-filter-panel {
    position: sticky;
    top: 74px;
    z-index: 40;
    margin: 0 0 22px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid var(--qop-border);
    border-radius: 8px;
    box-shadow: 0 12px 30px rgba(31, 19, 13, 0.07);
    backdrop-filter: blur(12px);
}

.qop-filter-scroll {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.qop-filter-btn {
    min-height: 44px;
    border: 1px solid var(--qop-border);
    background: #ffffff;
    color: #2f2520;
    border-radius: 12px;
    padding: 0 22px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.qop-filter-btn:hover {
    transform: translateY(-1px);
    border-color: var(--qop-primary);
}

.qop-filter-btn.qop-active {
    background: var(--qop-primary);
    color: #ffffff;
    border-color: var(--qop-primary);
}

.qop-grid {
    display: grid;
    gap: 18px;
}

.qop-columns-1 { grid-template-columns: 1fr; }
.qop-columns-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.qop-columns-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.qop-columns-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.qop-columns-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }

.qop-product-card {
    overflow: hidden;
    border: 1px solid #eef0f3;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.07);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.qop-product-card:hover,
.qop-product-card.qop-highlight-card {
    transform: translateY(-2px);
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.12);
}

.qop-product-image {
    aspect-ratio: 4 / 3;
    background: #f3f4f6;
    overflow: hidden;
}

.qop-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.qop-placeholder-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    font-weight: 700;
}

.qop-product-body {
    padding: 16px;
}

.qop-product-body h3 {
    margin: 0 0 8px;
    font-size: 18px;
    line-height: 1.25;
    color: var(--qop-primary);
}

.qop-product-excerpt {
    font-size: 14px;
    color: #6b7280;
    min-height: 20px;
}

.qop-product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 14px;
}

.qop-price {
    font-weight: 800;
    color: var(--qop-primary);
}

.qop-price-hidden {
    color: #6b7280;
}

.qop-add-btn,
.qop-submit-order {
    background: var(--qop-accent);
    color: #ffffff;
    border: 0;
    border-radius: 999px;
    padding: 10px 16px;
    cursor: pointer;
    font-weight: 800;
}

.qop-out-stock {
    background: #fee2e2;
    color: #991b1b;
    border-radius: 999px;
    padding: 8px 12px;
    font-weight: 700;
}

.qop-floating-cart {
    position: fixed;
    left: var(--qop-floating-offset-x, 42px);
    bottom: var(--qop-floating-offset-y, 34px);
    z-index: 9998;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-width: 112px;
    height: 70px;
    border: 0;
    border-radius: 999px;
    padding: 0 18px 0 26px;
    background: #fb5200;
    color: #ffffff;
    box-shadow: 0 24px 55px rgba(251, 82, 0, 0.28);
    cursor: pointer;
    font-weight: 900;
}


.qop-floating-cart.qop-floating-pos-bottom-left {
    left: var(--qop-floating-offset-x, 42px);
    right: auto;
    top: auto;
    bottom: var(--qop-floating-offset-y, 34px);
}

.qop-floating-cart.qop-floating-pos-bottom-right {
    left: auto;
    right: var(--qop-floating-offset-x, 42px);
    top: auto;
    bottom: var(--qop-floating-offset-y, 34px);
}

.qop-floating-cart.qop-floating-pos-top-left {
    left: var(--qop-floating-offset-x, 42px);
    right: auto;
    top: var(--qop-floating-offset-y, 34px);
    bottom: auto;
}

.qop-floating-cart.qop-floating-pos-top-right {
    left: auto;
    right: var(--qop-floating-offset-x, 42px);
    top: var(--qop-floating-offset-y, 34px);
    bottom: auto;
}

@media (max-width: 1024px) {
    .qop-floating-cart.qop-floating-pos-bottom-left {
        left: var(--qop-floating-offset-x-tablet, var(--qop-floating-offset-x, 42px));
        bottom: var(--qop-floating-offset-y-tablet, var(--qop-floating-offset-y, 34px));
    }

    .qop-floating-cart.qop-floating-pos-bottom-right {
        right: var(--qop-floating-offset-x-tablet, var(--qop-floating-offset-x, 42px));
        bottom: var(--qop-floating-offset-y-tablet, var(--qop-floating-offset-y, 34px));
    }

    .qop-floating-cart.qop-floating-pos-top-left {
        left: var(--qop-floating-offset-x-tablet, var(--qop-floating-offset-x, 42px));
        top: var(--qop-floating-offset-y-tablet, var(--qop-floating-offset-y, 34px));
    }

    .qop-floating-cart.qop-floating-pos-top-right {
        right: var(--qop-floating-offset-x-tablet, var(--qop-floating-offset-x, 42px));
        top: var(--qop-floating-offset-y-tablet, var(--qop-floating-offset-y, 34px));
    }
}

@media (max-width: 767px) {
    .qop-floating-cart.qop-floating-pos-bottom-left {
        left: var(--qop-floating-offset-x-mobile, var(--qop-floating-offset-x-tablet, 22px));
        bottom: var(--qop-floating-offset-y-mobile, var(--qop-floating-offset-y-tablet, 22px));
    }

    .qop-floating-cart.qop-floating-pos-bottom-right {
        right: var(--qop-floating-offset-x-mobile, var(--qop-floating-offset-x-tablet, 22px));
        bottom: var(--qop-floating-offset-y-mobile, var(--qop-floating-offset-y-tablet, 22px));
    }

    .qop-floating-cart.qop-floating-pos-top-left {
        left: var(--qop-floating-offset-x-mobile, var(--qop-floating-offset-x-tablet, 22px));
        top: var(--qop-floating-offset-y-mobile, var(--qop-floating-offset-y-tablet, 22px));
    }

    .qop-floating-cart.qop-floating-pos-top-right {
        right: var(--qop-floating-offset-x-mobile, var(--qop-floating-offset-x-tablet, 22px));
        top: var(--qop-floating-offset-y-mobile, var(--qop-floating-offset-y-tablet, 22px));
    }
}

.qop-floating-cart-icon {
    font-size: var(--qop-floating-icon-size, 21px);
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.qop-floating-cart-icon i,
.qop-floating-cart-icon svg {
    font-size: inherit;
    width: 1em;
    height: 1em;
    display: block;
}

@media (max-width: 1024px) {
    .qop-floating-cart-icon {
        font-size: var(--qop-floating-icon-size-tablet, var(--qop-floating-icon-size, 21px));
    }
}

@media (max-width: 767px) {
    .qop-floating-cart-icon {
        font-size: var(--qop-floating-icon-size-mobile, var(--qop-floating-icon-size-tablet, var(--qop-floating-icon-size, 21px)));
    }
}

.qop-cart-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #790006;
    color: #ffffff;
    font-size: 16px;
    font-weight: 900;
}

.qop-cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.45);
    z-index: 9997;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.qop-cart-overlay.qop-open {
    opacity: 1;
    pointer-events: auto;
}

.qop-cart-sidebar {
    position: fixed;
    top: 0;
    right: -540px;
    width: 520px;
    max-width: 94vw;
    height: 100vh;
    background: #ffffff;
    z-index: 9999;
    box-shadow: -10px 0 30px rgba(15, 23, 42, 0.2);
    transition: right 0.25s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.qop-cart-sidebar.qop-open {
    right: 0;
}

.qop-cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 0 0 auto;
    padding: 32px 48px 26px;
    border-bottom: 1px solid var(--qop-border);
}

.qop-cart-header h3 {
    margin: 0;
    color: var(--qop-text);
    font-size: 42px;
    line-height: 1.05;
    font-weight: 900;
}

.qop-cart-close {
    border: 1px solid var(--qop-border);
    background: #ffffff;
    width: 56px;
    height: 56px;
    border-radius: 999px;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    color: var(--qop-primary);
}

.qop-cart-content {
    flex: 1 1 auto;
    overflow-y: auto;
    padding: 24px 48px;
}

.qop-delivery-card {
    border: 1px solid var(--qop-border);
    background: #fffdfb;
    border-radius: 24px;
    padding: 24px 20px;
    margin-bottom: 18px;
}

.qop-delivery-card h4 {
    margin: 0 0 18px;
    color: var(--qop-text);
    font-size: 18px;
    font-weight: 800;
}

.qop-delivery-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 190px;
    height: 64px;
    border-radius: 999px;
    background: var(--qop-primary);
    color: #ffffff;
    font-size: 18px;
    font-weight: 900;
}

.qop-delivery-note {
    margin: 14px 0 0;
    color: #6b625c;
    font-size: 14px;
}

.qop-empty-cart {
    padding: 16px;
    color: #6b7280;
    background: #f9fafb;
    border-radius: 16px;
    margin-bottom: 14px;
}

.qop-cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    border: 1px solid var(--qop-border);
    border-radius: 18px;
    padding: 14px;
    margin-bottom: 12px;
    background: #ffffff;
}

.qop-cart-item-info strong {
    display: block;
    color: var(--qop-primary);
    margin-bottom: 5px;
}

.qop-cart-item-info span {
    color: #6b7280;
}

.qop-cart-qty {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--qop-border);
    border-radius: 999px;
    padding: 5px;
}

.qop-cart-qty button {
    width: 30px;
    height: 30px;
    border-radius: 999px;
    border: 0;
    background: #f6f0ed;
    color: var(--qop-primary);
    cursor: pointer;
    font-weight: 900;
}

.qop-cart-qty-number {
    min-width: 20px;
    text-align: center;
    font-weight: 800;
}

.qop-order-form {
    display: grid;
    gap: 12px;
}

.qop-order-form input,
.qop-order-form textarea {
    width: 100%;
    border: 1px solid var(--qop-border);
    border-radius: 16px;
    padding: 14px 16px;
    outline: none;
    font-size: 15px;
    background: #ffffff;
}

.qop-order-form textarea {
    min-height: 96px;
    resize: vertical;
}

.qop-order-form input:focus,
.qop-order-form textarea:focus {
    border-color: var(--qop-primary);
    box-shadow: 0 0 0 3px rgba(127, 0, 8, 0.08);
}

.qop-cart-footer {
    flex: 0 0 auto;
    padding: 26px 48px 32px;
    border-top: 1px solid var(--qop-border);
    background: #ffffff;
}

.qop-cart-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    color: var(--qop-text);
    font-size: 26px;
}

.qop-cart-total-row strong {
    font-size: 26px;
    color: var(--qop-text);
}

.qop-submit-order {
    width: 100%;
    min-height: 64px;
    background: #147c25;
    font-size: 20px;
}

.qop-submit-order:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}

.qop-form-message {
    min-height: 20px;
    font-size: 14px;
    font-weight: 700;
}

.qop-error { color: #b91c1c; }
.qop-success { color: #15803d; }


@media (min-width: 769px) and (max-width: 1024px) {
    .qop-smart-search-wrap {
        width: 70%;
        max-width: 700px;
    }
}

@media (max-width: 768px) {
    .qop-columns-2,
    .qop-columns-3,
    .qop-columns-4,
    .qop-columns-5 {
        grid-template-columns: 1fr;
    }

    .qop-smart-search-wrap {
        top: 0;
        width: 100%;
        max-width: none;
    }

    .qop-filter-panel {
        top: 74px;
        padding: 10px;
    }

    .qop-filter-scroll {
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 4px;
    }

    .qop-filter-btn {
        flex: 0 0 auto;
        padding: 0 18px;
    }

    .qop-floating-cart {
        left: 16px;
        bottom: 18px;
        height: 62px;
        min-width: 102px;
    }

    .qop-cart-sidebar {
        width: 100vw;
        max-width: 100vw;
        right: -100vw;
    }

    .qop-cart-header {
        padding: 24px 24px 18px;
    }

    .qop-cart-header h3 {
        font-size: 34px;
    }

    .qop-cart-content {
        padding: 20px 24px;
    }

    .qop-cart-footer {
        padding: 20px 24px 24px;
    }
}

.qop-dynamic-grid {
    grid-template-columns: repeat(var(--qop-columns-desktop, 3), minmax(0, 1fr));
}

.qop-clickable-card {
    cursor: pointer;
}

.qop-clickable-card:focus-visible {
    outline: 3px solid rgba(127, 0, 8, 0.22);
    outline-offset: 3px;
}

.qop-add-btn {
    white-space: nowrap;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
}

.qop-add-btn:hover {
    transform: translateY(-1px);
}

@media (max-width: 1024px) {
    .qop-dynamic-grid {
        grid-template-columns: repeat(var(--qop-columns-tablet, 2), minmax(0, 1fr));
    }
}


@media (min-width: 769px) and (max-width: 1024px) {
    .qop-smart-search-wrap {
        width: 70%;
        max-width: 700px;
    }
}

@media (max-width: 768px) {
    .qop-dynamic-grid {
        grid-template-columns: repeat(var(--qop-columns-mobile, 1), minmax(0, 1fr));
    }

    .qop-product-footer {
        align-items: stretch;
        flex-direction: column;
    }

    .qop-add-btn {
        width: 100%;
    }
}

.qop-card-qty {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    min-width: 174px;
    height: 50px;
    padding: 5px;
    border: 6px solid #f0e7e2;
    border-radius: 999px;
    background: #ffffff;
    box-shadow: 0 8px 18px rgba(31, 19, 13, 0.06);
}

.qop-card-qty button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 74px;
    height: 38px;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    font-size: 19px;
    line-height: 1;
    font-weight: 900;
    transition: transform 0.18s ease, opacity 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.qop-card-qty button:hover {
    transform: translateY(-1px);
}

.qop-card-qty-minus {
    background: #ffffff;
    color: var(--qop-primary);
}

.qop-card-qty-plus {
    background: #fb5200;
    color: #ffffff;
}

.qop-card-qty-number {
    min-width: 26px;
    text-align: center;
    color: var(--qop-text);
    font-size: 17px;
    font-weight: 900;
}

.qop-card-qty:not(.qop-has-items) .qop-card-qty-minus {
    opacity: 0.45;
}


@media (min-width: 769px) and (max-width: 1024px) {
    .qop-smart-search-wrap {
        width: 70%;
        max-width: 700px;
    }
}

@media (max-width: 768px) {
    .qop-card-qty {
        width: 100%;
        min-width: 0;
    }

    .qop-card-qty button {
        width: 44%;
    }
}

.qop-floating-cart,
body .qop-floating-cart.qop-floating-cart-ready {
    display: inline-flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
}

.elementor-widget-qop_products_grid .qop-floating-cart,
.elementor .qop-floating-cart {
    display: inline-flex !important;
}

/* QuickOrder Pro V10 UI fixes */
.qop-product-footer {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
}

.qop-price {
    white-space: nowrap;
    font-size: 18px;
    line-height: 1.15;
}

.qop-card-qty {
    min-width: 158px;
    width: 158px;
    height: 48px;
    gap: 6px;
    padding: 4px;
    border: 5px solid #f0e7e2;
    box-shadow: none;
    flex: 0 0 auto;
}

.qop-card-qty button {
    width: 56px;
    height: 34px;
    font-size: 18px;
}

.qop-card-qty-number {
    min-width: 24px;
    font-size: 16px;
}

.qop-card-qty-minus {
    background: #ffffff;
    color: var(--qop-primary);
}

.qop-card-qty-plus {
    background: #fb5200;
    color: #ffffff;
}

body .qop-cart-sidebar {
    --qop-primary: #790006;
    --qop-text: #20130d;
    --qop-accent: #147c25;
    width: 500px;
    right: -520px;
    border-left: 1px solid #efe5df;
    background: #ffffff;
}

body .qop-cart-header {
    padding: 28px 36px 20px;
    border-bottom: 1px solid #efe5df;
}

body .qop-cart-header h3 {
    max-width: 330px;
    color: #20130d;
    font-size: 34px;
    line-height: 1.05;
    letter-spacing: -0.02em;
    text-transform: none;
}

body .qop-cart-close {
    width: 48px;
    height: 48px;
    border: 1px solid #eadfd8;
    background: #ffffff;
    color: #790006;
    font-size: 22px;
    box-shadow: 0 8px 20px rgba(31, 19, 13, 0.06);
}

body .qop-cart-content {
    padding: 22px 36px 18px;
    background: #ffffff;
}

body .qop-delivery-card {
    display: none;
}

body .qop-empty-cart {
    padding: 18px;
    border: 1px dashed #eadfd8;
    background: #fffaf7;
    color: #6b625c;
}

body .qop-cart-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
    padding: 16px;
    border: 1px solid #eadfd8;
    border-radius: 20px;
    background: #fffdfb;
}

body .qop-cart-item-info strong {
    margin-bottom: 7px;
    color: #790006;
    font-size: 16px;
    line-height: 1.25;
}

body .qop-cart-item-info span {
    color: #6b625c;
    font-size: 14px;
    font-weight: 700;
}

body .qop-cart-qty {
    gap: 6px;
    padding: 4px;
    border: 5px solid #f0e7e2;
    background: #ffffff;
}

body .qop-cart-qty button {
    width: 42px;
    height: 32px;
    background: #ffffff;
    color: #790006;
    font-size: 17px;
}

body .qop-cart-qty .qop-qty-plus {
    background: #fb5200;
    color: #ffffff;
}

body .qop-cart-qty-number {
    min-width: 24px;
    color: #20130d;
    font-size: 15px;
}

body .qop-order-form {
    gap: 12px;
    margin-top: 16px;
}

body .qop-order-form input,
body .qop-order-form textarea {
    min-height: 52px;
    border: 1px solid #eadfd8;
    border-radius: 16px;
    color: #20130d;
    background: #ffffff;
}

body .qop-order-form input::placeholder,
body .qop-order-form textarea::placeholder {
    color: #9b918b;
    opacity: 1;
}

body .qop-cart-footer {
    padding: 20px 36px 28px;
    border-top: 1px solid #efe5df;
    background: #ffffff;
}

body .qop-cart-total-row {
    margin-bottom: 18px;
    color: #20130d;
    font-size: 24px;
}

body .qop-cart-total-row strong {
    color: #20130d;
    font-size: 24px;
}

body .qop-submit-order {
    min-height: 58px;
    border-radius: 999px;
    background: #147c25;
    color: #ffffff;
    font-size: 18px;
    font-weight: 900;
}


@media (min-width: 769px) and (max-width: 1024px) {
    .qop-smart-search-wrap {
        width: 70%;
        max-width: 700px;
    }
}

@media (max-width: 768px) {
    .qop-product-footer {
        grid-template-columns: 1fr;
        align-items: stretch;
    }

    .qop-card-qty {
        width: 100%;
        min-width: 0;
    }

    .qop-card-qty button {
        width: 42%;
    }

    body .qop-cart-sidebar {
        width: 100vw;
        max-width: 100vw;
        right: -100vw;
    }

    body .qop-cart-header {
        padding: 22px 22px 16px;
    }

    body .qop-cart-header h3 {
        font-size: 30px;
    }

    body .qop-cart-content {
        padding: 18px 22px;
    }

    body .qop-cart-footer {
        padding: 18px 22px 24px;
    }
}

/* QuickOrder Header Actions Widget */
.qop-header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 22px;
    width: 100%;
}

.qop-header-action {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #07111f;
    cursor: pointer;
    text-decoration: none;
    line-height: 1;
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.qop-header-action:hover,
.qop-header-action:focus {
    color: #fb5200;
    transform: translateY(-1px);
    outline: none;
}

.qop-header-action svg {
    width: 28px;
    height: 28px;
    display: block;
}

.qop-header-cart-count {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 22px;
    height: 22px;
    padding: 0 5px;
    border: 2px solid #fb5200;
    border-radius: 999px;
    background: #ffffff;
    color: #07111f;
    font-size: 12px;
    font-weight: 900;
    line-height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.qop-header-tooltip {
    position: absolute;
    left: 50%;
    top: calc(100% + 10px);
    transform: translateX(-50%) translateY(-4px);
    background: #07111f;
    color: #ffffff;
    border-radius: 5px;
    padding: 6px 10px;
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
    z-index: 99999;
}

.qop-header-tooltip::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 100%;
    transform: translateX(-50%);
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #07111f;
}

.qop-header-action:hover .qop-header-tooltip,
.qop-header-action:focus .qop-header-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

@media (max-width: 767px) {
    .qop-header-actions {
        gap: 14px;
    }

    .qop-header-action {
        width: 38px;
        height: 38px;
    }

    .qop-header-action svg {
        width: 25px;
        height: 25px;
    }
}

/* QuickOrder Pro V12 checkout/sidebar and quantity UI fixes */
.qop-product-footer {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
}

.qop-price {
    display: inline-block;
    min-width: 0;
    white-space: nowrap;
    line-height: 1.2;
}

.qop-card-qty {
    width: 154px;
    min-width: 154px;
    height: 48px;
    padding: 4px;
    gap: 6px;
    border: 5px solid #f0e8e4;
    flex: 0 0 auto;
}

.qop-card-qty button {
    width: 50px;
    height: 36px;
    font-size: 18px;
}

.qop-card-qty-number {
    min-width: 24px;
    font-size: 16px;
}

.qop-cart-sidebar {
    background: #fffdfb;
}

.qop-cart-header {
    padding: 28px 40px 22px;
    background: #ffffff;
}

.qop-cart-header h3 {
    font-size: 36px;
    line-height: 1.05;
    color: var(--qop-text);
    text-transform: none;
}

.qop-cart-content {
    padding: 24px 36px;
}

.qop-delivery-card {
    display: none !important;
}

.qop-cart-item {
    display: grid;
    grid-template-columns: 78px minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
    padding: 12px;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 10px 28px rgba(31, 19, 13, 0.06);
}

.qop-cart-item-image {
    width: 78px;
    height: 78px;
    border-radius: 16px;
    overflow: hidden;
    background: #f3f0ed;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8a817b;
    font-size: 11px;
    font-weight: 800;
}

.qop-cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.qop-cart-item-info {
    min-width: 0;
}

.qop-cart-item-info strong {
    margin-bottom: 6px;
    font-size: 16px;
    line-height: 1.25;
    color: var(--qop-primary);
}

.qop-cart-item-info span {
    display: block;
    color: #5f6b7a;
    font-weight: 700;
    white-space: nowrap;
}

.qop-cart-qty {
    width: 152px;
    height: 48px;
    justify-content: space-between;
    gap: 6px;
    padding: 4px;
    border: 5px solid #f0e8e4;
    background: #ffffff;
}

.qop-cart-qty button {
    width: 48px;
    height: 36px;
    background: #ffffff;
    color: var(--qop-primary);
    font-size: 18px;
}

.qop-cart-qty .qop-qty-plus {
    background: #fb5200;
    color: #ffffff;
}

.qop-cart-qty-number {
    min-width: 24px;
    font-size: 16px;
    color: var(--qop-text);
}

.qop-order-form {
    margin-top: 22px;
}

.qop-order-form input,
.qop-order-form textarea {
    background: #ffffff;
    color: var(--qop-text);
}

.qop-cart-footer {
    padding: 22px 36px 28px;
    background: #ffffff;
}

.qop-cart-total-row span,
.qop-cart-total-row strong {
    color: var(--qop-primary);
}


@media (min-width: 769px) and (max-width: 1024px) {
    .qop-smart-search-wrap {
        width: 70%;
        max-width: 700px;
    }
}

@media (max-width: 768px) {
    .qop-product-footer {
        grid-template-columns: 1fr;
    }

    .qop-card-qty {
        width: 100%;
        min-width: 0;
    }

    .qop-card-qty button {
        width: 42%;
    }

    .qop-cart-header {
        padding: 24px 22px 18px;
    }

    .qop-cart-header h3 {
        font-size: 30px;
    }

    .qop-cart-content {
        padding: 20px 18px;
    }

    .qop-cart-item {
        grid-template-columns: 64px minmax(0, 1fr);
        gap: 12px;
    }

    .qop-cart-item-image {
        width: 64px;
        height: 64px;
    }

    .qop-cart-qty {
        grid-column: 1 / -1;
        width: 100%;
        margin-top: 4px;
    }

    .qop-cart-qty button {
        width: 42%;
    }

    .qop-cart-footer {
        padding: 18px;
    }
}

/* QuickOrder Pro V15 wishlist and Elementor style reliability fixes */
.qop-product-card {
    position: relative;
}

.qop-product-image {
    position: relative;
}

.qop-wishlist-btn {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 8;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 999px;
    background: #ffffff;
    color: var(--qop-primary);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
    cursor: pointer;
    transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.qop-wishlist-btn:hover,
.qop-wishlist-btn.qop-wishlist-active {
    transform: translateY(-1px) scale(1.03);
    background: var(--qop-primary);
    color: #ffffff;
    box-shadow: 0 14px 28px rgba(127, 0, 6, 0.22);
}

.qop-wishlist-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    line-height: 1;
    font-weight: 900;
}

.qop-card-qty,
.qop-card-qty button,
.qop-card-qty-number,
.qop-filter-btn,
.qop-product-card,
.qop-product-body h3,
.qop-product-excerpt,
.qop-price,
.qop-search,
.qop-filter-panel,
.qop-floating-cart,
.qop-cart-count,
.qop-floating-cart-icon,
.qop-submit-order {
    -webkit-tap-highlight-color: transparent;
}

.elementor-widget-qop_products_grid .qop-card-qty-plus,
.elementor-widget-qop_products_grid .qop-card-qty-minus {
    transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

/* QuickOrder Pro V17 wishlist page and header badge */
.qop-header-wishlist-count {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 22px;
    height: 22px;
    padding: 0 5px;
    border: 2px solid #fb5200;
    border-radius: 999px;
    background: #ffffff;
    color: #07111f;
    font-size: 12px;
    font-weight: 900;
    line-height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.qop-wishlist-page {
    width: 100%;
    color: #07111f;
}

.qop-wishlist-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
}

.qop-wishlist-header h2 {
    margin: 0;
    color: var(--qop-primary, #800008);
    font-size: clamp(28px, 4vw, 46px);
    font-weight: 900;
    line-height: 1.05;
}

.qop-wishlist-total {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #6b7280;
    font-size: 14px;
    font-weight: 800;
}

.qop-wishlist-total .qop-header-wishlist-count {
    position: static;
    border-color: var(--qop-accent, #fb5200);
}

.qop-wishlist-empty {
    display: none;
    padding: 28px;
    border: 1px solid #efe5df;
    border-radius: 22px;
    background: #ffffff;
    color: #6b7280;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
}

.qop-wishlist-grid {
    display: grid;
    grid-template-columns: repeat(var(--qop-columns-desktop, 3), minmax(0, 1fr));
    gap: 24px;
}

.qop-wishlist-card .qop-wishlist-btn {
    color: #ffffff;
    background: var(--qop-accent, #fb5200);
}

@media (max-width: 1024px) {
    .qop-wishlist-grid {
        grid-template-columns: repeat(var(--qop-columns-tablet, 2), minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .qop-wishlist-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .qop-wishlist-grid {
        grid-template-columns: repeat(var(--qop-columns-mobile, 1), minmax(0, 1fr));
    }
}


/* QuickOrder Pro V18.3 wishlist table fix */
.qop-wishlist-table-wrap {
    display: none;
    width: 100%;
    overflow-x: auto;
    background: #ffffff;
    border: 1px solid #f1f1f1;
}

.qop-wishlist-table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    color: #222222;
    font-size: 14px;
}

.qop-wishlist-table th,
.qop-wishlist-table td {
    padding: 16px 18px;
    border-bottom: 1px solid #eeeeee;
    text-align: center;
    vertical-align: middle;
}

.qop-wishlist-table th {
    color: #6b7280;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    background: #fafafa;
}

.qop-wishlist-table tbody tr:last-child td {
    border-bottom: 0;
}

.qop-wishlist-remove-col,
.qop-wishlist-remove-cell {
    width: 80px;
}

.qop-wishlist-image-col,
.qop-wishlist-image-cell {
    width: 120px;
}

.qop-wishlist-image-cell img {
    width: 58px;
    height: 58px;
    object-fit: cover;
    border-radius: 2px;
    background: #f4f4f4;
}

.qop-wishlist-placeholder {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    background: #f4f4f4;
    color: #999999;
    font-size: 11px;
    text-decoration: none;
}

.qop-wishlist-title-cell {
    text-align: left;
}

.qop-wishlist-title-link {
    color: var(--qop-accent, #fb5200);
    font-weight: 700;
    text-decoration: none;
}

.qop-wishlist-title-link:hover {
    color: var(--qop-primary, #800008);
}

.qop-wishlist-remove-text {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 28px !important;
    height: 28px !important;
    min-width: 28px !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 50% !important;
    background: transparent !important;
    color: #222222 !important;
    font-size: 18px !important;
    font-weight: 500 !important;
    line-height: 1 !important;
    cursor: pointer;
}

.qop-wishlist-remove-text:hover {
    color: var(--qop-accent, #fb5200) !important;
    background: #fff3ee !important;
}

.qop-wishlist-table .qop-card-qty {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-width: 112px;
    height: 38px;
    border: 1px solid var(--qop-accent, #fb5200);
    border-radius: 0;
    background: #ffffff;
}

.qop-wishlist-table .qop-card-qty button {
    width: 28px;
    height: 28px;
    border: 0;
    background: transparent;
    color: #444444;
    font-size: 14px;
    cursor: pointer;
}

.qop-wishlist-table .qop-card-qty-number {
    min-width: 18px;
    color: #333333;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
}

.qop-wishlist-add-to-cart {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-width: 170px;
    min-height: 38px;
    padding: 10px 22px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: var(--qop-accent, #fb5200) !important;
    color: #ffffff !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    cursor: pointer;
}

.qop-wishlist-add-to-cart:hover {
    background: var(--qop-primary, #800008) !important;
    color: #ffffff !important;
}

@media (max-width: 767px) {
    .qop-wishlist-table {
        min-width: 760px;
    }

    .qop-wishlist-table th,
    .qop-wishlist-table td {
        padding: 12px 14px;
    }
}


/* QuickOrder Pro V18.4 forced wishlist page container */
.qop-forced-wishlist-main {
    width: 100%;
    background: #ffffff;
}

.qop-forced-wishlist-container {
    width: min(1180px, calc(100% - 32px));
    margin: 48px auto;
}


/* QuickOrder Pro V18.5 - quantity selector 50% smaller */
.qop-card-qty,
.qop-wishlist-qty-cell .qop-card-qty,
.qop-cart-qty,
.qop-floating-cart .qop-cart-qty {
    transform: scale(0.5);
    transform-origin: center center;
}

.qop-wishlist-qty-cell,
.qop-cart-qty-cell,
.qop-card-qty-wrap {
    text-align: center;
}

.qop-wishlist-qty-cell .qop-card-qty {
    margin-left: auto;
    margin-right: auto;
}


/* QuickOrder Pro V18.6 - product card quantity selector alignment and button UI */
.qop-product-footer {
    grid-template-columns: minmax(0, 1fr) auto !important;
    justify-items: stretch;
}

.qop-product-footer .qop-card-qty {
    justify-self: end !important;
    margin-left: auto !important;
    margin-right: 0 !important;
    width: 86px !important;
    min-width: 86px !important;
    max-width: 86px !important;
    height: 28px !important;
    min-height: 28px !important;
    gap: 4px !important;
    padding: 2px !important;
    border-width: 3px !important;
    transform: none !important;
    transform-origin: right center !important;
    box-sizing: border-box !important;
}

.qop-product-footer .qop-card-qty button {
    flex: 0 0 22px !important;
    width: 22px !important;
    min-width: 22px !important;
    max-width: 22px !important;
    height: 22px !important;
    min-height: 22px !important;
    max-height: 22px !important;
    padding: 0 !important;
    border-radius: 999px !important;
    font-size: 12px !important;
    line-height: 1 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-sizing: border-box !important;
}

.qop-product-footer .qop-card-qty-number {
    flex: 0 0 20px !important;
    min-width: 20px !important;
    max-width: 20px !important;
    font-size: 11px !important;
    line-height: 1 !important;
    font-weight: 800 !important;
    text-align: center !important;
}

.qop-product-footer .qop-card-qty-plus {
    overflow: visible !important;
}

@media (max-width: 768px) {
    .qop-product-footer {
        grid-template-columns: minmax(0, 1fr) auto !important;
        align-items: center !important;
    }

    .qop-product-footer .qop-card-qty {
        width: 86px !important;
        min-width: 86px !important;
        max-width: 86px !important;
        justify-self: end !important;
    }
}


/* QuickOrder Pro V18.8 - optimized sidebar product cards */
.qop-cart-sidebar .qop-cart-items {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
}

.qop-cart-sidebar .qop-cart-item {
    display: grid !important;
    grid-template-columns: 76px minmax(0, 1fr) auto !important;
    grid-template-areas:
        "image info remove"
        "image qty remove" !important;
    align-items: center !important;
    column-gap: 14px !important;
    row-gap: 8px !important;
    width: 100% !important;
    min-height: 104px !important;
    margin: 0 !important;
    padding: 14px !important;
    background: #ffffff !important;
    border: 1px solid rgba(15, 23, 42, 0.08) !important;
    border-radius: 18px !important;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06) !important;
    box-sizing: border-box !important;
}

.qop-cart-sidebar .qop-cart-item-image {
    grid-area: image !important;
    width: 76px !important;
    height: 76px !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    background: #f3f6f8 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.qop-cart-sidebar .qop-cart-item-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
}

.qop-cart-sidebar .qop-cart-item-info {
    grid-area: info !important;
    min-width: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: center !important;
    gap: 5px !important;
    text-align: left !important;
}

.qop-cart-sidebar .qop-cart-item-title,
.qop-cart-sidebar .qop-cart-item-name {
    max-width: 100% !important;
    margin: 0 !important;
    color: #111827 !important;
    font-size: 15px !important;
    line-height: 1.25 !important;
    font-weight: 800 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

.qop-cart-sidebar .qop-cart-item-price,
.qop-cart-sidebar .qop-cart-price {
    margin: 0 !important;
    color: #6b7280 !important;
    font-size: 13px !important;
    line-height: 1.2 !important;
    font-weight: 700 !important;
}

.qop-cart-sidebar .qop-cart-qty {
    grid-area: qty !important;
    justify-self: start !important;
    align-self: end !important;
    transform: none !important;
    width: 92px !important;
    min-width: 92px !important;
    max-width: 92px !important;
    height: 30px !important;
    min-height: 30px !important;
    padding: 3px !important;
    gap: 4px !important;
    border-radius: 999px !important;
    background: #fff7f3 !important;
    border: 1px solid rgba(251, 82, 0, 0.18) !important;
    box-sizing: border-box !important;
}

.qop-cart-sidebar .qop-cart-qty button,
.qop-cart-sidebar .qop-cart-qty-minus,
.qop-cart-sidebar .qop-cart-qty-plus {
    width: 24px !important;
    min-width: 24px !important;
    max-width: 24px !important;
    height: 24px !important;
    min-height: 24px !important;
    max-height: 24px !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 999px !important;
    font-size: 12px !important;
    line-height: 1 !important;
    font-weight: 800 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-sizing: border-box !important;
}

.qop-cart-sidebar .qop-cart-qty-minus {
    color: #6b7280 !important;
    background: #ffffff !important;
}

.qop-cart-sidebar .qop-cart-qty-plus {
    color: #ffffff !important;
    background: #fb5200 !important;
}

.qop-cart-sidebar .qop-cart-qty-number {
    flex: 1 1 auto !important;
    min-width: 20px !important;
    color: #111827 !important;
    font-size: 12px !important;
    line-height: 1 !important;
    font-weight: 800 !important;
    text-align: center !important;
}

.qop-cart-sidebar .qop-cart-remove {
    grid-area: remove !important;
    align-self: start !important;
    justify-self: end !important;
    width: 28px !important;
    height: 28px !important;
    min-width: 28px !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 999px !important;
    background: #f8fafc !important;
    color: #64748b !important;
    font-size: 16px !important;
    line-height: 1 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.qop-cart-sidebar .qop-cart-remove:hover {
    background: #fee2e2 !important;
    color: #dc2626 !important;
}

@media (max-width: 480px) {
    .qop-cart-sidebar .qop-cart-item {
        grid-template-columns: 64px minmax(0, 1fr) auto !important;
        column-gap: 10px !important;
        padding: 12px !important;
        min-height: 92px !important;
    }

    .qop-cart-sidebar .qop-cart-item-image {
        width: 64px !important;
        height: 64px !important;
        border-radius: 14px !important;
    }

    .qop-cart-sidebar .qop-cart-item-title,
    .qop-cart-sidebar .qop-cart-item-name {
        font-size: 14px !important;
    }
}


/* QuickOrder Pro V18.9 - align price and quantity selector on same line */
.qop-cart-sidebar .qop-cart-item {
    grid-template-areas:
        "image info remove" !important
        "image meta remove" !important;
}

.qop-cart-sidebar .qop-cart-item-info {
    gap: 10px !important;
}

.qop-cart-sidebar .qop-cart-item-info::after {
    content: '' !important;
    display: block !important;
    clear: both !important;
}

.qop-cart-sidebar .qop-cart-item-price,
.qop-cart-sidebar .qop-cart-price {
    display: inline-flex !important;
    align-items: center !important;
    margin: 0 !important;
    line-height: 1 !important;
}

.qop-cart-sidebar .qop-cart-qty {
    grid-area: meta !important;
    justify-self: end !important;
    align-self: center !important;
    margin-top: -28px !important;
}

.qop-cart-sidebar .qop-cart-item-info {
    position: relative !important;
    padding-right: 108px !important;
}

@media (max-width: 480px) {
    .qop-cart-sidebar .qop-cart-item-info {
        padding-right: 96px !important;
    }

    .qop-cart-sidebar .qop-cart-qty {
        width: 84px !important;
        min-width: 84px !important;
        max-width: 84px !important;
        margin-top: -24px !important;
    }
}


/* QuickOrder Pro V19 - sidebar remove icon */
.qop-cart-sidebar .qop-cart-item {
    position: relative !important;
}

.qop-cart-sidebar .qop-cart-remove {
    position: absolute !important;
    top: 10px !important;
    right: 10px !important;
    z-index: 5 !important;
    width: 22px !important;
    height: 22px !important;
    min-width: 22px !important;
    max-width: 22px !important;
    min-height: 22px !important;
    max-height: 22px !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 999px !important;
    background: #f3f4f6 !important;
    color: #64748b !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
}

.qop-cart-sidebar .qop-cart-remove:hover {
    background: #fee2e2 !important;
    color: #dc2626 !important;
    transform: scale(1.05) !important;
}

.qop-cart-sidebar .qop-cart-item-info {
    padding-right: 120px !important;
}


/* QuickOrder Pro V19.1 - fixed delete button position and click priority */
.qop-cart-sidebar .qop-cart-item {
    position: relative !important;
    overflow: visible !important;
}

.qop-cart-sidebar .qop-cart-remove,
.qop-cart-sidebar .qop-cart-remove-item {
    position: absolute !important;
    top: 10px !important;
    right: 10px !important;
    left: auto !important;
    bottom: auto !important;
    grid-area: unset !important;
    align-self: unset !important;
    justify-self: unset !important;
    z-index: 999 !important;
    width: 24px !important;
    height: 24px !important;
    min-width: 24px !important;
    max-width: 24px !important;
    min-height: 24px !important;
    max-height: 24px !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    border-radius: 999px !important;
    background: #f3f4f6 !important;
    color: #64748b !important;
    font-size: 14px !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    pointer-events: auto !important;
    transition: all 0.2s ease !important;
}

.qop-cart-sidebar .qop-cart-remove:hover,
.qop-cart-sidebar .qop-cart-remove-item:hover {
    background: #fee2e2 !important;
    color: #dc2626 !important;
    transform: scale(1.06) !important;
}


/* QuickOrder Pro V19.2 - prevent unnecessary product title wrapping */
.qop-cart-sidebar .qop-cart-item-info {
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
    padding-right: 0 !important;
}

.qop-cart-sidebar .qop-cart-item-title,
.qop-cart-sidebar .qop-cart-item-name {
    display: block !important;
    width: calc(100% - 40px) !important;
    max-width: calc(100% - 40px) !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
    line-break: auto !important;
}

.qop-cart-sidebar .qop-cart-item {
    grid-template-columns: 76px minmax(0, 1fr) 30px !important;
}


/* QuickOrder Pro V19.3 - global floating cart */
body .qop-floating-cart {
    z-index: 99998 !important;
}

body .qop-cart-overlay {
    z-index: 99999 !important;
}

body .qop-cart-sidebar {
    z-index: 100000 !important;
}


/* QuickOrder Pro V19.6 - make synced Elementor icon render correctly on global cart */
.qop-floating-cart .qop-floating-cart-icon i,
.qop-floating-cart .qop-floating-cart-icon svg {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.qop-floating-cart .qop-floating-cart-icon svg {
    width: var(--qop-floating-icon-size, 21px) !important;
    height: var(--qop-floating-icon-size, 21px) !important;
}


/* QuickOrder Pro V19.7 - variable product details in cart sidebar */
.qop-cart-sidebar .qop-cart-item-title,
.qop-cart-sidebar .qop-cart-item-name {
    white-space: normal !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    line-height: 1.25 !important;
}

.qop-cart-sidebar .qop-cart-item-image img {
    object-fit: cover !important;
}


/* QuickOrder Pro V19.8 - product card title and attributes */
.qop-product-card .qop-product-body h3,
.qop-product-card h3 {
    width: 100% !important;
    max-width: 100% !important;
    white-space: normal !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
    line-height: 1.25 !important;
    min-height: auto !important;
}

.qop-product-card .qop-product-excerpt {
    display: block !important;
    white-space: normal !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
    line-height: 1.35 !important;
}

/* QuickOrder Pro V19.8 - exact Elementor icon support for global floating cart */
.qop-floating-cart .qop-floating-cart-icon {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.qop-floating-cart .qop-floating-cart-icon i,
.qop-floating-cart .qop-floating-cart-icon svg {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.qop-floating-cart .qop-floating-cart-icon svg {
    width: var(--qop-floating-icon-size, 21px) !important;
    height: var(--qop-floating-icon-size, 21px) !important;
}


/* QuickOrder Pro V19.9 - variation selector on product cards */
.qop-card-variation-fields {
    display: flex !important;
    flex-direction: column !important;
    gap: 7px !important;
    margin: 10px 0 4px !important;
}

.qop-card-variation-field {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    width: 100% !important;
    margin: 0 !important;
    color: #6b7280 !important;
    font-size: 12px !important;
    line-height: 1.2 !important;
}

.qop-card-variation-field span {
    flex: 0 0 auto !important;
    font-weight: 700 !important;
    color: inherit !important;
}

.qop-card-variation-select {
    flex: 1 1 auto !important;
    min-width: 0 !important;
    height: 32px !important;
    padding: 4px 28px 4px 10px !important;
    border: 1px solid rgba(15, 23, 42, 0.14) !important;
    border-radius: 10px !important;
    background-color: #ffffff !important;
    color: #111827 !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    outline: none !important;
    box-shadow: none !important;
}

.qop-card-variation-select:focus {
    border-color: var(--qop-accent, #fb5200) !important;
}

.qop-product-card.qop-variation-unavailable {
    opacity: 0.72 !important;
}

.qop-product-card.qop-variation-unavailable .qop-card-qty {
    pointer-events: none !important;
    opacity: 0.5 !important;
}


/* QuickOrder Pro V20 - variation selector UI and hidden attributes */
.qop-product-excerpt-hidden,
.qop-product-card .qop-product-excerpt-hidden {
    display: none !important;
}

.qop-product-card select,
.qop-product-card .qop-card-variation-select,
.qop-product-card .qop-variation-select {
    border-color: rgba(15, 23, 42, 0.18) !important;
    outline: none !important;
    box-shadow: none !important;
    background-color: #ffffff !important;
    color: var(--qop-primary, #111827) !important;
}

.qop-product-card select:focus,
.qop-product-card .qop-card-variation-select:focus,
.qop-product-card .qop-variation-select:focus {
    border-color: var(--qop-primary, #111827) !important;
    outline: none !important;
    box-shadow: 0 0 0 2px rgba(17, 24, 39, 0.10) !important;
}

.qop-product-card select option,
.qop-product-card .qop-card-variation-select option,
.qop-product-card .qop-variation-select option {
    background: #ffffff !important;
    color: var(--qop-primary, #111827) !important;
}

.qop-product-card select option:checked,
.qop-product-card .qop-card-variation-select option:checked,
.qop-product-card .qop-variation-select option:checked {
    background: var(--qop-primary, #111827) !important;
    color: #ffffff !important;
}


/* QuickOrder Pro V20.1 - search icon spacing */
.qop-search-wrap,
.qop-search-container {
    position: relative !important;
}

.qop-search-wrap input,
.qop-search-container input,
.qop-search-input {
    padding-left: 48px !important;
}

.qop-search-wrap .qop-search-icon,
.qop-search-container .qop-search-icon,
.qop-search-icon {
    left: 18px !important;
}

/* QuickOrder Pro V20.2 - stronger search icon/text spacing */
.qop-smart-search-wrap {
    position: relative !important;
}

.qop-smart-search-wrap .qop-search,
.qop-search {
    padding-left: 64px !important;
}

.qop-smart-search-wrap .qop-search-icon,
.qop-search-icon {
    left: 24px !important;
    right: auto !important;
    pointer-events: none !important;
}

/* QuickOrder Pro V20.3 - filter badges and parent/child slide filters */
.qop-filter-scroll {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
}

.qop-filter-btn {
    position: relative !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    white-space: nowrap !important;
    flex: 0 0 auto !important;
}

.qop-filter-count {
    min-width: 22px !important;
    height: 22px !important;
    padding: 0 6px !important;
    border-radius: 999px !important;
    background: rgba(17, 24, 39, 0.12) !important;
    color: var(--qop-primary, #111827) !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    line-height: 22px !important;
    text-align: center !important;
}

.qop-filter-btn.qop-active .qop-filter-count,
.qop-filter-btn:hover .qop-filter-count {
    background: rgba(255, 255, 255, 0.22) !important;
    color: inherit !important;
}

.qop-filter-parent.qop-has-children::after {
    content: '›' !important;
    font-size: 18px !important;
    line-height: 1 !important;
    font-weight: 800 !important;
    transform: translateX(0) !important;
    transition: transform 0.25s ease !important;
}

.qop-filter-parent.qop-parent-open::after {
    transform: translateX(3px) rotate(90deg) !important;
}

.qop-subfilter-group {
    display: inline-flex !important;
    align-items: center !important;
    gap: 12px !important;
    max-width: 0 !important;
    opacity: 0 !important;
    overflow: hidden !important;
    transform: translateX(-18px) !important;
    pointer-events: none !important;
    transition: max-width 0.35s ease, opacity 0.25s ease, transform 0.35s ease !important;
    flex: 0 0 auto !important;
}

.qop-subfilter-group.qop-subfilter-open {
    max-width: 900px !important;
    opacity: 1 !important;
    transform: translateX(0) !important;
    pointer-events: auto !important;
}

.qop-filter-child {
    background: #ffffff !important;
}

/* QuickOrder Pro V20.4 - filter count parent sum, hover border fix, YITH wishlist */
.qop-filter-btn,
.qop-filter-btn:hover,
.qop-filter-btn:focus,
.qop-filter-btn:active {
    border: 1px solid rgba(17, 24, 39, 0.22) !important;
    box-shadow: none !important;
    outline: none !important;
}

.qop-filter-btn.qop-active,
.qop-filter-btn.qop-active:hover,
.qop-filter-btn.qop-active:focus {
    border-color: var(--qop-primary, #111827) !important;
}

.qop-yith-wishlist-wrap {
    position: absolute !important;
    top: 16px !important;
    right: 16px !important;
    z-index: 4 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.qop-yith-wishlist-wrap .yith-wcwl-add-to-wishlist {
    margin: 0 !important;
}

.qop-yith-wishlist-wrap a,
.qop-yith-wishlist-wrap button {
    width: 50px !important;
    height: 50px !important;
    min-width: 50px !important;
    border-radius: 999px !important;
    background: #ffffff !important;
    color: var(--qop-primary, #111827) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.10) !important;
    text-decoration: none !important;
    border: 0 !important;
}

.qop-yith-wishlist-wrap .feedback,
.qop-yith-wishlist-wrap .separator,
.qop-yith-wishlist-wrap .view-wishlist {
    display: none !important;
}

.qop-wishlist-btn {
    display: none !important;
}

/* QuickOrder Pro V20.5 - clean YITH wishlist heart icon only */
.qop-yith-wishlist-wrap {
    position: absolute !important;
    top: 16px !important;
    right: 16px !important;
    z-index: 20 !important;
}

.qop-yith-wishlist-wrap .yith-wcwl-add-to-wishlist {
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.qop-yith-wishlist-wrap .yith-wcwl-add-button,
.qop-yith-wishlist-wrap .yith-wcwl-wishlistaddedbrowse,
.qop-yith-wishlist-wrap .yith-wcwl-wishlistexistsbrowse {
    margin: 0 !important;
}

.qop-yith-wishlist-wrap .feedback,
.qop-yith-wishlist-wrap .separator,
.qop-yith-wishlist-wrap .view-wishlist,
.qop-yith-wishlist-wrap .yith-wcwl-add-button span,
.qop-yith-wishlist-wrap .yith-wcwl-wishlistaddedbrowse span,
.qop-yith-wishlist-wrap .yith-wcwl-wishlistexistsbrowse span {
    display: none !important;
}

.qop-yith-wishlist-wrap a {
    width: 52px !important;
    height: 52px !important;
    min-width: 52px !important;
    min-height: 52px !important;
    border-radius: 999px !important;
    background: #ffffff !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12) !important;
    text-decoration: none !important;
    overflow: hidden !important;
}

.qop-yith-wishlist-wrap i,
.qop-yith-wishlist-wrap svg {
    font-size: 26px !important;
    width: 26px !important;
    height: 26px !important;
    color: #8b0000 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.qop-yith-wishlist-wrap .yith-wcwl-icon {
    margin: 0 !important;
}

.qop-yith-wishlist-wrap img {
    display: none !important;
}


/* QuickOrder Pro V20.6 - force YITH heart icon visible */
.qop-yith-wishlist-wrap .yith-wcwl-add-to-wishlist a::before,
.qop-yith-wishlist-wrap .add_to_wishlist::before,
.qop-yith-wishlist-wrap .yith-wcwl-icon::before {
    content: "\2661" !important;
    font-size: 28px !important;
    line-height: 1 !important;
    color: #8b0000 !important;
    font-weight: 700 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.qop-yith-wishlist-wrap a {
    font-size: 0 !important;
    color: transparent !important;
}

.qop-yith-wishlist-wrap i,
.qop-yith-wishlist-wrap svg,
.qop-yith-wishlist-wrap span:not(.count) {
    display: none !important;
}

/* QuickOrder Pro V20.7 - YITH-only wishlist integration */
.qop-forced-wishlist-main,
.qop-forced-wishlist-container,
.qop-wishlist-page {
    all: unset !important;
}

.qop-yith-wishlist-wrap {
    position: absolute !important;
    top: 16px !important;
    right: 16px !important;
    z-index: 30 !important;
    width: 54px !important;
    height: 54px !important;
    overflow: hidden !important;
    border-radius: 999px !important;
}

.qop-yith-wishlist-wrap,
.qop-yith-wishlist-wrap * {
    text-indent: 0 !important;
}

.qop-yith-wishlist-wrap .yith-wcwl-add-to-wishlist,
.qop-yith-wishlist-wrap .yith-wcwl-add-button,
.qop-yith-wishlist-wrap .yith-wcwl-wishlistaddedbrowse,
.qop-yith-wishlist-wrap .yith-wcwl-wishlistexistsbrowse {
    width: 54px !important;
    height: 54px !important;
    margin: 0 !important;
    padding: 0 !important;
    display: block !important;
}

.qop-yith-wishlist-wrap a,
.qop-yith-wishlist-wrap button {
    position: relative !important;
    width: 54px !important;
    height: 54px !important;
    min-width: 54px !important;
    min-height: 54px !important;
    max-width: 54px !important;
    max-height: 54px !important;
    border-radius: 999px !important;
    background: #ffffff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12) !important;
    text-decoration: none !important;
    overflow: hidden !important;
    color: transparent !important;
    font-size: 0 !important;
    line-height: 0 !important;
}

.qop-yith-wishlist-wrap a::before,
.qop-yith-wishlist-wrap button::before {
    content: "\2661" !important;
    color: #8b0000 !important;
    font-size: 30px !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    display: block !important;
}

.qop-yith-wishlist-wrap .yith-wcwl-wishlistaddedbrowse a::before,
.qop-yith-wishlist-wrap .yith-wcwl-wishlistexistsbrowse a::before,
.qop-yith-wishlist-wrap a.delete_item::before {
    content: "\2665" !important;
}

.qop-yith-wishlist-wrap span,
.qop-yith-wishlist-wrap .feedback,
.qop-yith-wishlist-wrap .separator,
.qop-yith-wishlist-wrap .view-wishlist,
.qop-yith-wishlist-wrap i,
.qop-yith-wishlist-wrap svg,
.qop-yith-wishlist-wrap img {
    display: none !important;
}

/* QuickOrder Pro V20.8 - compact clickable sidebar cart cards */
.qop-cart-sidebar .qop-cart-items {
    gap: 10px !important;
}

.qop-cart-sidebar .qop-cart-item {
    grid-template-columns: 78px minmax(0, 1fr) 30px !important;
    grid-template-areas:
        "image info remove"
        "image meta meta" !important;
    align-items: center !important;
    column-gap: 12px !important;
    row-gap: 6px !important;
    min-height: 112px !important;
    padding: 12px 14px !important;
    cursor: pointer !important;
}

.qop-cart-sidebar .qop-cart-item:hover {
    border-color: rgba(17, 24, 39, 0.18) !important;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.09) !important;
}

.qop-cart-sidebar .qop-cart-item-image {
    width: 78px !important;
    height: 78px !important;
    border-radius: 14px !important;
}

.qop-cart-sidebar .qop-cart-item-info {
    gap: 6px !important;
    padding-right: 30px !important;
    align-self: center !important;
}

.qop-cart-sidebar .qop-cart-item-title,
.qop-cart-sidebar .qop-cart-item-name {
    font-size: 14px !important;
    line-height: 1.18 !important;
    margin: 0 !important;
    max-width: 100% !important;
    -webkit-line-clamp: 2 !important;
}

.qop-cart-sidebar .qop-cart-item-price,
.qop-cart-sidebar .qop-cart-price {
    font-size: 12px !important;
    line-height: 1.1 !important;
    margin: 0 !important;
}

.qop-cart-sidebar .qop-cart-qty {
    justify-self: end !important;
    align-self: end !important;
    margin-top: -20px !important;
    width: 90px !important;
    min-width: 90px !important;
    max-width: 90px !important;
    height: 30px !important;
}

.qop-cart-sidebar .qop-cart-remove,
.qop-cart-sidebar .qop-cart-remove-item {
    top: 10px !important;
    right: 10px !important;
}

@media (max-width: 480px) {
    .qop-cart-sidebar .qop-cart-item {
        grid-template-columns: 66px minmax(0, 1fr) 28px !important;
        min-height: 96px !important;
        padding: 10px 12px !important;
        column-gap: 10px !important;
    }

    .qop-cart-sidebar .qop-cart-item-image {
        width: 66px !important;
        height: 66px !important;
    }

    .qop-cart-sidebar .qop-cart-qty {
        width: 84px !important;
        min-width: 84px !important;
        max-width: 84px !important;
    }
}


/* QuickOrder Pro V20.9 - YITH wishlist add behavior */
.qop-yith-wishlist-wrap a.add_to_wishlist,
.qop-yith-wishlist-wrap .add_to_wishlist {
    pointer-events: auto !important;
}

.qop-yith-wishlist-wrap .yith-wcwl-wishlistaddedbrowse a,
.qop-yith-wishlist-wrap .yith-wcwl-wishlistexistsbrowse a {
    pointer-events: none !important;
    cursor: default !important;
}

.qop-yith-wishlist-wrap .yith-wcwl-wishlistaddedbrowse,
.qop-yith-wishlist-wrap .yith-wcwl-wishlistexistsbrowse {
    pointer-events: none !important;
}

.qop-yith-wishlist-wrap {
    pointer-events: auto !important;
    overflow: visible !important;
}

.qop-yith-wishlist-wrap a {
    transition: transform 0.2s ease !important;
}

.qop-yith-wishlist-wrap a:hover {
    transform: scale(1.06) !important;
}


/* QuickOrder Pro V21 - smaller YITH heart circle and filled state */
.qop-yith-wishlist-wrap {
    width: 32px !important;
    height: 32px !important;
    top: 14px !important;
    right: 14px !important;
    overflow: visible !important;
}

.qop-yith-wishlist-wrap .yith-wcwl-add-to-wishlist,
.qop-yith-wishlist-wrap .yith-wcwl-add-button,
.qop-yith-wishlist-wrap .yith-wcwl-wishlistaddedbrowse,
.qop-yith-wishlist-wrap .yith-wcwl-wishlistexistsbrowse {
    width: 32px !important;
    height: 32px !important;
}

.qop-yith-wishlist-wrap a,
.qop-yith-wishlist-wrap button {
    width: 32px !important;
    height: 32px !important;
    min-width: 32px !important;
    min-height: 32px !important;
    max-width: 32px !important;
    max-height: 32px !important;
    border-radius: 999px !important;
    background: #ffffff !important;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.12) !important;
}

.qop-yith-wishlist-wrap a::before,
.qop-yith-wishlist-wrap button::before {
    content: "\2661" !important;
    font-size: 22px !important;
    line-height: 1 !important;
    color: #8b0000 !important;
    font-weight: 900 !important;
}

.qop-yith-wishlist-wrap.qop-yith-added a::before,
.qop-yith-wishlist-wrap.qop-yith-added button::before,
.qop-yith-wishlist-wrap .yith-wcwl-wishlistaddedbrowse a::before,
.qop-yith-wishlist-wrap .yith-wcwl-wishlistexistsbrowse a::before {
    content: "\2665" !important;
    color: #8b0000 !important;
}

.qop-yith-wishlist-wrap.qop-yith-added .yith-wcwl-wishlistaddedbrowse,
.qop-yith-wishlist-wrap.qop-yith-added .yith-wcwl-wishlistexistsbrowse {
    pointer-events: auto !important;
}

.qop-yith-wishlist-wrap.qop-yith-added .yith-wcwl-wishlistaddedbrowse a,
.qop-yith-wishlist-wrap.qop-yith-added .yith-wcwl-wishlistexistsbrowse a {
    pointer-events: auto !important;
    cursor: pointer !important;
}


/* QuickOrder Pro V21.1 - YITH heart click must add/remove, never open wishlist page */
.qop-yith-wishlist-wrap,
.qop-yith-wishlist-wrap * {
    cursor: pointer !important;
}

.qop-yith-wishlist-wrap .view-wishlist,
.qop-yith-wishlist-wrap .separator,
.qop-yith-wishlist-wrap .feedback {
    display: none !important;
    pointer-events: none !important;
}

.qop-yith-wishlist-wrap a[href*="wishlist"]:not(.add_to_wishlist):not(.delete_item),
.qop-yith-wishlist-wrap .yith-wcwl-wishlistaddedbrowse a:not(.delete_item),
.qop-yith-wishlist-wrap .yith-wcwl-wishlistexistsbrowse a:not(.delete_item) {
    pointer-events: none !important;
}

.qop-yith-wishlist-wrap.qop-yith-added a::before,
.qop-yith-wishlist-wrap.qop-yith-added button::before {
    content: "\2665" !important;
}

.qop-yith-wishlist-wrap:not(.qop-yith-added) a::before,
.qop-yith-wishlist-wrap:not(.qop-yith-added) button::before {
    content: "\2661" !important;
}


/* QuickOrder Pro V21.2 - AJAX YITH add/remove visual states */
.qop-yith-wishlist-wrap.qop-yith-loading {
    opacity: 0.65 !important;
    pointer-events: none !important;
}

.qop-yith-wishlist-wrap.qop-yith-added a::before,
.qop-yith-wishlist-wrap.qop-yith-added button::before {
    content: "\2665" !important;
}

.qop-yith-wishlist-wrap:not(.qop-yith-added) a::before,
.qop-yith-wishlist-wrap:not(.qop-yith-added) button::before {
    content: "\2661" !important;
}


/* QuickOrder Pro V21.3 - definitive YITH empty/full heart states */
.qop-yith-wishlist-wrap a::before,
.qop-yith-wishlist-wrap button::before {
    content: "\2661" !important;
}

.qop-yith-wishlist-wrap.qop-yith-added a::before,
.qop-yith-wishlist-wrap.qop-yith-added button::before {
    content: "\2665" !important;
}

.qop-yith-wishlist-wrap,
.qop-yith-wishlist-wrap * {
    user-select: none !important;
}


/* QuickOrder Pro V21.4 - clean YITH authoritative state */
.qop-yith-wishlist-wrap.qop-yith-loading {
    opacity: 0.6 !important;
    pointer-events: none !important;
}

.qop-yith-wishlist-wrap a::before,
.qop-yith-wishlist-wrap button::before {
    content: "\2661" !important;
}

.qop-yith-wishlist-wrap.qop-yith-added a::before,
.qop-yith-wishlist-wrap.qop-yith-added button::before {
    content: "\2665" !important;
}

.qop-yith-wishlist-wrap a,
.qop-yith-wishlist-wrap button {
    cursor: pointer !important;
}


/* QuickOrder Pro V21.6 - image lazy loading + reserved dimensions to reduce layout shift */
.qop-wrapper,
[data-qop-widget="1"] {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
}

.qop-product-card {
    contain: layout paint !important;
}

.qop-product-image {
    width: 100% !important;
    aspect-ratio: 600 / 468 !important;
    min-height: 180px !important;
    overflow: hidden !important;
    background: #f7f8fa !important;
}

.qop-product-image img {
    width: 100% !important;
    height: 100% !important;
    aspect-ratio: 600 / 468 !important;
    object-fit: cover !important;
    display: block !important;
}

.qop-grid,
.qop-dynamic-grid {
    align-items: stretch !important;
}

.qop-layout-preparing .qop-grid,
.qop-layout-preparing .qop-dynamic-grid {
    visibility: hidden !important;
}

.qop-layout-ready .qop-grid,
.qop-layout-ready .qop-dynamic-grid {
    visibility: visible !important;
}


/* QuickOrder Pro V21.7 - search result cards open product page */
.qop-search-result-item {
    cursor: pointer !important;
}
