/* Image Placeholder Styles */
.product-image {
    background: linear-gradient(135deg, #ffffff 0%, #eeeeee 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    position: relative;
}

.product-image::before {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 3rem;
    opacity: 0.7;
}

.story-image,
.visit-image {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    min-height: 300px;
    border-radius: 15px;
}

.story-image::before {
    content: '\f54e';  /* Font Awesome store icon */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 3rem;
    color: white;
}

.visit-image::before {
    content: '\f015';  /* Font Awesome home icon */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 3rem;
    color: white;
}

.member-image {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
}

.member-image::before {
    content: '\f007';  /* Font Awesome user icon */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 3rem;
}

/* Hide broken images and show placeholder */
img {
    display: block;
}

img[src*="assets/images/"] {
    display: none;
}