:root {
    --wdt-primary-color: #7c4dff;
    /* Deep Lavender */
    --wdt-secondary-color: #b388ff;
    /* Light Lavender */
    --wdt-bg-highlight: #f3e5f5;
    /* Very Light Lavender BG */
    --wdt-text-color: #2c2c2e;
    --wdt-meta-color: #86868b;
    --wdt-line-color: #e5e5ea;
    --wdt-bg-color: #ffffff;
    --wdt-font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.wdt-timeline-wrapper {
    margin: 20px 0 30px 0;
    padding: 30px;
    background: var(--wdt-bg-color);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(124, 77, 255, 0.15);
    /* Lavender shadow */
    font-family: var(--wdt-font-family);
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    /* Prevent overflow */
    border: 1px solid rgba(124, 77, 255, 0.1);
}

.wdt-header-area {
    text-align: center;
    margin-bottom: 40px;
}

.wdt-estimate-text {
    font-size: 18px;
    font-weight: 700;
    color: var(--wdt-text-color);
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.wdt-date-wrapper {
    display: inline-block;
}

/* Calm BG for delivery date */
.wdt-date-range {
    display: inline-block;
    background: transparent;
    /* Removed background */
    color: var(--wdt-primary-color);
    font-weight: 800;
    /* Extra Bold */
    padding: 0;
    border-radius: 0;
    font-size: 18px;
    /* Bigger */
    letter-spacing: 0.5px;
    border: none;
    box-shadow: none;
    margin-top: 5px;
}

/* Production Time Highlight */
.wdt-production-time {
    margin-top: 25px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    font-size: 15px;
    color: var(--wdt-text-color);
    background: var(--wdt-bg-highlight);
    /* Light Lavender BG */
    display: table;
    /* shrinks to fit content & allows auto-margin centering */
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 500;
}

.wdt-production-time strong {
    color: var(--wdt-primary-color);
    font-weight: 800;
}

.wdt-timeline-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    padding: 0 10px;
}

.wdt-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
    flex: 1;
    opacity: 0.4;
    transform: translateY(15px);
    transition: opacity 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.wdt-step.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Bigger Icons */
/* Bigger Icons */
.wdt-icon-wrapper {
    width: 80px;
    /* Adjusted to 80px for PC */
    height: 80px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    transition: all 0.4s ease;
    border: none;
    position: relative;
    z-index: 5;
    box-shadow: none;
}

/* ... (Active/Completed states) ... */

.wdt-step.active .wdt-icon-wrapper {
    border-color: transparent;
    background: #fff;
    box-shadow: none;
    animation: none;
    transform: scale(1.1);
}

.wdt-step.completed .wdt-icon-wrapper {
    background: #fff;
    border-color: transparent;
    color: inherit;
}

.wdt-icon {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0;
}

/* Force Lottie SVG to fill container */
.wdt-icon svg,
.wdt-icon canvas,
dotlottie-player {
    width: 100% !important;
    height: 100% !important;
    display: block;
    filter: none;
    transform: scale(1.35);
    /* Zoom effect */
    transform-origin: center center;
}

/* ... */

.wdt-static-icon {
    width: 60px;
    /* Adjusted */
    height: 60px;
    object-fit: contain;
}

.wdt-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.wdt-label {
    font-size: 15px;
    font-weight: 700;
    color: var(--wdt-text-color);
}

.wdt-date {
    font-size: 14px;
    color: var(--wdt-text-color);
    font-weight: 700;
}

/* Connector Line (Desktop) */
.wdt-connector {
    flex: 1;
    height: 4px;
    background: var(--wdt-line-color);
    margin-top: 40px;
    /* (80/2) = 40px center */
    position: relative;
    z-index: 1;
    border-radius: 4px;
    overflow: hidden;
    margin-left: -10px;
    margin-right: -10px;
}

.wdt-line-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--wdt-primary-color), var(--wdt-secondary-color));
    transition: width 1s ease-in-out;
}

.wdt-connector.filled .wdt-line-fill {
    width: 100%;
}

/* Responsive */
@media (max-width: 600px) {
    .wdt-timeline-wrapper {
        padding: 16px 10px !important;
        margin: 15px 0 !important;
    }

    .wdt-estimate-text {
        font-size: 16px !important;
    }

    .wdt-date-range {
        font-size: 16px;
        padding: 0;
    }

    /* Bigger Mobile Icons */
    .wdt-icon-wrapper {
        width: 65px;
        /* Adjusted to 65px for Mobile */
        height: 65px;
        margin-bottom: 8px;
    }

    .wdt-icon {
        width: 65px;
        height: 65px;
    }

    .wdt-connector {
        margin-top: 32px;
        /* (65/2) = 32.5px approx */
        height: 3px;
    }

    .wdt-label {
        font-size: 11px;
    }

    .wdt-date {
        font-size: 12px;
    }
}