.random-product-showcase {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
}

.product-showcase-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.product-showcase-image {
    width: 100%;
    height: 500px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    transition: transform 0.3s ease;
}

.product-showcase-link:hover .product-showcase-image {
    transform: scale(1.02);
}

.product-showcase-overlay {
    position: absolute;
    inset: 0;
    background: var(--overlay-color, rgba(0, 0, 0, 0.3));
    backdrop-filter: blur(var(--blur-intensity, 10px));
    -webkit-backdrop-filter: blur(var(--blur-intensity, 10px));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.product-showcase-content {
    text-align: center;
    color: var(--text-color, #ffffff);
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.product-brand {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 12px;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-title {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 16px 0;
    line-height: 1.3;
    color: var(--text-color, #ffffff);
}

.product-description {
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 20px 0;
    opacity: 0.95;
}

.product-price {
    font-size: 24px;
    font-weight: 600;
    margin-top: 20px;
}

.product-price del {
    opacity: 0.7;
    font-size: 18px;
    margin-left: 10px;
}

.product-arrow {
    position: absolute;
    bottom: 40px;
    right: 40px;
    z-index: 3;
    transition: transform 0.3s ease;
}

.product-showcase-link:hover .product-arrow {
    transform: translateX(-5px);
}

.product-arrow svg {
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
}

/* RTL Support */
[dir="rtl"] .product-arrow {
    right: auto;
    left: 40px;
}

[dir="rtl"] .product-showcase-link:hover .product-arrow {
    transform: translateX(5px);
}

[dir="rtl"] .product-arrow svg path {
    transform: scaleX(-1);
    transform-origin: center;
}

/* Responsive */
@media (max-width: 768px) {
    .product-showcase-image {
        height: 400px;
    }
    
    .product-showcase-overlay {
        padding: 30px 20px;
    }
    
    .product-title {
        font-size: 24px;
    }
    
    .product-description {
        font-size: 14px;
    }
    
    .product-price {
        font-size: 20px;
    }
    
    .product-arrow {
        bottom: 20px;
        right: 20px;
    }
    
    [dir="rtl"] .product-arrow {
        left: 20px;
    }
    
    .product-arrow svg {
        width: 32px;
        height: 32px;
    }
}

@media (max-width: 480px) {
    .product-showcase-image {
        height: 350px;
    }
    
    .product-title {
        font-size: 20px;
    }
    
    .product-brand {
        font-size: 12px;
    }
}
