
.pathway-container {
    perspective: 1000px;
    overflow: hidden;
    border-radius: 0.5rem;
}
.shop {
    transition: all 0.3s ease;
}

.shop:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.palm-tree {
    animation: sway 3s infinite alternate ease-in-out;
    transform-origin: bottom center;
}

@keyframes sway {
    0% {
        transform: rotate(-2deg);
    }
    100% {
        transform: rotate(2deg);
    }
}

.feature-card {
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}