/* Product placeholder styles */
.product-placeholder {
    width: 100%;
    height: 170px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 18px;
    font-weight: 500;
    border: 2px dashed #ddd;
    border-radius: 8px;
    position: relative;
}

.product-placeholder::before {
    content: "📦";
    font-size: 48px;
    display: block;
    margin-bottom: 10px;
}

.product-placeholder::after {
    content: "Product Image";
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 11px;
    color: #bbb;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .product-placeholder {
        height: 200px;
    }

    .product-placeholder::before {
        font-size: 36px;
    }
}