
        .crudo-wrapper {
            font-family: 'Inter', system-ui, -apple-system, sans-serif;
            color: #111;
            box-sizing: border-box;
            line-height: 1.5;
        }
        .crudo-wrapper * { box-sizing: border-box; margin: 0; padding: 0; }
        .crudo-wrapper button { cursor: pointer; background: none; border: none; font: inherit; }
        .crudo-wrapper a { text-decoration: none; color: inherit; }
        .crudo-wrapper img { max-width: 100%; display: block; }
        .crudo-hidden { display: none !important; }
        .crudo-hide-scrollbar::-webkit-scrollbar { display: none; }
        .crudo-hide-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

        /* Layout */
        .crudo-main-container { max-width: 1200px; margin: 0 auto; padding: 40px 20px; }
        .crudo-row { display: flex; flex-wrap: wrap; gap: 30px; }
        .crudo-col-60 { flex: 1 1 60%; min-width: 320px; display: flex; flex-direction: column; gap: 20px; }
        .crudo-col-40 { flex: 1 1 35%; min-width: 320px; }

        /* Cards & Elements */
        .crudo-card {
            background: #fff;
            border-radius: 16px;
            border: 1px solid #eaeaea;
            padding: 20px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.02);
            display: flex;
            gap: 20px;
            position: relative;
            transition: 0.3s;
        }
        .crudo-card:hover { box-shadow: 0 8px 20px rgba(0,0,0,0.05); }
        .crudo-card.crudo-col-card { flex-direction: column; padding: 0; overflow: hidden; }
        .crudo-card.crudo-cross { min-width: 160px; max-width: 160px; flex-direction: column; padding: 15px; scroll-snap-align: start; flex-shrink: 0; }

        .crudo-item-info { flex: 1; display: flex; flex-direction: column; justify-content: flex-start; }
        .crudo-flex-col { display: flex !important; flex-direction: column !important; }

        .crudo-item-img {
            width: 120px;
            height: 120px;
            background: #f9f9f9;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 10px;
            flex-shrink: 0;
        }
        /* PERFORMANCE: aspect-ratio reserves space before image loads → zero CLS */
        .crudo-item-img img { max-height: 100%; object-fit: contain; mix-blend-mode: multiply; aspect-ratio: 1 / 1; width: 100%; height: auto; }

        .crudo-cross-img {
            height: 130px;
            width: calc(100% + 30px);
            margin: -15px -15px 15px -15px;
            border-radius: 16px 16px 0 0;
            background: #f9f9f9;
            display: flex;
            justify-content: center;
            padding: 15px;
            position: relative;
        }
        /* PERFORMANCE: aspect-ratio reserves space before image loads → zero CLS */
        .crudo-cross-img img { max-height: 100%; object-fit: contain; mix-blend-mode: multiply; aspect-ratio: 4 / 3; width: 100%; height: auto; }

        .crudo-title {
            font-size: 15px;
            font-weight: 800;
            text-transform: uppercase;
            line-height: 1.3;
            margin-bottom: 5px;
            padding-right: 25px;
        }
        .crudo-cross-title {
            font-size: 13px;
            font-weight: 700;
            line-height: 1.3;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            flex: 1;
        }
        .crudo-sub {
            font-size: 11px;
            color: #888;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .crudo-price-wrap {
            display: flex;
            align-items: baseline;
            gap: 8px;
            margin-top: 5px;
        }
        .crudo-mrp { font-size: 12px; color: #999; text-decoration: line-through; }
        .crudo-price { font-size: 18px; font-weight: 800; color: #111; }
        .crudo-save { font-size: 11px; font-weight: 800; color: var(--crudo-primary); margin-top: 3px; }

        .crudo-tags {
            display: flex;
            flex-direction: column;
            gap: 4px;
            align-items: flex-start;
            margin-top: 12px;
        }
        .crudo-tag-1 {
            background: linear-gradient(90deg, var(--crudo-primary), var(--crudo-hover));
            color: #fff;
            padding: 3px 10px;
            border-radius: 20px;
            font-size: 10px;
            font-weight: 800;
        }
        .crudo-tag-2 {
            color: var(--crudo-accent);
            font-size: 11px;
            font-weight: 800;
            margin-top: 4px;
            display: block;
        }

        /* Quantity Box */
        .crudo-qty-box {
            display: flex !important;
            flex-direction: row !important;
            align-items: center !important;
            justify-content: space-between !important;
            border: 1px solid #e5e7eb !important;
            border-radius: 8px !important;
            overflow: hidden !important;
            background: #fff !important;
            height: 38px !important;
            width: 110px !important;
            min-width: 110px !important;
            max-width: 110px !important;
            box-sizing: border-box !important;
            padding: 0 !important;
            margin-top: 10px;
        }
        .crudo-side-cart-qty-box {
            height: 34px !important;
            width: 95px !important;
            min-width: 95px !important;
            max-width: 95px !important;
        }
        .crudo-qty-btn {
            flex: 0 0 35px !important;
            height: 100% !important;
            background: #f9fafb !important;
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
            cursor: pointer !important;
            border: none !important;
            padding: 0 !important;
            margin: 0 !important;
            color: #4b5563 !important;
            outline: none !important;
            transition: all 0.2s;
            box-sizing: border-box !important;
        }
        .crudo-side-cart-qty-box .crudo-qty-btn { flex: 0 0 28px !important; }
        .crudo-btn-minus { border-right: 1px solid #e5e7eb !important; }
        .crudo-btn-plus  { border-left: 1px solid #e5e7eb !important; }
        .crudo-btn-minus:hover,
        .crudo-btn-plus:hover { background: #f3f4f6 !important; }
        .crudo-btn-minus:active,
        .crudo-btn-plus:active { background: #e5e7eb !important; }
        .crudo-btn-minus svg,
        .crudo-btn-plus svg {
            width: 14px !important;
            height: 14px !important;
            stroke: currentColor !important;
            stroke-width: 2.5px !important;
            fill: none !important;
        }
        .crudo-qty-input {
            flex: 1 1 auto !important;
            width: 100% !important;
            height: 100% !important;
            text-align: center !important;
            border: none !important;
            background: transparent !important;
            color: #111 !important;
            font-size: 14px !important;
            font-weight: 800 !important;
            margin: 0 !important;
            padding: 0 !important;
            text-indent: 0 !important;
            box-shadow: none !important;
            outline: none !important;
            -moz-appearance: textfield !important;
            line-height: normal !important;
            box-sizing: border-box !important;
            opacity: 1 !important;
            -webkit-text-fill-color: #111 !important;
            border-radius: 0 !important;
        }
        .crudo-qty-input::-webkit-outer-spin-button,
        .crudo-qty-input::-webkit-inner-spin-button {
            -webkit-appearance: none !important;
            margin: 0 !important;
            display: none !important;
        }

        .crudo-remove-btn {
            position: absolute;
            top: 15px;
            right: 15px;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background: #f9f9f9;
            color: #999;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: 0.2s;
            z-index: 10;
        }
        .crudo-remove-btn:hover { background: #fee2e2; color: #ef4444; }

        /* Sidebar & Summary */
        .crudo-sticky { position: sticky; top: 20px; }
        .crudo-summary-box {
            background: #fff;
            border-radius: 16px;
            border: 1px solid #eaeaea;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0,0,0,0.03);
            /* PERFORMANCE: Isolate rendering of summary sidebar */
            content-visibility: auto;
            contain-intrinsic-size: auto 600px;
        }
        .crudo-summary-inner { padding: 25px; }

        /* Offers */
        .crudo-offers-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            font-size: 15px;
            font-weight: 800;
        }
        .crudo-offers-icon {
            width: 32px;
            height: 32px;
            background: #fdf2f2;
            color: #e07a5f;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transform: rotate(-45deg);
            margin-right: 12px;
            font-size: 12px;
        }
        .crudo-offers-chevron { color: #aaa; transition: 0.3s; }
        .crudo-offers-chevron.open { transform: rotate(90deg); }

        .crudo-coupon-box {
            display: flex;
            border: 1px solid #ddd;
            border-radius: 12px;
            overflow: hidden;
            margin-top: 15px;
            transition: 0.2s;
        }
        .crudo-coupon-box:focus-within {
            border-color: var(--crudo-primary);
            box-shadow: 0 0 0 3px rgba(240,161,66,0.1);
        }
        .crudo-coupon-input {
            flex: 1;
            border: none;
            padding: 14px 15px;
            font-size: 14px;
            text-transform: uppercase;
            outline: none;
        }
        .crudo-apply-coupon {
            background: #f9f9f9;
            border-left: 1px solid #ddd;
            color: var(--crudo-primary);
            font-weight: 800;
            font-size: 13px;
            padding: 0 20px;
            transition: 0.2s;
        }
        .crudo-apply-coupon:hover { background: #f0f0f0; }

        .crudo-applied-coupon {
            background: #f0fdf4;
            border: 1px solid #bbf7d0;
            border-radius: 10px;
            padding: 12px 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 15px;
        }
        .crudo-applied-coupon span {
            color: #166534;
            font-size: 13px;
            font-weight: 800;
            text-transform: uppercase;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .crudo-remove-coupon {
            background: #fff;
            border: 1px solid #fecaca;
            color: #ef4444;
            border-radius: 6px;
            padding: 5px 12px;
            font-size: 11px;
            font-weight: 800;
            text-transform: uppercase;
            transition: 0.2s;
        }
        .crudo-remove-coupon:hover { background: #ef4444; color: #fff; }

        .crudo-avail-coupon {
            background: #fff;
            border: 1px solid rgba(240,161,66,0.3);
            border-radius: 10px;
            padding: 12px 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 10px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.02);
        }
        .crudo-avail-btn {
            background: rgba(240,161,66,0.1);
            color: var(--crudo-primary);
            font-size: 11px;
            font-weight: 800;
            padding: 6px 15px;
            border-radius: 6px;
            text-transform: uppercase;
            transition: 0.2s;
            border: 1px solid rgba(240,161,66,0.2);
        }
        .crudo-avail-btn:hover { background: var(--crudo-primary); color: #fff; }

        .crudo-more-details-btn {
            background: none;
            border: none;
            padding: 0;
            margin-top: 4px;
            font-size: 11px;
            font-weight: 700;
            color: #555;
            text-transform: uppercase;
            letter-spacing: 0.3px;
            cursor: pointer;
        }
        .crudo-more-details-btn.crudo-open { color: var(--crudo-primary); }
        .crudo-coupon-details {
            display: none;
            margin-top: 6px;
            font-size: 11px;
            color: #555;
            line-height: 1.45;
        }

        /* Price details */
        .crudo-summary-row {
            display: flex;
            justify-content: space-between;
            font-size: 14px;
            color: #555;
            margin-bottom: 15px;
        }
        .crudo-summary-row strong { color: #111; font-weight: 600; }
        .crudo-summary-row.crudo-green { color: var(--crudo-accent); }
        .crudo-summary-total {
            display: flex;
            justify-content: space-between;
            font-size: 20px;
            font-weight: 800;
            color: #111;
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid #eaeaea;
        }

        /* Reset WC theme overrides on checkout wrapper inside our cart */
        .crudo-wrapper .wc-proceed-to-checkout {
            padding: 0;
            margin: 0;
            border: none;
            background: none;
        }
        .crudo-wrapper .wc-proceed-to-checkout::before,
        .crudo-wrapper .wc-proceed-to-checkout::after {
            display: none;
        }
        .crudo-wrapper a.checkout-button.wc-forward,
        .crudo-wrapper a.checkout-button.wc-forward:hover,
        .crudo-wrapper a.checkout-button.wc-forward:focus {
            background: var(--crudo-primary) !important;
            color: #fff !important;
            text-decoration: none !important;
            border: none !important;
            box-shadow: 0 4px 15px rgba(240,161,66,0.3) !important;
            font-size: 15px !important;
            font-weight: 800 !important;
            letter-spacing: 1px !important;
            padding: 18px !important;
            border-radius: 12px !important;
            line-height: 1.5 !important;
            font-family: inherit !important;
        }

        /* Checkout & trust badges */
        .crudo-btn-zone {
            margin-top: 20px;
            min-height: 55px;
            width: 100%;
            display: block;
            position: relative;
        }
        .crudo-checkout-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            background: var(--crudo-primary);
            color: #fff;
            font-size: 15px;
            font-weight: 800;
            letter-spacing: 1px;
            padding: 18px;
            border-radius: 12px;
            transition: 0.2s;
            box-shadow: 0 4px 15px rgba(240,161,66,0.3);
            text-decoration: none;
        }
        .crudo-checkout-btn:hover {
            filter: brightness(0.95);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(240,161,66,0.4);
        }
        #crudo-replace-confirm.crudo-checkout-btn {
            background: var(--crudo-primary) !important;
            color: #fff !important;
        }

        .crudo-trust-badges {
            display: flex;
            justify-content: space-between;
            margin-top: 25px;
            padding-top: 20px;
            border-top: 1px solid #eaeaea;
        }
        .crudo-trust-item {
            flex: 1;
            text-align: center;
            font-size: 10px;
            font-weight: 600;
            color: #888;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
        }
        .crudo-trust-item i { font-size: 22px; color: #ccc; }
        .crudo-trust-item.crudo-border-lr {
            border-left: 1px solid #eaeaea;
            border-right: 1px solid #eaeaea;
        }

        /* Sliders */
        .crudo-slider-wrap {
            background: #fffaf0;
            border: 1px solid #f9e4c8;
            padding: 25px;
            border-radius: 16px;
            margin-top: 30px;
            /* PERFORMANCE: Skip rendering when off-screen → faster initial paint */
            content-visibility: auto;
            contain-intrinsic-size: auto 300px;
        }
        .crudo-section-title {
            font-size: 16px;
            font-weight: 800;
            color: #111;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .crudo-cross-slider {
            display: flex;
            overflow-x: auto;
            gap: 15px;
            scroll-snap-type: x mandatory;
            padding-bottom: 10px;
        }

        .crudo-cross-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: auto;
            padding-top: 12px;
            border-top: 1px solid #f3f4f6;
            width: 100%;
        }
        .crudo-cross-price {
            font-size: 14px;
            font-weight: 800;
            color: #111;
            margin: 0 !important;
        }
        .crudo-cross-add {
            background: var(--crudo-primary) !important;
            color: #fff !important;
            font-size: 11px !important;
            font-weight: 800 !important;
            padding: 6px 14px !important;
            border-radius: 20px !important;
            text-transform: uppercase !important;
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
            border: none !important;
            box-shadow: 0 2px 6px rgba(0,0,0,0.1) !important;
            cursor: pointer !important;
            transition: 0.2s !important;
        }
        .crudo-cross-add:hover {
            background: var(--crudo-hover) !important;
            transform: translateY(-1px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.15) !important;
        }

        /* Empty state */
        .crudo-empty-state {
            background: #fff;
            border: 1px solid #eaeaea;
            border-radius: 16px;
            padding: 50px 20px;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            width: 100%;
            box-shadow: 0 4px 10px rgba(0,0,0,0.02);
        }
        .crudo-empty-icon {
            width: 90px;
            height: 90px;
            background: rgba(240,161,66,0.1);
            color: var(--crudo-primary);
            font-size: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }
        .crudo-empty-title { font-size: 22px; font-weight: 800; color: #111; margin-bottom: 10px; }
        .crudo-empty-sub {
            font-size: 14px;
            color: #666;
            max-width: 300px;
            margin-bottom: 25px;
            line-height: 1.5;
        }

        /* Floating cart & side drawer */
        .crudo-floating-btn {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 64px;
            height: 64px;
            border-radius: 50%;
            background: var(--crudo-primary);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            cursor: pointer;
            box-shadow: 0 8px 30px rgba(240,161,66,0.4);
            z-index: 99990;
            transition: 0.3s;
            /* PERFORMANCE: GPU-accelerate fixed element with transition */
            transform: translateZ(0);
            will-change: transform;
        }
        .crudo-floating-btn:hover { transform: scale(1.05); }
        .crudo-floating-badge {
            position: absolute;
            top: -2px;
            right: -2px;
            background: #111;
            color: #fff;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            font-size: 11px;
            font-weight: 800;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid #fff;
        }

        .crudo-side-cart {
            position: fixed;
            top: 0;
            right: 0;
            width: 100%;
            max-width: 450px;
            height: 100%;
            background: #f9fafb;
            z-index: 99999;
            transform: translateX(100%);
            transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            display: flex;
            flex-direction: column;
            box-shadow: -10px 0 30px rgba(0,0,0,0.1);
            /* PERFORMANCE: GPU-accelerate slide-in drawer for 60fps transition */
            will-change: transform;
        }
        .crudo-side-cart.crudo-open { transform: translateX(0); }

        .crudo-side-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.6);
            z-index: 99998;
            opacity: 0;
            pointer-events: none;
            transition: 0.3s;
            backdrop-filter: blur(3px);
            /* PERFORMANCE: GPU-accelerate overlay fade for 60fps */
            transform: translateZ(0);
            will-change: opacity;
        }
        .crudo-side-overlay.crudo-open {
            opacity: 1;
            pointer-events: auto;
        }

        .crudo-side-header {
            background: #fff;
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid #eaeaea;
            z-index: 10;
            flex-shrink: 0;
        }
        .crudo-side-header h2 {
            font-size: 18px;
            font-weight: 800;
            color: #111;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .crudo-side-close {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: #f5f5f5;
            color: #555;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            transition: 0.2s;
        }
        .crudo-side-close:hover { background: #fee2e2; color: #ef4444; }

        .crudo-side-header-actions {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .crudo-side-cart .crudo-side-clear {
            border: none;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            height: 36px;
            padding: 0 12px;
            border-radius: 18px;
            background: #f5f5f5;
            color: #777;
            font-size: 13px;
            font-weight: 600;
            line-height: 1;
            white-space: nowrap;
            transition: 0.2s;
        }
        .crudo-side-cart .crudo-side-clear:hover { background: #fee2e2; color: #ef4444; }
        /* Second tap actually empties the cart -- make that state obvious. */
        .crudo-side-cart .crudo-side-clear.crudo-confirm {
            background: #ef4444;
            color: #fff;
        }

        .crudo-side-body {
            flex: 1;
            overflow-y: auto;
            display: flex;
            flex-direction: column;
            position: relative;
        }
        .crudo-side-body-inner {
            padding: 20px;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .crudo-side-footer {
            background: #fff;
            padding: 20px;
            border-top: 1px solid #eaeaea;
            box-shadow: 0 -10px 20px rgba(0,0,0,0.03);
            z-index: 20;
            flex-shrink: 0;
            width: 100%;
        }

        .crudo-side-item {
            display: flex;
            background: #fff;
            border-radius: 12px;
            border: 1px solid #eaeaea;
            padding: 15px;
            gap: 15px;
            position: relative;
        }
        .crudo-side-item .crudo-item-img { width: 80px; height: 80px; }
        .crudo-side-item .crudo-title { font-size: 13px; }
        .crudo-side-item .crudo-qty-box { height: 32px; width: 90px; margin-top: 10px; }
        .crudo-side-item .crudo-item-info { flex: 1; justify-content: flex-start; padding-right: 15px; }

        .crudo-discount-ribbon {
            position: absolute;
            top: 10px;
            left: 10px;
            background: var(--crudo-discount-bg);
            color: #fff;
            padding: 2px 10px 2px 6px;
            clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
            font-size: 10px;
            font-weight: 800;
            z-index: 5;
            text-transform: uppercase;
        }

        /* Skeleton shimmer (section-only loader) */
        @keyframes crudo-shimmer {
            0%   { background-position: -1000px 0; }
            100% { background-position: 1000px 0; }
        }
        .crudo-skeleton {
            background: #f3f4f6;
            background-image: linear-gradient(
                to right,
                #f3f4f6 0%,
                #e5e7eb 20%,
                #f3f4f6 40%,
                #f3f4f6 100%
            );
            background-repeat: no-repeat;
            background-size: 1000px 100%;
            animation: crudo-shimmer 1.5s infinite linear forwards;
            border-radius: 12px;
            /* PERFORMANCE: GPU-accelerate continuous shimmer animation */
            transform: translateZ(0);
            will-change: background-position;
        }

        /* Local processing overlay (does NOT cover whole page) */
        .crudo-processing {
            position: relative;
            opacity: 0.6;
            pointer-events: none;
        }
        .crudo-processing::after {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(255,255,255,0.4);
            backdrop-filter: blur(2px);
            z-index: 50;
            border-radius: inherit;
        }

        /* Modals */
        .crudo-modal {
            position: fixed;
            inset: 0;
            z-index: 9999999;
            display: flex;
            align-items: center;
            justify-content: center;
            pointer-events: none;
            opacity: 0;
            transition: 0.3s;
        }
        .crudo-modal.crudo-show { pointer-events: auto; opacity: 1; }
        .crudo-modal-bg {
            position: absolute;
            inset: 0;
            background: rgba(0,0,0,0.6);
            backdrop-filter: blur(3px);
        }
        .crudo-modal-box {
            position: relative;
            background: #fff;
            border-radius: 20px;
            padding: 30px;
            max-width: 350px;
            width: 90%;
            text-align: center;
            box-shadow: 0 10px 40px rgba(0,0,0,0.2);
            transform: scale(0.95) translateY(10px);
            transition: 0.3s;
        }
        .crudo-modal.crudo-show .crudo-modal-box {
            transform: scale(1) translateY(0);
        }

        /* Mobile tweaks */
        @media (max-width: 768px) {
            .crudo-card:not(.crudo-cross):not(.crudo-side-item) { flex-direction: column; }
            .crudo-card:not(.crudo-cross):not(.crudo-side-item) .crudo-item-info {
                margin-top: 10px;
                padding-bottom: 40px;
            }
            .crudo-card:not(.crudo-cross):not(.crudo-side-item) .crudo-qty-box {
                position: absolute;
                bottom: 20px;
                right: 20px;
            }
            .crudo-card:not(.crudo-cross):not(.crudo-side-item) .crudo-item-img {
                width: 100%;
                height: 160px;
            }
        }
    