.wot-tracker-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background: white;
}

.wot-tracker-title {
    text-align: center;
    margin-bottom: 30px;
    color: #000;
    font-size: 24px;
    font-weight: 600;
}

/* Search Form Styles */
.wot-search-form {
    background: white;
    border: 2px solid #000;
    padding: 30px;
    margin-bottom: 30px;
}

.wot-form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .wot-form-row {
        flex-direction: column;
        gap: 15px;
    }
}

.wot-form-field {
    flex: 1;
}

.wot-form-field label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #000;
}

.wot-form-field input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #000;
    font-size: 16px;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
    background: white;
}

.wot-form-field input:focus {
    outline: none;
    border-color: #67AE6E;
    box-shadow: 0 0 0 1px #67AE6E;
}

.wot-form-actions {
    text-align: center;
}

.wot-track-button {
    background: #000;
    color: white;
    padding: 12px 30px;
    border: 2px solid #000;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 140px;
    justify-content: center;
}

.wot-track-button:hover:not(:disabled) {
    background: white;
    color: #000;
}

.wot-track-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.wot-loading-spinner svg {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Error Message Styles */
.wot-error-message {
    background: white;
    color: #000;
    padding: 12px 15px;
    border: 2px solid #000;
    margin-top: 15px;
    text-align: center;
    font-weight: 600;
}

/* Order Results Styles */
.wot-order-results {
    background: white;
    border: 2px solid #000;
    overflow: hidden;
}

/* Journey Progress Styles */
.wot-order-journey {
    padding: 30px;
    background: white;
    border-bottom: 2px solid #000;
}

.wot-journey-header h4 {
    margin: 0 0 25px 0;
    color: #000;
    font-size: 20px;
    font-weight: 600;
    text-align: center;
}

.wot-journey-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media (min-width: 768px) {
    .wot-journey-steps {
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
        position: relative;
    }

    .wot-journey-step {
        flex: 1;
        text-align: center;
        position: relative;
        z-index: 2;
    }
}

.wot-journey-step {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

@media (min-width: 768px) {
    .wot-journey-step {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}

.wot-step-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: 2px solid #000;
    color: #000;
    font-weight: 600;
    flex-shrink: 0;
    transition: all 0.3s ease;
    font-size: 20px;
}

.wot-journey-step.completed .wot-step-circle {
    background: #000;
    color: white;
    border-color: #000;
}

.wot-journey-step.current .wot-step-circle {
    background: #67AE6E;
    color: white;
    border-color: #67AE6E;
    box-shadow: 0 0 0 3px rgba(103, 174, 110, 0.2);
}


.wot-step-content {
    flex: 1;
}

@media (min-width: 768px) {
    .wot-step-content {
        margin-top: 10px;
    }
}

.wot-step-title {
    margin: 0 0 5px 0;
    color: #000;
    font-size: 16px;
    font-weight: 600;
}

.wot-journey-step.completed .wot-step-title {
    color: #000;
}

.wot-journey-step.current .wot-step-title {
    color: #67AE6E;
    font-weight: 700;
}

.wot-step-description {
    margin: 0;
    color: #666;
    font-size: 14px;
    line-height: 1.4;
}

/* Desktop connector line */
@media (min-width: 768px) {
    .wot-journey-steps::before {
        content: '';
        position: absolute;
        top: 30px;
        left: 10%;
        right: 10%;
        height: 3px;
        background: #000;
        z-index: 1;
    }

    .wot-journey-steps::after {
        content: '';
        position: absolute;
        top: 30px;
        left: 10%;
        height: 3px;
        background: #000;
        z-index: 1;
        transition: width 0.3s ease;
    }
}


/* Tracking Info Styles */
.wot-tracking-info {
    margin-top: 30px;
    padding: 20px;
    background: white;
    border: 2px solid #000;
}

.wot-tracking-info h5 {
    margin: 0 0 10px 0;
    color: #000;
    font-size: 16px;
    font-weight: 600;
}

.wot-tracking-event {
    margin: 0 0 10px 0;
    color: #555;
    font-size: 14px;
}

.wot-tracking-number {
    margin: 0 0 10px 0;
    color: #666;
    font-size: 14px;
}

.wot-track-link {
    color: #000;
    text-decoration: underline;
    font-weight: 600;
}

.wot-track-link:hover {
    text-decoration: underline;
}

/* Order Details Styles */
.wot-order-details {
    padding: 30px;
}

.wot-order-header h4 {
    margin: 0 0 20px 0;
    color: #000;
    font-size: 20px;
    font-weight: 600;
}

.wot-order-meta {
    background: white;
    border: 2px solid #000;
    padding: 15px;
    margin-bottom: 25px;
}

.wot-order-meta p {
    margin: 0 0 8px 0;
    color: #000;
    font-size: 14px;
    font-weight: 500;
}

.wot-order-meta p:last-child {
    margin-bottom: 0;
}

.wot-order-items h5 {
    margin: 0 0 15px 0;
    color: #000;
    font-size: 18px;
    font-weight: 600;
}

.wot-items-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.wot-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: white;
    border: 2px solid #000;
}

.wot-item-image {
    width: 60px;
    height: 60px;
    object-fit: cover;
    flex-shrink: 0;
}

.wot-item-details {
    flex: 1;
}

.wot-item-name {
    margin: 0 0 5px 0;
    color: #000;
    font-size: 16px;
    font-weight: 600;
}

.wot-item-qty,
.wot-item-price {
    margin: 0 0 3px 0;
    color: #666;
    font-size: 14px;
}

.wot-item-price {
    font-weight: 600;
    color: #000;
}

/* Order Actions */
.wot-order-actions {
    margin-top: 30px;
    text-align: center;
    padding-top: 20px;
    border-top: 2px solid #000;
}

.wot-new-search-button {
    background: white;
    color: #000;
    padding: 10px 25px;
    border: 2px solid #000;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.wot-new-search-button:hover {
    background: #000;
    color: white;
}

/* Responsive Design */
@media (max-width: 480px) {
    .wot-tracker-container {
        padding: 15px;
    }

    .wot-search-form {
        padding: 20px;
    }

    .wot-order-journey,
    .wot-order-details {
        padding: 20px;
    }

    .wot-item {
        flex-direction: column;
        text-align: center;
    }

    .wot-item-image {
        align-self: center;
    }
}