/**
 * CarbonGuru Stripe Climate Styles
 *
 * @package CarbonGuru_Stripe_Climate
 */

/* Stripe Climate Badge */
.cg-stripe-climate-badge {
    display: inline-block;
    background: linear-gradient(135deg, #635bff 0%, #8b5cf6 100%);
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 2px 6px;
    border-radius: 3px;
    margin-left: 8px;
    vertical-align: middle;
    letter-spacing: 0.5px;
}

/* Cart Item Offset Details */
.cg-offset-cart-details {
    margin-top: 8px;
    padding: 8px 12px;
    background: #f8f9fa;
    border-left: 3px solid #635bff;
    font-size: 13px;
}

.cg-offset-cart-details dt {
    font-weight: 600;
    color: #333;
    display: inline;
}

.cg-offset-cart-details dd {
    display: inline;
    margin-left: 4px;
    color: #666;
}

.cg-offset-cart-details dd::after {
    content: '';
    display: block;
    margin-bottom: 4px;
}

/* Order Item Offset Details */
.cg-offset-order-details {
    margin-top: 8px;
    padding: 8px 12px;
    background: #f0f7f0;
    border-radius: 4px;
    font-size: 13px;
}

.cg-offset-order-details p {
    margin: 4px 0;
}

/* Thank You Page Summary */
.cg-offset-summary {
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f7f0 100%);
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 24px;
    margin: 24px 0;
}

.cg-offset-summary h2 {
    color: #333;
    margin-top: 0;
    margin-bottom: 16px;
    font-size: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cg-offset-summary h2::before {
    content: '🌱';
    font-size: 24px;
}

.cg-offset-stats {
    list-style: none;
    padding: 0;
    margin: 0 0 16px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.cg-offset-stats .cg-stat {
    background: #fff;
    padding: 12px 16px;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
    min-width: 150px;
}

.cg-stat-label {
    display: block;
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.cg-stat-value {
    display: block;
    font-size: 20px;
    font-weight: 600;
    color: #333;
}

.cg-offset-message {
    color: #555;
    line-height: 1.6;
    margin-bottom: 16px;
}

.cg-stripe-climate-info a {
    color: #635bff;
    text-decoration: none;
    font-weight: 500;
}

.cg-stripe-climate-info a:hover {
    text-decoration: underline;
}

/* Admin Settings Page */
.cg-stripe-climate-settings .form-table th {
    width: 200px;
}

.cg-stripe-climate-settings input[type="password"],
.cg-stripe-climate-settings input[type="text"],
.cg-stripe-climate-settings input[type="url"] {
    width: 400px;
    max-width: 100%;
}

/* Responsive */
@media (max-width: 600px) {
    .cg-offset-stats {
        flex-direction: column;
    }

    .cg-offset-stats .cg-stat {
        min-width: auto;
    }

    .cg-offset-summary {
        padding: 16px;
    }
}
