/* Drop Price Page Styles - Light Theme */

/* Container */
.drop-price-page-container {
    padding: 20px;
    max-width: 600px;
    margin: 0 auto;
    animation: fadeIn 0.3s ease-out;
    padding-bottom: 100px; /* Space for mobile menu */
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Product Summary Card */
.product-summary-card {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    align-items: center;
    border: 1px solid #e5e5e5;
}

.product-summary-card img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid #f0f0f0;
}

.product-summary-card .product-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-summary-card h4 {
    margin: 0 0 12px 0;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
}

.product-summary-card .current-price {
    font-size: 20px;
    font-weight: 700;
    color: #ff9800;
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-summary-card .current-price::before {
    content: '🔥 Preço Atual';
    font-size: 11px;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    width: 100%;
    margin-bottom: 6px;
}

/* Input Group */
.drop-input-group {
    margin-bottom: 30px;
}

.drop-input-group label {
    display: block;
    margin-bottom: 12px;
    font-weight: 600;
    font-size: 15px;
    color: #333;
}

.drop-input-wrapper {
    display: flex;
    align-items: center;
    background: white;
    border: 2px solid #e5e5e5;
    border-radius: 12px;
    padding: 8px 20px;
    transition: all 0.2s ease;
    margin-bottom: 16px;
}

.drop-input-wrapper:focus-within {
    border-color: #ff9800;
    box-shadow: 0 0 0 3px rgba(255, 152, 0, 0.1);
}

.drop-input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 12px 0;
    color: #333;
    font-size: 24px;
    font-weight: 700;
    outline: none;
    width: 100%;
}

.drop-input::placeholder {
    color: #ccc;
}

.drop-input-suffix {
    color: #999;
    font-weight: 500;
    font-size: 16px;
}

/* Quick Buttons */
.drop-quick-buttons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 12px;
}

.btn-quick-points {
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    padding: 12px 0;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 14px;
}

.btn-quick-points:hover {
    background: #f9f9f9;
    border-color: #ff9800;
    color: #ff9800;
    transform: translateY(-1px);
}

.btn-quick-points:active {
    transform: translateY(0);
}

/* Preview Section */
.drop-preview {
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.05) 0%, rgba(255, 152, 0, 0.08) 100%);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 152, 0, 0.15);
}

.drop-preview-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-size: 14px;
    color: #666;
}

.drop-preview-row:last-child {
    margin-bottom: 0;
}

.drop-preview-row.highlight {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px dashed rgba(255, 152, 0, 0.3);
    color: #ff9800;
    font-size: 18px;
    font-weight: 700;
}

.drop-preview-value {
    font-weight: 600;
    color: #333;
}

.drop-preview-row.highlight .drop-preview-value {
    color: #ff9800;
    font-size: 20px;
}

/* Actions */
.page-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-confirm-drop {
    background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
    color: white;
    border: none;
    padding: 16px 24px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(255, 152, 0, 0.3);
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-confirm-drop:hover {
    background: linear-gradient(135deg, #f57c00 0%, #ff9800 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(255, 152, 0, 0.35);
}

.btn-confirm-drop:active {
    transform: translateY(0);
}

.btn-confirm-drop:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.btn-cancel-drop {
    background: transparent;
    border: none;
    color: #999;
    font-weight: 600;
    padding: 12px;
    cursor: pointer;
    transition: color 0.2s;
}

.btn-cancel-drop:hover {
    color: #666;
}

/* Responsive */
@media (min-width: 768px) {
    .drop-price-page-container {
        padding: 30px 20px;
    }

    .product-summary-card {
        padding: 24px;
    }

    .product-summary-card h4 {
        font-size: 18px;
    }

    .product-summary-card .current-price {
        font-size: 24px;
    }

    .drop-input {
        font-size: 28px;
    }

    .btn-confirm-drop {
        font-size: 18px;
        padding: 18px 32px;
    }
}
