/* Review Coupon Form Styles */
.rc-form-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.rc-form-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.rc-form-header h2 {
    color: #ff8c42;
    font-size: 28px;
    margin-bottom: 10px;
}

.rc-form-subtitle {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}

.rc-form {
    margin-top: 30px;
}

.rc-form-row {
    margin-bottom: 25px;
}

.rc-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 15px;
}

.rc-label-note {
    font-weight: normal;
    color: #999;
    font-size: 13px;
}

/* Success Message and Coupon Display */
.rc-success-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    padding: 30px;
    margin: 30px auto;
    max-width: 600px;
    color: white;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    animation: slideIn 0.5s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.rc-success-title {
    text-align: center;
    font-size: 24px;
    margin-bottom: 25px;
    color: white;
}

.rc-coupon-display {
    background: white;
    border-radius: 8px;
    padding: 25px;
    color: #333;
}

.rc-coupon-label {
    font-size: 16px;
    margin-bottom: 15px;
    text-align: center;
    color: #666;
}

.rc-coupon-code-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
}

.rc-coupon-code {
    background: #f8f9fa;
    border: 2px dashed #764ba2;
    padding: 15px 30px;
    font-size: 24px;
    font-weight: bold;
    font-family: 'Courier New', monospace;
    letter-spacing: 2px;
    border-radius: 8px;
    color: #764ba2;
}

.rc-copy-btn {
    background: #764ba2;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.rc-copy-btn:hover {
    background: #5a3d7a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(118, 75, 162, 0.3);
}

.rc-coupon-info {
    text-align: center;
    margin: 20px 0;
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

.rc-coupon-note {
    background: #f8f9fa;
    border-left: 4px solid #ffc107;
    padding: 15px;
    margin-top: 20px;
    border-radius: 4px;
}

.rc-coupon-note p {
    margin: 0 0 10px;
    font-weight: 600;
    color: #333;
}

.rc-coupon-note ul {
    margin: 0;
    padding-left: 20px;
}

.rc-coupon-note li {
    margin: 5px 0;
    color: #666;
    font-size: 14px;
}

.rc-required {
    color: #ff0000;
}

.rc-input,
.rc-select,
.rc-textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s;
}

.rc-input:focus,
.rc-select:focus,
.rc-textarea:focus {
    outline: none;
    border-color: #ff8c42;
    box-shadow: 0 0 0 3px rgba(255,140,66,0.1);
}

.rc-textarea {
    resize: vertical;
    font-family: inherit;
}

.rc-char-counter {
    float: right;
    font-weight: normal;
    color: #999;
    font-size: 13px;
}

/* Avatar Upload */
.rc-avatar-upload {
    position: relative;
}

.rc-file-input {
    display: none;
}

.rc-file-label {
    display: inline-flex;
    align-items: center;
    padding: 12px 20px;
    background: #f8f8f8;
    border: 2px dashed #ddd;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.rc-file-label:hover {
    background: #fff;
    border-color: #ff8c42;
}

.rc-file-icon {
    font-size: 24px;
    margin-right: 10px;
}

.rc-file-text {
    color: #666;
}

.rc-avatar-preview {
    margin-top: 15px;
}

.rc-avatar-preview img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ff8c42;
}

/* Rating */
.rc-rating {
    display: flex;
    align-items: center;
    gap: 10px;
}

.rc-stars {
    font-size: 24px;
    color: #ffd700;
}

.rc-rating-text {
    color: #666;
}

/* Field Note */
.rc-field-note {
    margin-top: 5px;
    font-size: 13px;
    color: #999;
    font-style: italic;
}

/* Info Box */
.rc-form-info {
    background: linear-gradient(135deg, #fff5e6 0%, #ffe4cc 100%);
    border: 1px solid #ffb347;
    border-radius: 8px;
    padding: 20px;
    margin: 30px 0;
}

.rc-form-info h4 {
    color: #ff8c42;
    margin-bottom: 10px;
    font-size: 16px;
}

.rc-form-info ul {
    margin: 0;
    padding-left: 20px;
}

.rc-form-info li {
    color: #666;
    margin-bottom: 5px;
    font-size: 14px;
}

/* Agreement Checkbox */
.rc-agreement-row {
    margin: 25px 0;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.rc-checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 15px;
}

.rc-checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    cursor: pointer;
}

.rc-checkbox-label a {
    color: #ff8c42;
    text-decoration: underline;
    font-weight: 600;
}

.rc-checkbox-label a:hover {
    color: #ff6b20;
}

/* Submit Button */
.rc-submit-row {
    text-align: center;
    margin-top: 30px;
}

.rc-submit-btn {
    background: linear-gradient(135deg, #ff8c42, #ffb347);
    color: #fff;
    padding: 15px 40px;
    border: none;
    border-radius: 30px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255,140,66,0.3);
}

.rc-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,140,66,0.4);
}

.rc-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Success Message */
.rc-success-message {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    border-radius: 12px;
    margin-top: 30px;
}

.rc-success-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.rc-success-message h3 {
    color: #2e7d32;
    margin-bottom: 20px;
}

.rc-coupon-display {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.rc-coupon-code {
    font-size: 32px;
    font-weight: bold;
    color: #ff8c42;
    letter-spacing: 2px;
    margin: 10px 0;
    padding: 15px;
    background: #fff5e6;
    border: 2px dashed #ffb347;
    border-radius: 8px;
}

.rc-copy-btn {
    background: #4caf50;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    margin-top: 10px;
}

.rc-copy-btn:hover {
    background: #45a049;
}

.rc-coupon-info {
    color: #666;
    font-size: 14px;
    margin-top: 10px;
}

/* Notice */
.rc-notice {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.rc-notice.rc-error {
    background: #ffebee;
    border-left: 4px solid #f44336;
    color: #c62828;
}

.rc-notice.rc-error a {
    color: #f44336;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .rc-form-container {
        padding: 20px;
    }
    
    .rc-form-header h2 {
        font-size: 24px;
    }
    
    .rc-coupon-code {
        font-size: 24px;
    }
}