/* Prime Profit Lift - ASIN Input Styles */

.asin-input-wrapper {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    z-index: 10;
}

.asin-input-group {
    display: flex;
    background: #fff;
    border-radius: 50px;
    padding: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border: 3px solid transparent;
    transition: all 0.3s ease;
    background-clip: padding-box;
}

.asin-input-group:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 15px 35px rgba(255, 153, 0, 0.2);
}

.asin-input {
    flex: 1;
    border: none;
    padding: 15px 25px;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 50px 0 0 50px;
    color: var(--text-color);
    outline: none;
    background: transparent;
}

.asin-input::placeholder {
    color: #94a3b8;
}

.btn-analyze {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: #fff;
    border: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-analyze:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 153, 0, 0.4);
}

.btn-analyze:disabled {
    background: #cbd5e1;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.asin-helper-text {
    margin-top: 12px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    text-align: center;
}

/* Loading States */
.analysis-loader {
    display: none;
    margin-top: 2rem;
    text-align: center;
    color: #fff;
}

.loader-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 400px;
    margin: 1.5rem auto 0;
    text-align: left;
}

.loader-step {
    display: flex;
    align-items: center;
    gap: 1rem;
    opacity: 0.5;
    transition: opacity 0.3s;
}

.loader-step.active {
    opacity: 1;
    font-weight: 700;
}

.loader-step.done {
    opacity: 0.8;
}

.loader-step i {
    width: 24px;
    text-align: center;
}

.loader-step.active i {
    color: var(--secondary-color);
    animation: pulse 1s infinite;
}

.loader-step.done i {
    color: #4ade80;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}
