.lilurandom-products-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 0;
    padding: 15px;
    border-radius: 8px;
}

.lilurandom-products-wrapper .random-product-item {
    background: #ffffff;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lilurandom-products-wrapper .random-product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.lilurandom-products-wrapper .random-product-item a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.lilurandom-products-wrapper .product-image {
    margin-bottom: 12px;
    overflow: hidden;
    border-radius: 6px;
}

.lilurandom-products-wrapper .product-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.lilurandom-products-wrapper .random-product-item:hover .product-image img {
    transform: scale(1.05);
}

.lilurandom-products-wrapper .product-title {
    font-size: 13px;
    margin: 15px 0 6px;
    min-height: 40px;
    color: #333333;
    font-weight: 600;
    line-height: 1.4;
    text-align: right;
}

.lilurandom-products-title strong {
    background: #ff8484;
    padding: 2px 10px;
    border-radius: 5px;
    color: #fff;
    margin-top: 15px;
    display: block;
    text-align: center;
}


.lilurandom-products-wrapper .product-price {
    font-size: 14px;
    color: #ff8484;
    font-weight: 700;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 3px;
}

.lilurandom-products-wrapper .product-price svg {
    width: 20px;
    height: 20px;
}

.lilurandom-products-wrapper .product-price .woocommerce-Price-amount {
    color: #e74c3c;
}

.lilurandom-products-wrapper .product-price del {
    color: #999999;
    font-weight: 400;
    margin-left: 8px;
}

.lilurandom-products-wrapper .product-price ins {
    background: none;
    text-decoration: none;
}

.lilurandom-products-wrapper .add-to-cart-btn {
    display: inline-block;
    background: #e9e9e9;
    color: #ffffff;
    padding: 6px 18px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    transition: background 0.3s ease;
}

.lilurandom-products-wrapper .add-to-cart-btn:hover {
    background: #cbcbcb;
}

.lilurandom-products-wrapper .random-products-error,
.lilurandom-products-wrapper .random-products-empty {
    color: #e74c3c;
    padding: 10px;
    background: #fdf0f0;
    border-radius: 4px;
    text-align: center;
}

.home-product-wszb .wszb-offer {
    background: #f44b88;
    width: max-content;
    padding: 2px 6px;
    direction: ltr;
    border-radius: 5px;
    font-weight: 700;
    color: #fff;
}

.wszb-checkout-form .other-address {
    display: none;
}

.wszb-checkout-form {
    margin-bottom: 35px;
}
.wszb-breadcrumb ul{
	list-style:none;
	display:flex;
	align-items:center;
	gap:8px;
	padding:0;
	margin:0;
}
.wszb-loop-product .elementor-widget-wc-archive-products form.woocommerce-ordering {
    width: 100%;
    margin-bottom: 30px;
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #eee;
}
.wszb-loop-product .elementor-widget-wc-archive-products li.product span.price {
    text-align: center;
    font-size: 14px !important;
    display: flex !important;
    gap: 3px;
    align-items: center;
    justify-content: center;
}
.wszb-loop-product .elementor-widget-wc-archive-products li.product .button {
    width: 100%;
	border-radius: 10px;
    text-align: center;
}
.wszb-loop-product .elementor-widget-wc-archive-products li.product button.woosw-btn {
    display: none;
}
.wszb-loop-product .elementor-widget-wc-archive-products li.product span.price del, .wszb-loop-product .elementor-widget-wc-archive-products li.product span.price del span {
    color: #888 !important;
    font-weight: 300;
}
.wszb-loop-product .elementor-widget-wc-archive-products li.product span.price svg.ms-3 {
    width: 20px;
    margin-right: 2px;
}

/* Responsive Design */
@media screen and (max-width: 992px) {
    .lilurandom-products-wrapper .random-products-wrapper {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
}

@media screen and (max-width: 768px) {
    .lilurandom-products-wrapper .random-products-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 10px;
    }
    
    .lilurandom-products-wrapper .product-title {
        font-size: 13px;
        min-height: 35px;
    }
    
    .lilurandom-products-wrapper .product-price {
        font-size: 14px;
    }
}

@media screen and (max-width: 480px) {
	.wszb-loop-product .elementor-widget-wc-archive-products form.woocommerce-ordering select {
		width: 100%;
	}
    .lilurandom-products-wrapper {
        grid-template-columns: 1fr;
        gap: 5px;
        padding: 8px;
    }
    
    .lilurandom-products-wrapper .random-product-item {
        padding: 10px;
    }
    
    .lilurandom-products-wrapper .product-title {
        font-size: 12px;
        min-height: 30px;
    }
    
    .lilurandom-products-wrapper .product-price {
        font-size: 13px;
    }
    
    .lilurandom-products-wrapper .add-to-cart-btn {
        font-size: 11px;
        padding: 4px 12px;
    }
}