/* SP-5 Custom Styles (Duplicate of HP-7) */

.sp5-main-title {
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    user-select: none;
    pointer-events: none;
    transition: all 0.5s ease-in-out;
}

/* Adjust title for small mobile */
@media (max-width: 640px) {
    .sp5-main-title {
        top: 12% !important;
        font-size: 3.2rem !important;
        letter-spacing: -1px;
    }
}

/* Tablet refinements */
@media (min-width: 641px) and (max-width: 1023px) {
    .sp5-main-title {
        top: 18%;
        font-size: clamp(4rem, 15vw, 7rem);
    }
}

/* Product image animation refinement */
#sp5-product-img {
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

#sp5-product-img.opacity-100 {
    transform: translateY(60px) scale(1.05);
}

/* Navigation button hover animation */
#sp5-prev:hover svg,
#sp5-next:hover svg {
    transform: scale(1.2);
    transition: transform 0.2s ease;
}

/* Gradient background for the section to feel more premium */
#sp5-section {
    background: linear-gradient(180deg, #FFFFFF 0%, #FFFDF5 100%);
}