/* Design 3: Simple Informative List with Orange Accents */
.wc-icalculator-single-product {
    margin: 20px 0;
    padding: 12px;
    background-color: #fff8f5;
    border: 1px solid #ffe5d4;
    border-left: 4px solid #ff6b35;
    border-radius: 6px;
}

.wc-icalculator-single-product h3 {
    margin: 0 0 16px 0;
    font-size: 16px;
    font-weight: 500;
    color: #d84315;
    line-height: 1.4;
}

.wc-icalculator-single-product ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.wc-icalculator-single-product ul li {
    padding: 6px 12px;
    margin-bottom: 4px;
    background-color: #ffffff;
    border: 1px solid #ffe5d4;
    border-left: 3px solid #ff6b35;
    border-radius: 4px;
    font-size: 14px;
    line-height: 1.3;
    color: #555;
}

.wc-icalculator-single-product ul li:last-child {
    margin-bottom: 0;
}

.wc-icalculator-show-link, .wc-icalculator-show-link:focus {
    display: inline-block;
    padding: 4px 10px;
    margin-bottom: 0;
    background-color: #ff6b35;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    border: none;
    border-left: 3px solid #e55a2b;
    transition: all 0.2s ease;
    cursor: pointer;
    outline:none;
}

.wc-icalculator-show-link:hover {
    background-color: #e55a2b;
    border-left-color: #d84315;
}

.wc-icalculator-show-content.has_show_link {
    margin-top: 16px;
}

.wc-icalculator-single-product .wc-icalculator-installment-group {
    margin-bottom: 15px;
}

/* Form Styles */
.wc-icalculator-form {
    margin-bottom: 20px;
    padding: 12px;
    background-color: #ffffff;
    border: 1px solid #ffe5d4;
    border-left: 3px solid #ff6b35;
    border-radius: 4px;
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}

.wc-icalculator-form-cols {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    align-items: center;
}

.wc-icalculator-form #card_bin {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid #ffe5d4;
    border-radius: 4px;
    font-size: 14px;
    color: #333;
    background-color: #ffffff;
    transition: border-color 0.2s ease;
}

.wc-icalculator-form #card_bin:focus {
    outline: none;
    border-color: #ff6b35;
    border-left: 3px solid #ff6b35;
}

.wc-icalculator-form #card_bin_button {
    padding: 8px 16px;
    background-color: #ff6b35;
    color: #ffffff;
    border: none;
    border-left: 3px solid #e55a2b;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.wc-icalculator-form #card_bin_button:hover:not(:disabled) {
    background-color: #e55a2b;
    border-left-color: #d84315;
}

.wc-icalculator-form #card_bin_button:disabled {
    background-color: #cccccc;
    border-left-color: #999;
    cursor: not-allowed;
    opacity: 0.6;
}

.wc-icalculator-form-message {
    margin-top: 10px;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 13px;
    line-height: 1.4;
}

.wc-icalculator-form-message.error {
    background-color: #fff5f5;
    color: #c33;
    border: 1px solid #ffcccc;
    border-left: 3px solid #ff6b35;
}

.wc-icalculator-form-message.success {
    background-color: #f0fff4;
    color: #3c3;
    border: 1px solid #c6f6d5;
    border-left: 3px solid #48bb78;
}

/* Reset Link */
#card_bin_reset {
    display: inline-block;
    margin-top: 15px;
    padding: 6px 12px;
    color: #ff6b35;
    text-decoration: none;
    font-size: 13px;
    border-bottom: 1px solid transparent;
    transition: all 0.2s ease;
}

#card_bin_reset:hover {
    color: #e55a2b;
    border-bottom-color: #e55a2b;
}