/* Fancybox CSS - Minimal version for unused functionality */

img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: -moz-crisp-edges;
    image-rendering: -o-crisp-edges;
    image-rendering: crisp-edges;
    -ms-interpolation-mode: nearest-neighbor;
}

/* Basic container styles for potential future use */
.fancybox__container {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 1050;
    display: none;
}

.fancybox__backdrop {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(24, 24, 27, 0.98);
    z-index: -1;
}

.fancybox__content {
    position: relative;
    margin: 0;
    padding: 2rem;
    max-width: 100%;
    background: #fff;
    z-index: 20;
}

/* Basic button styles */
.f-button {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin: 0;
    padding: 0;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 0;
    color: #374151;
    background: #f8f8f8;
    cursor: pointer;
    transition: all 0.15s ease;
}

.f-button svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    pointer-events: none;
}

/* Close button */
.f-button.is-close-btn {
    position: absolute;
    top: 0;
    right: 8px;
    z-index: 40;
}

/* Basic animations */
@keyframes f-fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes f-fadeOut {
    100% {
        opacity: 0;
    }
}

.f-fadeIn {
    animation: 0.2s ease both f-fadeIn;
    z-index: 2;
}

.f-fadeOut {
    animation: 0.2s ease both f-fadeOut;
    z-index: 1;
}

.pc {
    display: block;
}

.sp {
    display: none;
}

@media screen and (max-width: 768px) {
    .pc {
        display: none;
    }
    
    .sp {
        display: block;
    }
}