/**
 * Strictly Gateway Checkout Styles
 *
 * @package Strictly_Gateway
 */

/* Card form container */
.strictly-card-form {
    padding: 15px 0;
}

/* Card icons */
.strictly-card-icons {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
}

.strictly-card-icons img {
    width: 40px;
    height: 26px;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 2px;
    background: #fff;
}

.strictly-plan-row {
    margin-bottom: 15px;
}

.strictly-plan-row select {
    width: 100%;
}

.strictly-plan-help {
    display: block;
    margin-top: 4px;
    color: #666;
    font-size: 12px;
}

/* Pricing notices */
.strictly-pricing-notice {
    margin-bottom: 20px;
    border-radius: 4px;
}

.strictly-pricing-notice p {
    margin: 0;
    line-height: 1.5;
}

/* Surcharge notice */
.strictly-surcharge-notice {
    background: #fff8e5;
    border-left: 4px solid #ffb900;
    padding: 12px 15px;
    font-size: 14px;
}

/* Dual pricing notice */
.strictly-dual-price-notice {
    background: #f0f6fc;
    border: 1px solid #c3c4c7;
    padding: 15px;
}

.strictly-price-comparison {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.strictly-cash-price,
.strictly-card-price {
    flex: 1;
}

.strictly-price-comparison .price-label {
    display: block;
    font-size: 13px;
    color: #666;
    margin-bottom: 3px;
}

.strictly-price-comparison .price-value {
    font-size: 18px;
    font-weight: 600;
    color: #1d2327;
}

/* Hosted field containers */
.strictly-hosted-field {
    border: 1px solid #8c8f94;
    border-radius: 4px;
    background: #fff;
    min-height: 44px;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.strictly-hosted-field:focus-within {
    border-color: #2271b1;
    box-shadow: 0 0 0 1px #2271b1;
}

.strictly-hosted-field.strictly-field-invalid {
    border-color: #d63638;
}

.strictly-hosted-field.strictly-field-valid {
    border-color: #00a32a;
}

/* Hosted field iframe */
.strictly-hosted-field iframe {
    min-height: 44px !important;
    width: 100% !important;
}

/* Form row adjustments */
#wc-strictly_gateway-cc-form .form-row {
    margin-bottom: 15px;
}

#wc-strictly_gateway-cc-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

/* Save card checkbox */
.strictly-save-card-row label {
    display: flex !important;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-weight: 400 !important;
}

.strictly-save-card-row input[type="checkbox"] {
    width: auto;
    margin: 0;
}

/* Error message */
.strictly-error {
    background: #fef7f7;
    border: 1px solid #d63638;
    border-radius: 4px;
    padding: 12px 15px;
    margin-bottom: 15px;
    color: #d63638;
}

/* Block checkout specific styles */
.strictly-blocks-form {
    padding: 10px 0;
}

/* Responsive */
@media (max-width: 600px) {
    .strictly-card-form .form-row-first,
    .strictly-card-form .form-row-last {
        float: none;
        width: 100%;
    }

    .strictly-card-icons img {
        width: 34px;
        height: 22px;
    }

    .strictly-price-comparison {
        flex-direction: column;
        gap: 10px;
    }
}
