.search-blob {
    border-radius: 70% 30% 30% 70% / 60% 40% 60% 40%;
}

.blob-1 {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    position: absolute;
    z-index: -1;
}

.blob-2 {
    border-radius: 40% 60% 70% 30% / 40% 50% 50% 60%;
    position: absolute;
    z-index: -1;
}

.search-input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 0, 127, 0.2);
}

.category-card {
    transition: all 0.3s ease;
    overflow: hidden;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-card:hover .category-bg {
    transform: scale(1.1);
}

.category-bg {
    transition: all 0.3s ease;
}

.search-tag {
    transition: all 0.3s ease;
}

.search-tag:hover {
    transform: translateY(-2px);
}

.custom-scrollbar::-webkit-scrollbar {
    width: 6px;
}

.custom-scrollbar::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background: #ff007f;
    border-radius: 10px;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: #d10068;
}

.floating {
    animation: float 6s ease-in-out infinite;
}

.floating-delay-1 {
    animation-delay: 1s;
}

.floating-delay-2 {
    animation-delay: 2s;
}

.floating-delay-3 {
    animation-delay: 3s;
}

.search-container {
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.1) 0%,
            rgba(255, 255, 255, 0.1) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.05);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .search-blob {
        border-radius: 30px;
    }

    .floating-suggestions {
        height: 120px;
    }
}

@media (max-width: 640px) {
    .search-input {
        padding-right: 100px;
    }
}

/* Shimmer effect for buttons */
.shimmer {
    position: relative;
    overflow: hidden;
}

.shimmer::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.3) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: rotate(30deg);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) rotate(30deg);
    }

    100% {
        transform: translateX(100%) rotate(30deg);
    }
}