/* Watermark untuk gambar di halaman single */
.single-detail__content img {
    position: relative;
}

.single-detail__content img::after {
    content: attr(data-watermark);
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: bold;
    border-radius: 3px;
    z-index: 10;
    pointer-events: none;
}

/* Watermark khusus untuk gambar tutorial */
#marlina-recipe-image-tutorial {
    position: relative;
}

#marlina-recipe-image-tutorial::after {
    content: attr(data-watermark);
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: bold;
    border-radius: 3px;
    z-index: 10;
    pointer-events: none;
}

/* Watermark untuk featured image */
#marlina-recipe-feeatured {
    position: relative;
}

#marlina-recipe-feeatured::after {
    content: attr(data-watermark);
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 15px;
    font-size: 14px;
    font-weight: bold;
    border-radius: 5px;
    z-index: 10;
    pointer-events: none;
} 