.product-showcase-card {
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #eaeaea;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.product-showcase-image-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.product-showcase-img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Full uncropped picture, 1:1 aspect ratio */
}

.product-showcase-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-showcase-title {
    margin: 0 0 16px 0;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.3;
}

.product-showcase-title a {
    text-decoration: none;
    color: inherit;
}

.product-showcase-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 15px;
    margin-bottom: 20px;
}

.product-showcase-feature {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px dashed #eee;
    font-size: 0.95rem;
}

.product-showcase-feature:last-child {
    border-bottom: none;
}

.product-showcase-feature-label {
    font-weight: 600;
    color: #555555;
}

.product-showcase-feature-value {
    color: #222222;
    text-align: right;
}

.product-showcase-feature-value .in-stock {
    color: #2e7d32;
    font-weight: bold;
}

.product-showcase-feature-value .out-of-stock {
    color: #c62828;
    font-weight: bold;
}

.product-showcase-button {
    display: block;
    width: 100%;
    text-align: center;
    background-color: #111111;
    color: #ffffff !important;
    padding: 12px 20px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none !important;
    transition: background-color 0.2s ease;
}

.product-showcase-button:hover {
    background-color: #333333;
}

.product-showcase-placeholder {
    padding: 30px;
    text-align: center;
    background: #fdfdfd;
    border: 2px dashed #ccc;
    border-radius: 4px;
    color: #666;
    font-weight: 500;
}
