/* Product Display Styles */
.product-showcase {
    position: relative;
    width: 100%;
    margin-bottom: 30px;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    background: #fff;
}

.product-image {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: contain;
    display: block;
    background: #fff;
    padding: 20px;
}

.product-info-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    min-height: 120px;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 20px;
    color: #fff;
}

.product-model {
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 10px 0;
    color: #fff;
}

.product-description {
    font-size: 16px;
    color: #ffae00;
    margin: 0;
    font-weight: 400;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .product-showcase,
    .product-image {
        min-height: 300px;
    }
    
    .product-info-overlay {
        min-height: 100px;
        padding: 15px;
    }
    
    .product-model {
        font-size: 20px;
    }
    
    .product-description {
        font-size: 14px;
    }
}

/* Additional Styles for Better Display */
.post-content-single-wrap .product-showcase {
    position: relative !important;
    width: 100% !important;
    margin-bottom: 30px !important;
    background: transparent !important;
    min-height: 400px !important;
    display: flex !important;
    flex-direction: column !important;
}

.post-content-single-wrap .product-image {
    width: 100% !important;
    height: 100% !important;
    min-height: 400px !important;
    object-fit: cover !important;
    display: block !important;
    transition: opacity 0.3s ease !important;
}

.post-content-single-wrap .product-info-overlay {
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    background: linear-gradient(to bottom, 
        rgba(255,255,255,0) 0%,
        rgba(0,102,204,0.7) 50%,
        rgba(0,102,204,0.9) 100%
    ) !important;
    padding: 50px 30px 30px !important;
    color: #fff !important;
    width: 100% !important;
    min-height: 100px !important;
    transform: translateY(0) !important;
    transition: all 0.3s ease !important;
    z-index: 100 !important;
}

.post-content-single-wrap .product-model {
    font-size: 28px !important;
    font-weight: 600 !important;
    margin: 0 0 10px 0 !important;
    color: #fff !important;
    letter-spacing: 1px !important;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5) !important;
}

.post-content-single-wrap .product-description {
    font-size: 16px !important;
    color: #fff !important;
    margin: 0 !important;
    font-weight: 400 !important;
    opacity: 0.9 !important;
}

/* Hover Effects */
.post-content-single-wrap .product-showcase:hover .product-image {
    opacity: 0.95 !important;
}

.post-content-single-wrap .product-showcase:hover .product-info-overlay {
    background: linear-gradient(to bottom, 
        rgba(255,255,255,0) 0%,
        rgba(0,102,204,0.8) 50%,
        rgba(0,102,204,1) 100%
    ) !important;
    transform: translateY(-5px) !important;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .post-content-single-wrap .product-showcase,
    .post-content-single-wrap .product-image {
        min-height: 300px !important;
    }
    
    .post-content-single-wrap .product-info-overlay {
        padding: 30px 20px 20px !important;
        min-height: 80px !important;
    }
    
    .post-content-single-wrap .product-model {
        font-size: 22px !important;
    }
    
    .post-content-single-wrap .product-description {
        font-size: 14px !important;
    }
} 