.hover-lift{transition:transform 0.2s ease-in-out}.hover-lift:hover{transform:translateY(-5px)}.product-card .carousel-control-prev,.product-card .carousel-control-next{width:30px;height:30px;background:rgb(0 0 0 / .5);border-radius:50%;top:50%;transform:translateY(-50%);opacity:0;transition:all 0.3s ease}.product-card:hover .carousel-control-prev,.product-card:hover .carousel-control-next{opacity:1}.product-card .carousel-control-prev{left:10px}.product-card .carousel-control-next{right:10px}.product-card .carousel-control-prev-icon,.product-card .carousel-control-next-icon{background-size:50%}.product-card .carousel-indicators{bottom:10px;margin:0}.product-card .carousel-indicators button{width:13px;height:13px;border-radius:50%;margin:0 3px;background:rgb(255 255 255 / .7);border:none;opacity:.7}.product-card .carousel-indicators button.active{background:#fff;opacity:1}.price-section{border-top:1px solid #eee;padding-top:1rem}

/* Image loading states for VPS optimization */
.lazy-load {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.lazy-load.loaded {
    animation: none;
    background: none;
    transition: opacity 0.3s ease;
}

.lazy-load.error {
    background: #f8f9fa url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Crect width='100' height='100' fill='%23f8f9fa'/%3E%3Ctext x='50' y='45' text-anchor='middle' font-size='12' fill='%23dee2e6'%3EImage%3C/text%3E%3Ctext x='50' y='60' text-anchor='middle' font-size='12' fill='%23dee2e6'%3EUnavailable%3C/text%3E%3C/svg%3E") center/cover no-repeat;
}

/* Retry button for failed images */
.image-retry {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0,0,0,0.7);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
}