.elementor-294 .elementor-element.elementor-element-01ac03a{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-294 .elementor-element.elementor-element-618abaf{--display:flex;}/* Start custom CSS for html, class: .elementor-element-684c420 */.modern-ship-btn {
    --bg: #000000;
    --text: #ffffff;
    --truck: #3b82f6;
    --parcel: #fbbf24;
    
    appearance: none;
    background: var(--bg);
    width: 260px;
    height: 64px;
    border: none;
    border-radius: 16px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.content-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.text {
    color: var(--text);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    z-index: 2;
    transition: all 0.4s ease;
}

.truck-container {
    position: absolute;
    left: -50px;
    display: flex;
    align-items: center;
    opacity: 0;
}

.truck-svg {
    width: 35px;
    color: var(--truck);
}

.parcel {
    width: 10px;
    height: 10px;
    background: var(--parcel);
    position: absolute;
    top: -20px;
    left: 8px;
    border-radius: 2px;
}

/* --- Animation Stages --- */

/* ১. ক্লিক করলে টেক্সট সরে যাবে */
.animating .text {
    transform: translateY(40px);
    opacity: 0;
}

/* ২. ট্রাক ভেতরে আসবে */
.animating .truck-container {
    opacity: 1;
    animation: driveInOut 3.5s cubic-bezier(0.45, 0.05, 0.55, 0.95) forwards;
}

/* ৩. পার্সেল লোড হবে */
.animating .parcel {
    animation: loadParcel 0.8s 0.5s ease-in forwards;
}

/* ৪. বাটন সাকসেস স্টেট */
.done {
    background: #10b981 !important; /* প্রফেশনাল গ্রিন */
    pointer-events: none;
}

.done .text {
    transform: translateY(0);
    opacity: 1;
}

/* Animations */
@keyframes loadParcel {
    0% { transform: translateY(0); opacity: 0; }
    100% { transform: translateY(22px); opacity: 1; }
}

@keyframes driveInOut {
    0% { left: -50px; }
    30% { left: 40%; transform: translateX(-50%); }
    70% { left: 40%; transform: translateX(-50%); }
    100% { left: 120%; }
}

/* Hover Effect */
.modern-ship-btn:hover:not(.done) {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(59, 130, 246, 0.2);
    filter: brightness(1.1);
}/* End custom CSS */