/* 🌐 WEB DESIGN BADGE */

.web-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    z-index: 2;
    pointer-events: none;
}

.squisita-card-media {
    position: relative;
    background: #111;
}

.squisita-card-media .case-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 🔒 IMAGE PROTECTION CSS */

/* Overlay transparente sobre imágenes - impide clic directo */
.charlie-gallery .charlie-frame::after,
.gallery-hero-img::after,
.gallery-single::after,
.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 5;
    background: transparent;
    pointer-events: auto;
}

/* Las imágenes no se pueden seleccionar ni arrastrar */
.charlie-gallery img,
.gallery-case-study img,
.case-image,
.latest-work-2026 img {
    -webkit-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
    pointer-events: none;
    -webkit-touch-callout: none;
}

/* Evitar que se copien con long-press en mobile */
.charlie-frame,
.gallery-hero-img,
.gallery-single,
.gallery-item {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
}
