.custom-mini-product-card {
    background-color: #1f2229;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    position: relative;
    box-sizing: border-box;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    width: 100%;
    /* max-width: 320px; uncomment if you need strict width */
    font-family: inherit;
}

.custom-mini-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    border-color: rgba(255, 255, 255, 0.2);
}

.cmpc-top-actions {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 2;
}

.cmpc-action-btn {
    color: #9ca3af;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: color 0.2s ease;
}

.cmpc-action-btn svg {
    width: 22px;
    height: 22px;
}

.cmpc-action-btn:hover {
    color: #6b7280;
}

.cmpc-image-link {
    display: flex;
    margin-bottom: 20px;
    height: 220px;
    align-items: center;
    justify-content: center;
}

.cmpc-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.cmpc-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.cmpc-title {
    font-size: 16px;
    line-height: 1.4;
    color: #ffffff;
    text-decoration: none;
    margin-bottom: 12px;
    font-weight: 400;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cmpc-title:hover {
    color: var(--orange1, #FF3600);
}

.cmpc-availability {
    display: inline-block;
    background-color: #dcfce7;
    color: #166534;
    font-size: 13px;
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 16px;
    align-self: flex-start;
}
.cmpc-availability.out-of-stock {
    background-color: #fee2e2;
    color: #991b1b;
}

.cmpc-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.cmpc-sku {
    font-size: 13px;
    color: #9ca3af;
}

.cmpc-rating-wrap {
    display: flex;
    align-items: center;
    gap: 6px;
}

.cmpc-stars {
    color: yellow;
    font-size: 23px;
    font-weight: 600;
    letter-spacing: 2px;
}

.cmpc-review-count {
    font-size: 14px;
    color: #9ca3af;
}

.cmpc-points-row {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.cmpc-point {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    color: #9ca3af;
}

.cmpc-point-icon {
    font-size: 16px;
}

.cmpc-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.cmpc-price {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
}

.cmpc-price .woocommerce-Price-amount {
    display: inline-flex;
    align-items: baseline;
}
.cmpc-price del {
    font-size: 14px;
    color: #9ca3af;
    font-weight: 400;
    margin-right: 8px;
}

.cmpc-add-to-cart-wrap {
    display: flex;
}
woocommerce .cmpc-add-to-cart-btn.button {
	padding: 15px 21px;
	gap: 9px;
	font-size: 13px;
}
.cmpc-add-to-cart-btn {
    background-color: var(--orange1);
	font-family: var(--font_Wix_Madefor_Display) !important;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 15px 21px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
	gap: 9px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: background-color 0.2s;
}

.cmpc-add-to-cart-btn:hover {
    background-color: #1d4ed8;
    color: white;
}

/* Remove default WooCommerce button styles if any interfere */
.woocommerce .cmpc-add-to-cart-btn.button {
    background-color: var(--orange1);
    color: white;
	font-family: var(--font_Wix_Madefor_Display) !important;
	display: flex;
	padding: 15px 21px;
	gap: 9px;
	font-size: 13px;
}
.cmpc-add-to-cart-btn.button div {
	width: max-content;
}
.cmpc-add-to-cart-btn.button:hover {
    background-color: var(--orange1_hover) !important;
}
.woocommerce a.cmpc-add-to-cart-btn.button:hover {
    color: #fff !important;
}
.tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart:before {
	font-size: 37px !important;
}
.tinv-wraper.woocommerce {
	margin: 0px !important;
}
/* Sale Badge */
.cmpc-sale-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 40px;
    height: 40px;
    background-color: var(--orange1, #f55525);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    z-index: 10;
}

.cmpc-price .woocommerce-Price-amount {
	font-size: 16px;
}