/*
 * WC Age Group Pricing – Cart & Checkout Styles v3.0
 * WIZSP SRL · https://wizsp.com
 */

/* ── Cross-sibling box ────────────────────────────────────── */
.wcagp-cross-sibling-box {
    margin: 0 0 22px;
    border: 2px solid #dbeafe;
    border-radius: 10px;
    overflow: hidden;
    background: #f8faff;
    font-size: 14px;
    transition: opacity .2s;
}
.wcagp-cross-sibling-box.wcagp-loading { opacity: .6; pointer-events: none; }

/* ── Header ──────────────────────────────────────────────── */
.wcagp-cross-header {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 16px;
    background: linear-gradient( 135deg, #2563eb, #1d4ed8 );
    color: #fff;
}
.wcagp-cross-icon { font-size: 20px; flex-shrink: 0; line-height: 1; margin-top: 2px; }
.wcagp-cross-header strong { display: block; font-size: 13.5px; font-weight: 700; color: #fff; margin-bottom: 2px; }
.wcagp-cross-header p { margin: 0; font-size: 12px; color: rgba(255,255,255,.82); line-height: 1.45; }

/* ── Rows ─────────────────────────────────────────────────── */
.wcagp-cross-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 16px;
    cursor: pointer;
    border-top: 1px solid #dbeafe;
    transition: background .15s;
    position: relative;
}
.wcagp-cross-row:first-of-type { border-top: none; }
.wcagp-cross-row:hover { background: #eff6ff; }
.wcagp-cross-row.is-checked { background: #ecfdf5; border-color: #a7f3d0; }

/* Checkbox */
.wcagp-cross-chk {
    width: 18px; height: 18px;
    accent-color: #1d4ed8;
    cursor: pointer;
    flex-shrink: 0;
}

/* Info */
.wcagp-cross-info {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.wcagp-cross-name {
    font-size: 13px;
    font-weight: 500;
    color: #374151;
}
.wcagp-cross-row.is-checked .wcagp-cross-name { color: #065f46; }

.wcagp-cross-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}
.wcagp-cross-price {
    font-weight: 700;
    font-size: 13px;
    color: #1d4ed8;
    background: #dbeafe;
    padding: 2px 9px;
    border-radius: 12px;
}
.wcagp-cross-row.is-checked .wcagp-cross-price {
    background: #d1fae5;
    color: #065f46;
}
.wcagp-cross-saving {
    font-size: 11.5px;
    color: #6b7280;
    white-space: nowrap;
}
.wcagp-cross-row.is-checked .wcagp-cross-saving { color: #059669; }

/* ── Child name tag ───────────────────────────────────────── */
.wcagp-cross-name-wrap {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.wcagp-cross-prod-name {
    font-size: 13px;
    font-weight: 500;
    color: #374151;
}
.wcagp-cross-row.is-checked .wcagp-cross-prod-name { color: #065f46; }

.wcagp-cross-child-name {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 600;
    color: #1d4ed8;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    padding: 2px 9px 2px 6px;
    border-radius: 20px;
    width: fit-content;
}
.wcagp-cross-row.is-checked .wcagp-cross-child-name {
    color: #065f46;
    background: #d1fae5;
    border-color: #6ee7b7;
}
.wcagp-cross-child-icon { font-size: 11px; }

/* Remove old .wcagp-cross-name (now split into prod-name + child-name) */
.wcagp-cross-name { font-size: 13px; font-weight: 500; color: #374151; }

/* ── Disabled row (cap reached) ───────────────────────────── */
.wcagp-cross-row.is-disabled {
    opacity: 0.45;
    cursor: not-allowed;
    background: #f9fafb;
}
.wcagp-cross-row.is-disabled input[type="checkbox"] {
    cursor: not-allowed;
}

/* ── Cap notice ───────────────────────────────────────────── */
.wcagp-cap-notice {
    margin: 0;
    padding: 8px 16px 10px;
    font-size: 12px;
    font-weight: 600;
    color: #065f46;
    background: #d1fae5;
    border-top: 1px solid #a7f3d0;
    text-align: center;
}

/* ── Spacing: push box down from coupon area ──────────────── */
.wcagp-cross-sibling-box {
    margin-top: 28px;
}
