.custom-card {
    width: 195px !important;
    height: 195px !important;
    border-radius: 50%;
    overflow: hidden;
    background: #fff;
    border: 5px solid #ccc;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2), inset 0 0 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s;
    position: relative;
}

.custom-card:hover {
    transform: translateY(-10px);
}

.custom-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Overlay for hover effect */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: rgba(0, 0, 0, 0.2); */
    opacity: 1;
    transition: opacity 0.3s ease;
    border-radius: 50%;
}

.custom-card:hover .overlay {
    opacity: 1;
    background: rgba(0, 0, 0, 0.3);
}

.order-btn {
    position: relative;
    z-index: 2;
    border-radius: 50%;
    padding: 15px 15px;
    font-weight: bold;
    /* Ensure background remains visible */
    background-color: #0d6efd;
    color: #fff;
    border: none;
    /* opacity: .9; */
    box-shadow: 11px 7px 17px 1px #5c5151;
    line-height: 1.2;
}

/* Continuous ripple effect on hover */
.order-btn:hover::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(1);
    animation: ripple 1.5s linear infinite;
    pointer-events: none;
}

@keyframes ripple {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}