/* ===================================
   HERO PRODUCT IMAGE - Simple & Clean
   iPhone product display without mockup
   =================================== */

.hero-product-image {
    position: relative;
    width: 100%;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.hero-product-image img {
    max-width: 100%;
    max-height: 450px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2))
            drop-shadow(0 0 30px rgba(212, 175, 55, 0.15));
    animation: floatProduct 6s ease-in-out infinite;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-product-image img:hover {
    transform: scale(1.05) translateY(-10px);
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.25))
            drop-shadow(0 0 40px rgba(212, 175, 55, 0.25));
}

/* Floating animation */
@keyframes floatProduct {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .hero-product-image {
        height: 380px;
    }
    
    .hero-product-image img {
        max-height: 380px;
    }
}

@media (max-width: 576px) {
    .hero-product-image {
        height: 320px;
    }
    
    .hero-product-image img {
        max-height: 320px;
    }
}
