
@media (min-width: 1024px) {
    .heroIMG {
        display: block !important;
    }
}
.d-none{
    display:none;
}
/* Animated Gradient Background */
.gradient-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, #FFD6E0 0%, #C7F5D4 50%, #E8D5F2 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Floating Orbs */
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: float 20s infinite ease-in-out;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -50px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 30px) scale(0.9);
    }
}

/* Smooth Hover Effects */
.hover-lift {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

    .hover-lift:hover {
        transform: translateY(-12px) scale(1.02);
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
    }

/* Gradient Text */
.text-gradient {
    background: linear-gradient(135deg, #FF6B9D 0%, #C44569 50%, #7B68EE 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Button Styles */
.btn-primary {
    background: linear-gradient(135deg, #FF6B9D 0%, #C44569 100%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

    .btn-primary::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
        transition: left 0.6s;
    }

    .btn-primary:hover::before {
        left: 100%;
    }

    .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 35px rgba(255, 107, 157, 0.4);
    }

/* Category Card */
.category-card {
    background: linear-gradient(135deg, rgba(255, 214, 224, 0.4), rgba(199, 245, 212, 0.4));
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

    .category-card:hover {
        transform: translateY(-8px) rotate(2deg);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }

/* Product Card */
.product-card {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

    .product-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    }

        .product-card:hover .product-image {
            transform: scale(1.08);
        }

.product-image {
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Badge */
.badge {
    background: linear-gradient(135deg, #FF6B9D, #FF8FA3);
    box-shadow: 0 4px 12px rgba(255, 107, 157, 0.3);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #FFD6E0, #E8D5F2);
    border-radius: 10px;
    border: 2px solid #f1f1f1;
}

    ::-webkit-scrollbar-thumb:hover {
        background: linear-gradient(135deg, #FFB6C1, #D8BFD8);
    }

/* Navigation Link */
.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    right: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #FF6B9D, #7B68EE);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

    .nav-link:hover::after {
        width: 100%;
    }

/* Loading Animation */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
}

/* Mesh Gradient Pattern */
.mesh-gradient {
    background-color: #FFD6E0;
    background-image: radial-gradient(at 27% 37%, rgba(255, 107, 157, 0.3) 0px, transparent 50%), radial-gradient(at 97% 21%, rgba(123, 104, 238, 0.3) 0px, transparent 50%), radial-gradient(at 52% 99%, rgba(107, 214, 157, 0.3) 0px, transparent 50%), radial-gradient(at 10% 29%, rgba(255, 143, 163, 0.3) 0px, transparent 50%), radial-gradient(at 97% 96%, rgba(199, 245, 212, 0.3) 0px, transparent 50%), radial-gradient(at 33% 50%, rgba(232, 213, 242, 0.3) 0px, transparent 50%), radial-gradient(at 79% 53%, rgba(123, 104, 238, 0.3) 0px, transparent 50%);
}
