/**
 * Wine Order Mailer Multi - Frontend Styles
 */

.wine-order-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
}

.wine-order-title {
    text-align: center;
    color: #333;
    margin-bottom: 30px;
    font-size: 32px;
}

/* Messages */
.wine-order-error {
    background: #f8d7da;
    color: #721c24;
    padding: 15px;
    border-radius: 6px;
    border: 1px solid #f5c6cb;
    margin-bottom: 20px;
}

.discount-message {
    display: none;
    background: #4CAF50;
    color: white;
    padding: 15px;
    text-align: center;
    border-radius: 6px;
    margin-bottom: 25px;
    font-weight: 500;
}

/* Products List */
.wine-products-list {
    margin-bottom: 30px;
}

.wine-product-row {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.wine-product-row:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.wine-product-image {
    flex: 0 0 100px;
}

.wine-product-image img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid #e0e0e0;
}

.wine-product-info {
    flex: 1;
}

.wine-product-name {
    margin: 0 0 8px 0;
    color: #333;
    font-size: 18px;
    font-weight: 600;
}

.wine-product-price {
    color: #667eea;
    font-weight: bold;
}

.wine-product-description {
    margin: 0;
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

.wine-product-quantity {
    flex: 0 0 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.wine-qty-btn {
    width: 45px;
    height: 45px;
    border: 2px solid #667eea;
    background: white;
    color: #667eea;
    font-size: 24px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.wine-qty-btn:hover {
    background: #667eea;
    color: white;
    transform: scale(1.1);
}

.wine-qty-btn:active {
    transform: scale(0.95);
}

.wine-quantity-input {
    width: 80px;
    height: 50px;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    background: #f9f9f9;
}

/* Promo Section */
.wine-promo-section {
    background: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
}

.wine-promo-section h3 {
    margin: 0 0 15px 0;
    color: #333;
    font-size: 18px;
}

.wine-promo-input-group {
    display: flex;
    gap: 10px;
}

.wine-promo-input {
    flex: 1;
    max-width: 300px;
    padding: 12px;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-family: monospace;
    letter-spacing: 2px;
}

.wine-promo-btn {
    padding: 12px 25px;
    font-size: 16px;
    font-weight: 600;
    background: #667eea;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.wine-promo-btn:hover {
    background: #5568d3;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(102, 126, 234, 0.3);
}

.wine-promo-message {
    margin-top: 10px;
    padding: 10px;
    border-radius: 6px;
    font-weight: 500;
    display: none;
}

.wine-promo-message.success {
    display: block;
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.wine-promo-message.error {
    display: block;
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Summary */
.wine-summary {
    background: #f9f9f9;
    border: 2px solid #667eea;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 30px;
}

.wine-summary h2 {
    margin: 0 0 20px 0;
    color: #667eea;
    font-size: 22px;
    text-align: center;
    border-bottom: 2px solid #667eea;
    padding-bottom: 15px;
}

.wine-summary-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    font-size: 16px;
}

.wine-summary-label {
    font-weight: 500;
    color: #666;
}

.wine-summary-value {
    font-weight: bold;
    color: #333;
}

.wine-discount-row {
    color: #4CAF50;
}

.wine-discount-value {
    color: #4CAF50 !important;
}

.wine-summary-total {
    margin-top: 15px;
    padding-top: 20px;
    border-top: 2px solid #333;
    font-size: 22px;
}

.wine-summary-total .wine-summary-value {
    color: #667eea;
}

/* Customer Form */
.wine-customer-form {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 30px;
}

.wine-customer-form h2 {
    margin: 0 0 25px 0;
    color: #333;
    font-size: 22px;
    text-align: center;
}

.wine-form-group {
    margin-bottom: 20px;
}

.wine-form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.wine-form-group input,
.wine-form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.wine-form-group input:focus,
.wine-form-group textarea:focus {
    outline: none;
    border-color: #667eea;
}

.wine-form-group textarea {
    resize: vertical;
}

.wine-form-actions {
    text-align: center;
    margin-top: 30px;
}

.wine-submit-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 18px 50px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.wine-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
}

.wine-submit-btn:active {
    transform: translateY(-1px);
}

.wine-submit-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Responsive */
@media (max-width: 768px) {
    .wine-order-container {
        padding: 15px;
    }
    
    .wine-order-title {
        font-size: 24px;
    }
    
    .wine-product-row {
        flex-direction: column;
        text-align: center;
    }
    
    .wine-product-image {
        flex: 0 0 auto;
    }
    
    .wine-product-quantity {
        flex: 0 0 auto;
        width: 100%;
        justify-content: center;
    }
    
    .wine-promo-input-group {
        flex-direction: column;
    }
    
    .wine-promo-input {
        max-width: 100%;
    }
    
    .wine-promo-btn {
        width: 100%;
    }
    
    .wine-submit-btn {
        width: 100%;
        padding: 15px 30px;
    }
}
