/* Custom styling for the delivery SVG icons */
.delivery-svg-icon {
    width: 36px;
    height: 36px;
    stroke: #fecf6a; /* beOnd signature yellow/gold color */
    stroke-width: 1.5;
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.delivery-card:hover .delivery-svg-icon {
    filter: drop-shadow(0 0 8px rgba(254, 207, 106, 0.7));
    transform: scale(1.1);
}

/* Ensure the icon circle properly centers the SVG */
.icon-circle {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.7);
    border: 2px solid #fecf6a;
    transition: all 0.5s ease;
}

.delivery-card:hover .icon-circle {
    box-shadow: 0 0 15px rgba(254, 207, 106, 0.5);
    background-color: rgba(20, 20, 20, 0.8);
}

/* Make sure we maintain consistent styling with other delivery icons */
.delivery-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
}
