/* Product Showcase Plugin Styles */

.product-showcase-wrapper {
    margin: 20px 0;
}

.product-showcase-item {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 40px;
    padding: 20px;
    background: #fff;
    border: 0px solid #e5e5e5;
    border-radius: 4px;
}

.product-showcase-image-wrapper {
    flex: 0 0 300px;
    max-width: 300px;
}

.product-showcase-image-wrapper img {
    height: 350px !important;
    object-fit: cover;
  border-radius: 16px;
}

.product-showcase-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

.product-showcase-content {
    flex: 1;
    min-width: 0;
}

.product-showcase-title {
    margin: 0 0 15px 0;
    font-size: 24px;
    font-weight: 600;
    color: #333;
}

.product-showcase-short-description {
    margin-bottom: 15px;
    color: #666;
    line-height: 1.6;
}

.product-showcase-short-description p:last-child {
    margin-bottom: 0;
}

.product-showcase-toggle {
    margin-bottom: 15px;
}

.product-showcase-toggle-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0073aa;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.product-showcase-toggle-link:hover {
    color: #005177;
}

.product-showcase-toggle-link .toggle-icon {
    display: inline-block;
    transition: transform 0.3s ease;
    font-size: 12px;
}

.product-showcase-toggle-link.active .toggle-icon {
    transform: rotate(180deg);
}

.product-showcase-long-description {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e5e5e5;
    color: #666;
    line-height: 1.6;
}

.product-showcase-long-description p:first-child {
    margin-top: 0;
}

.product-showcase-long-description p:last-child {
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .product-showcase-item {
        flex-direction: column;
        gap: 20px;
    }
    
    .product-showcase-image-wrapper {
        flex: 0 0 auto;
        max-width: 100%;
        width: 100%;
    }
    
    .product-showcase-title {
        font-size: 20px;
    }
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-showcase-long-description {
    animation: fadeIn 0.3s ease;
}
