#variation-cross-sells { margin-top: 20px; }
#variation-cross-sells h4 { font-size: 18px; margin-bottom: 12px; }

/* Row layout */
.cross-sell-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.cross-sell-image { flex: 0 0 60px; }
.cross-sell-image img { max-width: 60px; height: auto; display: block; }

.cross-sell-title { flex: 1; font-size: 15px; }
.cross-sell-price { white-space: nowrap; margin-right: 10px; font-weight: 600; }

/* Qty control */
.cross-sell-qty { flex: 0 0 120px; }
.vcs-qty { display:flex; align-items:center; justify-content:center; gap:6px; }
.vcs-qty button { background: #f5f5f5; border:1px solid #ddd; padding:4px 8px; font-size:16px; cursor:pointer; border-radius:4px; }
.vcs-qty button:active { transform: translateY(1px); }
.vcs-qty-input { width:48px; text-align:center; padding:6px 4px; border:1px solid #ddd; border-radius:4px; font-size:14px; }

/* Checkbox */
.cross-sell-checkbox { flex: 0 0 34px; position: relative; text-align:center; }
.cross-sell-checkbox input[type="checkbox"] { display: none; }
.cross-sell-checkbox .checkmark {
    display:inline-block;
    width:26px;
    height:26px;
    line-height:26px;
    border:2px solid #2ecc71;
    border-radius:4px;
    text-align:center;
    color: transparent;
    background: transparent;
    transition: all 0.12s ease;
}
.cross-sell-checkbox input[type="checkbox"]:checked + .checkmark {
    background:#2ecc71; color:#fff;
}